diff --git a/.claude/settings.json b/.claude/settings.json
new file mode 100644
index 0000000..cbdf589
--- /dev/null
+++ b/.claude/settings.json
@@ -0,0 +1,10 @@
+{
+ "enabledPlugins": {
+ "payload@payload-marketplace": true,
+ "frontend-design@claude-plugins-official": true,
+ "superpowers@claude-plugins-official": true,
+ "context7@claude-plugins-official": true,
+ "claude-md-management@claude-plugins-official": true,
+ "waynesutton-convex-skills@cpd-waynesutton-convex-skills": true
+ }
+}
diff --git a/.claude/skills/convex-best-practices/SKILL.md b/.claude/skills/convex-best-practices/SKILL.md
new file mode 100644
index 0000000..b7b8588
--- /dev/null
+++ b/.claude/skills/convex-best-practices/SKILL.md
@@ -0,0 +1,368 @@
+---
+name: convex-best-practices
+description: Guidelines for building production-ready Convex apps covering function organization, query patterns, validation, TypeScript usage, error handling, and the Zen of Convex design philosophy
+---
+
+# Convex Best Practices
+
+Build production-ready Convex applications by following established patterns for function organization, query optimization, validation, TypeScript usage, and error handling.
+
+## Code Quality
+
+All patterns in this skill comply with `@convex-dev/eslint-plugin`. Install it for build-time validation:
+
+```bash
+npm i @convex-dev/eslint-plugin --save-dev
+```
+
+```js
+// eslint.config.js
+import convexPlugin from '@convex-dev/eslint-plugin';
+import { defineConfig } from 'eslint/config';
+
+export default defineConfig([...convexPlugin.configs.recommended]);
+```
+
+The plugin enforces four rules:
+
+| Rule | What it enforces |
+| ----------------------------------- | --------------------------------- |
+| `no-old-registered-function-syntax` | Object syntax with `handler` |
+| `require-argument-validators` | `args: {}` on all functions |
+| `explicit-table-ids` | Table name in db operations |
+| `import-wrong-runtime` | No Node imports in Convex runtime |
+
+Docs: https://docs.convex.dev/eslint
+
+## Documentation Sources
+
+Before implementing, do not assume; fetch the latest documentation:
+
+- Primary: https://docs.convex.dev/understanding/best-practices/
+- Error Handling: https://docs.convex.dev/functions/error-handling
+- Write Conflicts: https://docs.convex.dev/error#1
+- For broader context: https://docs.convex.dev/llms.txt
+
+## Instructions
+
+### The Zen of Convex
+
+1. **Convex manages the hard parts** - Let Convex handle caching, real-time sync, and consistency
+2. **Functions are the API** - Design your functions as your application's interface
+3. **Schema is truth** - Define your data model explicitly in schema.ts
+4. **TypeScript everywhere** - Leverage end-to-end type safety
+5. **Queries are reactive** - Think in terms of subscriptions, not requests
+
+### Function Organization
+
+Organize your Convex functions by domain:
+
+```typescript
+// convex/users.ts - User-related functions
+import { v } from 'convex/values';
+
+import { mutation, query } from './_generated/server';
+
+export const get = query({
+ args: { userId: v.id('users') },
+ returns: v.union(
+ v.object({
+ _id: v.id('users'),
+ _creationTime: v.number(),
+ name: v.string(),
+ email: v.string(),
+ }),
+ v.null(),
+ ),
+ handler: async (ctx, args) => {
+ return await ctx.db.get('users', args.userId);
+ },
+});
+```
+
+### Argument and Return Validation
+
+Always define validators for arguments AND return types:
+
+```typescript
+export const createTask = mutation({
+ args: {
+ title: v.string(),
+ description: v.optional(v.string()),
+ priority: v.union(v.literal('low'), v.literal('medium'), v.literal('high')),
+ },
+ returns: v.id('tasks'),
+ handler: async (ctx, args) => {
+ return await ctx.db.insert('tasks', {
+ title: args.title,
+ description: args.description,
+ priority: args.priority,
+ completed: false,
+ createdAt: Date.now(),
+ });
+ },
+});
+```
+
+### Query Patterns
+
+Use indexes instead of filters for efficient queries:
+
+```typescript
+// Schema with index
+export default defineSchema({
+ tasks: defineTable({
+ userId: v.id('users'),
+ status: v.string(),
+ createdAt: v.number(),
+ })
+ .index('by_user', ['userId'])
+ .index('by_user_and_status', ['userId', 'status']),
+});
+
+// Query using index
+export const getTasksByUser = query({
+ args: { userId: v.id('users') },
+ returns: v.array(
+ v.object({
+ _id: v.id('tasks'),
+ _creationTime: v.number(),
+ userId: v.id('users'),
+ status: v.string(),
+ createdAt: v.number(),
+ }),
+ ),
+ handler: async (ctx, args) => {
+ return await ctx.db
+ .query('tasks')
+ .withIndex('by_user', (q) => q.eq('userId', args.userId))
+ .order('desc')
+ .collect();
+ },
+});
+```
+
+### Error Handling
+
+Use ConvexError for user-facing errors:
+
+```typescript
+import { ConvexError } from 'convex/values';
+
+export const updateTask = mutation({
+ args: {
+ taskId: v.id('tasks'),
+ title: v.string(),
+ },
+ returns: v.null(),
+ handler: async (ctx, args) => {
+ const task = await ctx.db.get('tasks', args.taskId);
+
+ if (!task) {
+ throw new ConvexError({
+ code: 'NOT_FOUND',
+ message: 'Task not found',
+ });
+ }
+
+ await ctx.db.patch('tasks', args.taskId, { title: args.title });
+ return null;
+ },
+});
+```
+
+### Avoiding Write Conflicts (Optimistic Concurrency Control)
+
+Convex uses OCC. Follow these patterns to minimize conflicts:
+
+```typescript
+// GOOD: Make mutations idempotent
+export const completeTask = mutation({
+ args: { taskId: v.id('tasks') },
+ returns: v.null(),
+ handler: async (ctx, args) => {
+ const task = await ctx.db.get('tasks', args.taskId);
+
+ // Early return if already complete (idempotent)
+ if (!task || task.status === 'completed') {
+ return null;
+ }
+
+ await ctx.db.patch('tasks', args.taskId, {
+ status: 'completed',
+ completedAt: Date.now(),
+ });
+ return null;
+ },
+});
+
+// GOOD: Patch directly without reading first when possible
+export const updateNote = mutation({
+ args: { id: v.id('notes'), content: v.string() },
+ returns: v.null(),
+ handler: async (ctx, args) => {
+ // Patch directly - ctx.db.patch throws if document doesn't exist
+ await ctx.db.patch('notes', args.id, { content: args.content });
+ return null;
+ },
+});
+
+// GOOD: Use Promise.all for parallel independent updates
+export const reorderItems = mutation({
+ args: { itemIds: v.array(v.id('items')) },
+ returns: v.null(),
+ handler: async (ctx, args) => {
+ const updates = args.itemIds.map((id, index) =>
+ ctx.db.patch('items', id, { order: index }),
+ );
+ await Promise.all(updates);
+ return null;
+ },
+});
+```
+
+### TypeScript Best Practices
+
+```typescript
+import { Doc, Id } from './_generated/dataModel';
+
+// Use Id type for document references
+type UserId = Id<'users'>;
+
+// Use Doc type for full documents
+type User = Doc<'users'>;
+
+// Define Record types properly
+const userScores: Record, number> = {};
+```
+
+### Internal vs Public Functions
+
+```typescript
+// Public function - exposed to clients
+export const getUser = query({
+ args: { userId: v.id('users') },
+ returns: v.union(
+ v.null(),
+ v.object({
+ /* ... */
+ }),
+ ),
+ handler: async (ctx, args) => {
+ // ...
+ },
+});
+
+// Internal function - only callable from other Convex functions
+export const _updateUserStats = internalMutation({
+ args: { userId: v.id('users') },
+ returns: v.null(),
+ handler: async (ctx, args) => {
+ // ...
+ },
+});
+```
+
+## Examples
+
+### Complete CRUD Pattern
+
+```typescript
+// convex/tasks.ts
+import { ConvexError, v } from 'convex/values';
+
+import { mutation, query } from './_generated/server';
+
+const taskValidator = v.object({
+ _id: v.id('tasks'),
+ _creationTime: v.number(),
+ title: v.string(),
+ completed: v.boolean(),
+ userId: v.id('users'),
+});
+
+export const list = query({
+ args: { userId: v.id('users') },
+ returns: v.array(taskValidator),
+ handler: async (ctx, args) => {
+ return await ctx.db
+ .query('tasks')
+ .withIndex('by_user', (q) => q.eq('userId', args.userId))
+ .collect();
+ },
+});
+
+export const create = mutation({
+ args: {
+ title: v.string(),
+ userId: v.id('users'),
+ },
+ returns: v.id('tasks'),
+ handler: async (ctx, args) => {
+ return await ctx.db.insert('tasks', {
+ title: args.title,
+ completed: false,
+ userId: args.userId,
+ });
+ },
+});
+
+export const update = mutation({
+ args: {
+ taskId: v.id('tasks'),
+ title: v.optional(v.string()),
+ completed: v.optional(v.boolean()),
+ },
+ returns: v.null(),
+ handler: async (ctx, args) => {
+ const { taskId, ...updates } = args;
+
+ // Remove undefined values
+ const cleanUpdates = Object.fromEntries(
+ Object.entries(updates).filter(([_, v]) => v !== undefined),
+ );
+
+ if (Object.keys(cleanUpdates).length > 0) {
+ await ctx.db.patch('tasks', taskId, cleanUpdates);
+ }
+ return null;
+ },
+});
+
+export const remove = mutation({
+ args: { taskId: v.id('tasks') },
+ returns: v.null(),
+ handler: async (ctx, args) => {
+ await ctx.db.delete('tasks', args.taskId);
+ return null;
+ },
+});
+```
+
+## Best Practices
+
+- Never run `npx convex deploy` unless explicitly instructed
+- Never run any git commands unless explicitly instructed
+- Always define return validators for functions
+- Use indexes for all queries that filter data
+- Make mutations idempotent to handle retries gracefully
+- Use ConvexError for user-facing error messages
+- Organize functions by domain (users.ts, tasks.ts, etc.)
+- Use internal functions for sensitive operations
+- Leverage TypeScript's Id and Doc types
+
+## Common Pitfalls
+
+1. **Using filter instead of withIndex** - Always define indexes and use withIndex
+2. **Missing return validators** - Always specify the returns field
+3. **Non-idempotent mutations** - Check current state before updating
+4. **Reading before patching unnecessarily** - Patch directly when possible
+5. **Not handling null returns** - Document IDs might not exist
+
+## References
+
+- Convex Documentation: https://docs.convex.dev/
+- Convex LLMs.txt: https://docs.convex.dev/llms.txt
+- Best Practices: https://docs.convex.dev/understanding/best-practices/
+- Error Handling: https://docs.convex.dev/functions/error-handling
+- Write Conflicts: https://docs.convex.dev/error#1
diff --git a/.claude/skills/convex-component-authoring/SKILL.md b/.claude/skills/convex-component-authoring/SKILL.md
new file mode 100644
index 0000000..1574629
--- /dev/null
+++ b/.claude/skills/convex-component-authoring/SKILL.md
@@ -0,0 +1,462 @@
+---
+name: convex-component-authoring
+displayName: Convex Component Authoring
+description: How to create, structure, and publish self-contained Convex components with proper isolation, exports, and dependency management
+version: 1.0.0
+author: Convex
+tags: [convex, components, reusable, packages, npm]
+---
+
+# Convex Component Authoring
+
+Create self-contained, reusable Convex components with proper isolation, exports, and dependency management for sharing across projects.
+
+## Documentation Sources
+
+Before implementing, do not assume; fetch the latest documentation:
+
+- Primary: https://docs.convex.dev/components
+- Component Authoring: https://docs.convex.dev/components/authoring
+- For broader context: https://docs.convex.dev/llms.txt
+
+## Instructions
+
+### What Are Convex Components?
+
+Convex components are self-contained packages that include:
+
+- Database tables (isolated from the main app)
+- Functions (queries, mutations, actions)
+- TypeScript types and validators
+- Optional frontend hooks
+
+### Component Structure
+
+```
+my-convex-component/
+├── package.json
+├── tsconfig.json
+├── README.md
+├── src/
+│ ├── index.ts # Main exports
+│ ├── component.ts # Component definition
+│ ├── schema.ts # Component schema
+│ └── functions/
+│ ├── queries.ts
+│ ├── mutations.ts
+│ └── actions.ts
+└── convex.config.ts # Component configuration
+```
+
+### Creating a Component
+
+#### 1. Component Configuration
+
+```typescript
+// convex.config.ts
+import { defineComponent } from 'convex/server';
+
+export default defineComponent('myComponent');
+```
+
+#### 2. Component Schema
+
+```typescript
+// src/schema.ts
+import { defineSchema, defineTable } from 'convex/server';
+import { v } from 'convex/values';
+
+export default defineSchema({
+ // Tables are isolated to this component
+ items: defineTable({
+ name: v.string(),
+ data: v.any(),
+ createdAt: v.number(),
+ }).index('by_name', ['name']),
+
+ config: defineTable({
+ key: v.string(),
+ value: v.any(),
+ }).index('by_key', ['key']),
+});
+```
+
+#### 3. Component Definition
+
+```typescript
+// src/component.ts
+import { ComponentDefinition, defineComponent } from 'convex/server';
+
+import * as mutations from './functions/mutations';
+import * as queries from './functions/queries';
+import schema from './schema';
+
+const component = defineComponent('myComponent', {
+ schema,
+ functions: {
+ ...queries,
+ ...mutations,
+ },
+});
+
+export default component;
+```
+
+#### 4. Component Functions
+
+```typescript
+// src/functions/queries.ts
+import { v } from 'convex/values';
+
+import { query } from '../_generated/server';
+
+export const list = query({
+ args: {
+ limit: v.optional(v.number()),
+ },
+ returns: v.array(
+ v.object({
+ _id: v.id('items'),
+ name: v.string(),
+ data: v.any(),
+ createdAt: v.number(),
+ }),
+ ),
+ handler: async (ctx, args) => {
+ return await ctx.db
+ .query('items')
+ .order('desc')
+ .take(args.limit ?? 10);
+ },
+});
+
+export const get = query({
+ args: { name: v.string() },
+ returns: v.union(
+ v.object({
+ _id: v.id('items'),
+ name: v.string(),
+ data: v.any(),
+ }),
+ v.null(),
+ ),
+ handler: async (ctx, args) => {
+ return await ctx.db
+ .query('items')
+ .withIndex('by_name', (q) => q.eq('name', args.name))
+ .unique();
+ },
+});
+```
+
+```typescript
+// src/functions/mutations.ts
+import { v } from 'convex/values';
+
+import { mutation } from '../_generated/server';
+
+export const create = mutation({
+ args: {
+ name: v.string(),
+ data: v.any(),
+ },
+ returns: v.id('items'),
+ handler: async (ctx, args) => {
+ return await ctx.db.insert('items', {
+ name: args.name,
+ data: args.data,
+ createdAt: Date.now(),
+ });
+ },
+});
+
+export const update = mutation({
+ args: {
+ id: v.id('items'),
+ data: v.any(),
+ },
+ returns: v.null(),
+ handler: async (ctx, args) => {
+ await ctx.db.patch(args.id, { data: args.data });
+ return null;
+ },
+});
+
+export const remove = mutation({
+ args: { id: v.id('items') },
+ returns: v.null(),
+ handler: async (ctx, args) => {
+ await ctx.db.delete(args.id);
+ return null;
+ },
+});
+```
+
+#### 5. Main Exports
+
+```typescript
+// src/index.ts
+export { default as component } from './component';
+export * from './functions/queries';
+export * from './functions/mutations';
+
+// Export types for consumers
+export type { Id } from './_generated/dataModel';
+```
+
+### Using a Component
+
+```typescript
+// In the consuming app's convex/convex.config.ts
+import { defineApp } from 'convex/server';
+import myComponent from 'my-convex-component';
+
+const app = defineApp();
+
+app.use(myComponent, { name: 'myComponent' });
+
+export default app;
+```
+
+```typescript
+// In the consuming app's code
+import { useQuery, useMutation } from "convex/react";
+import { api } from "../convex/_generated/api";
+
+function MyApp() {
+ // Access component functions through the app's API
+ const items = useQuery(api.myComponent.list, { limit: 10 });
+ const createItem = useMutation(api.myComponent.create);
+
+ return (
+
+ {items?.map((item) => (
+
{item.name}
+ ))}
+
createItem({ name: "New", data: {} })}>
+ Add Item
+
+
+ );
+}
+```
+
+### Component Configuration Options
+
+```typescript
+// convex/convex.config.ts
+import { defineApp } from 'convex/server';
+import myComponent from 'my-convex-component';
+
+const app = defineApp();
+
+// Basic usage
+app.use(myComponent);
+
+// With custom name
+app.use(myComponent, { name: 'customName' });
+
+// Multiple instances
+app.use(myComponent, { name: 'instance1' });
+app.use(myComponent, { name: 'instance2' });
+
+export default app;
+```
+
+### Providing Component Hooks
+
+```typescript
+// src/hooks.ts
+import { useMutation, useQuery } from 'convex/react';
+import { FunctionReference } from 'convex/server';
+
+// Type-safe hooks for component consumers
+export function useMyComponent(api: {
+ list: FunctionReference<'query'>;
+ create: FunctionReference<'mutation'>;
+}) {
+ const items = useQuery(api.list, {});
+ const createItem = useMutation(api.create);
+
+ return {
+ items,
+ createItem,
+ isLoading: items === undefined,
+ };
+}
+```
+
+### Publishing a Component
+
+#### package.json
+
+```json
+{
+ "name": "my-convex-component",
+ "version": "1.0.0",
+ "description": "A reusable Convex component",
+ "main": "dist/index.js",
+ "types": "dist/index.d.ts",
+ "files": ["dist", "convex.config.ts"],
+ "scripts": {
+ "build": "tsc",
+ "prepublishOnly": "npm run build"
+ },
+ "peerDependencies": {
+ "convex": "^1.0.0"
+ },
+ "devDependencies": {
+ "convex": "^1.17.0",
+ "typescript": "^5.0.0"
+ },
+ "keywords": ["convex", "component"]
+}
+```
+
+#### tsconfig.json
+
+```json
+{
+ "compilerOptions": {
+ "target": "ES2020",
+ "module": "ESNext",
+ "moduleResolution": "bundler",
+ "declaration": true,
+ "outDir": "dist",
+ "strict": true,
+ "esModuleInterop": true,
+ "skipLibCheck": true
+ },
+ "include": ["src/**/*"],
+ "exclude": ["node_modules", "dist"]
+}
+```
+
+## Examples
+
+### Rate Limiter Component
+
+```typescript
+// rate-limiter/src/schema.ts
+import { defineSchema, defineTable } from 'convex/server';
+import { v } from 'convex/values';
+
+export default defineSchema({
+ requests: defineTable({
+ key: v.string(),
+ timestamp: v.number(),
+ })
+ .index('by_key', ['key'])
+ .index('by_key_and_time', ['key', 'timestamp']),
+});
+```
+
+```typescript
+// rate-limiter/src/functions/mutations.ts
+import { v } from 'convex/values';
+
+import { mutation } from '../_generated/server';
+
+export const checkLimit = mutation({
+ args: {
+ key: v.string(),
+ limit: v.number(),
+ windowMs: v.number(),
+ },
+ returns: v.object({
+ allowed: v.boolean(),
+ remaining: v.number(),
+ resetAt: v.number(),
+ }),
+ handler: async (ctx, args) => {
+ const now = Date.now();
+ const windowStart = now - args.windowMs;
+
+ // Clean old entries
+ const oldEntries = await ctx.db
+ .query('requests')
+ .withIndex('by_key_and_time', (q) =>
+ q.eq('key', args.key).lt('timestamp', windowStart),
+ )
+ .collect();
+
+ for (const entry of oldEntries) {
+ await ctx.db.delete(entry._id);
+ }
+
+ // Count current window
+ const currentRequests = await ctx.db
+ .query('requests')
+ .withIndex('by_key', (q) => q.eq('key', args.key))
+ .collect();
+
+ const remaining = Math.max(0, args.limit - currentRequests.length);
+ const allowed = remaining > 0;
+
+ if (allowed) {
+ await ctx.db.insert('requests', {
+ key: args.key,
+ timestamp: now,
+ });
+ }
+
+ const oldestRequest = currentRequests[0];
+ const resetAt = oldestRequest
+ ? oldestRequest.timestamp + args.windowMs
+ : now + args.windowMs;
+
+ return { allowed, remaining: remaining - (allowed ? 1 : 0), resetAt };
+ },
+});
+```
+
+```typescript
+// Usage in consuming app
+import { useMutation } from 'convex/react';
+
+import { api } from '../convex/_generated/api';
+
+function useRateLimitedAction() {
+ const checkLimit = useMutation(api.rateLimiter.checkLimit);
+
+ return async (action: () => Promise) => {
+ const result = await checkLimit({
+ key: 'user-action',
+ limit: 10,
+ windowMs: 60000,
+ });
+
+ if (!result.allowed) {
+ throw new Error(`Rate limited. Try again at ${new Date(result.resetAt)}`);
+ }
+
+ await action();
+ };
+}
+```
+
+## Best Practices
+
+- Never run `npx convex deploy` unless explicitly instructed
+- Never run any git commands unless explicitly instructed
+- Keep component tables isolated (don't reference main app tables)
+- Export clear TypeScript types for consumers
+- Document all public functions and their arguments
+- Use semantic versioning for component releases
+- Include comprehensive README with examples
+- Test components in isolation before publishing
+
+## Common Pitfalls
+
+1. **Cross-referencing tables** - Component tables should be self-contained
+2. **Missing type exports** - Export all necessary types
+3. **Hardcoded configuration** - Use component options for customization
+4. **No versioning** - Follow semantic versioning
+5. **Poor documentation** - Document all public APIs
+
+## References
+
+- Convex Documentation: https://docs.convex.dev/
+- Convex LLMs.txt: https://docs.convex.dev/llms.txt
+- Components: https://docs.convex.dev/components
+- Component Authoring: https://docs.convex.dev/components/authoring
diff --git a/.claude/skills/convex-cron-jobs/SKILL.md b/.claude/skills/convex-cron-jobs/SKILL.md
new file mode 100644
index 0000000..85be6ea
--- /dev/null
+++ b/.claude/skills/convex-cron-jobs/SKILL.md
@@ -0,0 +1,593 @@
+---
+name: convex-cron-jobs
+displayName: Convex Cron Jobs
+description: Scheduled function patterns for background tasks including interval scheduling, cron expressions, job monitoring, retry strategies, and best practices for long-running tasks
+version: 1.0.0
+author: Convex
+tags: [convex, cron, scheduling, background-jobs, automation]
+---
+
+# Convex Cron Jobs
+
+Schedule recurring functions for background tasks, cleanup jobs, data syncing, and automated workflows in Convex applications.
+
+## Documentation Sources
+
+Before implementing, do not assume; fetch the latest documentation:
+
+- Primary: https://docs.convex.dev/scheduling/cron-jobs
+- Scheduling Overview: https://docs.convex.dev/scheduling
+- Scheduled Functions: https://docs.convex.dev/scheduling/scheduled-functions
+- For broader context: https://docs.convex.dev/llms.txt
+
+## Instructions
+
+### Cron Jobs Overview
+
+Convex cron jobs allow you to schedule functions to run at regular intervals or specific times. Key features:
+
+- Run functions on a fixed schedule
+- Support for interval-based and cron expression scheduling
+- Automatic retries on failure
+- Monitoring via the Convex dashboard
+
+### Basic Cron Setup
+
+```typescript
+// convex/crons.ts
+import { cronJobs } from 'convex/server';
+
+import { internal } from './_generated/api';
+
+const crons = cronJobs();
+
+// Run every hour
+crons.interval(
+ 'cleanup expired sessions',
+ { hours: 1 },
+ internal.tasks.cleanupExpiredSessions,
+ {},
+);
+
+// Run every day at midnight UTC
+crons.cron(
+ 'daily report',
+ '0 0 * * *',
+ internal.reports.generateDailyReport,
+ {},
+);
+
+export default crons;
+```
+
+### Interval-Based Scheduling
+
+Use `crons.interval` for simple recurring tasks:
+
+```typescript
+// convex/crons.ts
+import { cronJobs } from 'convex/server';
+
+import { internal } from './_generated/api';
+
+const crons = cronJobs();
+
+// Every 5 minutes
+crons.interval(
+ 'sync external data',
+ { minutes: 5 },
+ internal.sync.fetchExternalData,
+ {},
+);
+
+// Every 2 hours
+crons.interval(
+ 'cleanup temp files',
+ { hours: 2 },
+ internal.files.cleanupTempFiles,
+ {},
+);
+
+// Every 30 seconds (minimum interval)
+crons.interval(
+ 'health check',
+ { seconds: 30 },
+ internal.monitoring.healthCheck,
+ {},
+);
+
+export default crons;
+```
+
+### Cron Expression Scheduling
+
+Use `crons.cron` for precise scheduling with cron expressions:
+
+```typescript
+// convex/crons.ts
+import { cronJobs } from 'convex/server';
+
+import { internal } from './_generated/api';
+
+const crons = cronJobs();
+
+// Every day at 9 AM UTC
+crons.cron(
+ 'morning notifications',
+ '0 9 * * *',
+ internal.notifications.sendMorningDigest,
+ {},
+);
+
+// Every Monday at 8 AM UTC
+crons.cron(
+ 'weekly summary',
+ '0 8 * * 1',
+ internal.reports.generateWeeklySummary,
+ {},
+);
+
+// First day of every month at midnight
+crons.cron(
+ 'monthly billing',
+ '0 0 1 * *',
+ internal.billing.processMonthlyBilling,
+ {},
+);
+
+// Every 15 minutes
+crons.cron('frequent sync', '*/15 * * * *', internal.sync.syncData, {});
+
+export default crons;
+```
+
+### Cron Expression Reference
+
+```
+┌───────────── minute (0-59)
+│ ┌───────────── hour (0-23)
+│ │ ┌───────────── day of month (1-31)
+│ │ │ ┌───────────── month (1-12)
+│ │ │ │ ┌───────────── day of week (0-6, Sunday=0)
+│ │ │ │ │
+* * * * *
+```
+
+Common patterns:
+
+- `* * * * *` - Every minute
+- `0 * * * *` - Every hour
+- `0 0 * * *` - Every day at midnight
+- `0 0 * * 0` - Every Sunday at midnight
+- `0 0 1 * *` - First day of every month
+- `*/5 * * * *` - Every 5 minutes
+- `0 9-17 * * 1-5` - Every hour from 9 AM to 5 PM, Monday through Friday
+
+### Internal Functions for Crons
+
+Cron jobs should call internal functions for security:
+
+```typescript
+// convex/tasks.ts
+import { v } from 'convex/values';
+
+import { internalMutation, internalQuery } from './_generated/server';
+
+// Cleanup expired sessions
+export const cleanupExpiredSessions = internalMutation({
+ args: {},
+ returns: v.number(),
+ handler: async (ctx) => {
+ const oneHourAgo = Date.now() - 60 * 60 * 1000;
+
+ const expiredSessions = await ctx.db
+ .query('sessions')
+ .withIndex('by_lastActive')
+ .filter((q) => q.lt(q.field('lastActive'), oneHourAgo))
+ .collect();
+
+ for (const session of expiredSessions) {
+ await ctx.db.delete(session._id);
+ }
+
+ return expiredSessions.length;
+ },
+});
+
+// Process pending tasks
+export const processPendingTasks = internalMutation({
+ args: {},
+ returns: v.null(),
+ handler: async (ctx) => {
+ const pendingTasks = await ctx.db
+ .query('tasks')
+ .withIndex('by_status', (q) => q.eq('status', 'pending'))
+ .take(100);
+
+ for (const task of pendingTasks) {
+ await ctx.db.patch(task._id, {
+ status: 'processing',
+ startedAt: Date.now(),
+ });
+
+ // Schedule the actual processing
+ await ctx.scheduler.runAfter(0, internal.tasks.processTask, {
+ taskId: task._id,
+ });
+ }
+
+ return null;
+ },
+});
+```
+
+### Cron Jobs with Arguments
+
+Pass static arguments to cron jobs:
+
+```typescript
+// convex/crons.ts
+import { cronJobs } from 'convex/server';
+
+import { internal } from './_generated/api';
+
+const crons = cronJobs();
+
+// Different cleanup intervals for different types
+crons.interval(
+ 'cleanup temp files',
+ { hours: 1 },
+ internal.cleanup.cleanupByType,
+ { fileType: 'temp', maxAge: 3600000 },
+);
+
+crons.interval(
+ 'cleanup cache files',
+ { hours: 24 },
+ internal.cleanup.cleanupByType,
+ { fileType: 'cache', maxAge: 86400000 },
+);
+
+export default crons;
+```
+
+```typescript
+// convex/cleanup.ts
+import { v } from 'convex/values';
+
+import { internalMutation } from './_generated/server';
+
+export const cleanupByType = internalMutation({
+ args: {
+ fileType: v.string(),
+ maxAge: v.number(),
+ },
+ returns: v.number(),
+ handler: async (ctx, args) => {
+ const cutoff = Date.now() - args.maxAge;
+
+ const oldFiles = await ctx.db
+ .query('files')
+ .withIndex('by_type_and_created', (q) =>
+ q.eq('type', args.fileType).lt('createdAt', cutoff),
+ )
+ .collect();
+
+ for (const file of oldFiles) {
+ await ctx.storage.delete(file.storageId);
+ await ctx.db.delete(file._id);
+ }
+
+ return oldFiles.length;
+ },
+});
+```
+
+### Monitoring and Logging
+
+Add logging to track cron job execution:
+
+```typescript
+// convex/tasks.ts
+import { v } from 'convex/values';
+
+import { internalMutation } from './_generated/server';
+
+export const cleanupWithLogging = internalMutation({
+ args: {},
+ returns: v.null(),
+ handler: async (ctx) => {
+ const startTime = Date.now();
+ let processedCount = 0;
+ let errorCount = 0;
+
+ try {
+ const expiredItems = await ctx.db
+ .query('items')
+ .withIndex('by_expiresAt')
+ .filter((q) => q.lt(q.field('expiresAt'), Date.now()))
+ .collect();
+
+ for (const item of expiredItems) {
+ try {
+ await ctx.db.delete(item._id);
+ processedCount++;
+ } catch (error) {
+ errorCount++;
+ console.error(`Failed to delete item ${item._id}:`, error);
+ }
+ }
+
+ // Log job completion
+ await ctx.db.insert('cronLogs', {
+ jobName: 'cleanup',
+ startTime,
+ endTime: Date.now(),
+ duration: Date.now() - startTime,
+ processedCount,
+ errorCount,
+ status: errorCount === 0 ? 'success' : 'partial',
+ });
+ } catch (error) {
+ // Log job failure
+ await ctx.db.insert('cronLogs', {
+ jobName: 'cleanup',
+ startTime,
+ endTime: Date.now(),
+ duration: Date.now() - startTime,
+ processedCount,
+ errorCount,
+ status: 'failed',
+ error: String(error),
+ });
+ throw error;
+ }
+
+ return null;
+ },
+});
+```
+
+### Batching for Large Datasets
+
+Handle large datasets in batches to avoid timeouts:
+
+```typescript
+// convex/tasks.ts
+import { v } from 'convex/values';
+
+import { internal } from './_generated/api';
+import { internalMutation } from './_generated/server';
+
+const BATCH_SIZE = 100;
+
+export const processBatch = internalMutation({
+ args: {
+ cursor: v.optional(v.string()),
+ },
+ returns: v.null(),
+ handler: async (ctx, args) => {
+ const result = await ctx.db
+ .query('items')
+ .withIndex('by_status', (q) => q.eq('status', 'pending'))
+ .paginate({ numItems: BATCH_SIZE, cursor: args.cursor ?? null });
+
+ for (const item of result.page) {
+ await ctx.db.patch(item._id, {
+ status: 'processed',
+ processedAt: Date.now(),
+ });
+ }
+
+ // Schedule next batch if there are more items
+ if (!result.isDone) {
+ await ctx.scheduler.runAfter(0, internal.tasks.processBatch, {
+ cursor: result.continueCursor,
+ });
+ }
+
+ return null;
+ },
+});
+```
+
+### External API Calls in Crons
+
+Use actions for external API calls:
+
+```typescript
+// convex/sync.ts
+'use node';
+
+import { v } from 'convex/values';
+
+import { internal } from './_generated/api';
+import { internalAction } from './_generated/server';
+
+export const syncExternalData = internalAction({
+ args: {},
+ returns: v.null(),
+ handler: async (ctx) => {
+ // Fetch from external API
+ const response = await fetch('https://api.example.com/data', {
+ headers: {
+ Authorization: `Bearer ${process.env.API_KEY}`,
+ },
+ });
+
+ if (!response.ok) {
+ throw new Error(`API request failed: ${response.status}`);
+ }
+
+ const data = await response.json();
+
+ // Store the data using a mutation
+ await ctx.runMutation(internal.sync.storeExternalData, {
+ data,
+ syncedAt: Date.now(),
+ });
+
+ return null;
+ },
+});
+
+export const storeExternalData = internalMutation({
+ args: {
+ data: v.any(),
+ syncedAt: v.number(),
+ },
+ returns: v.null(),
+ handler: async (ctx, args) => {
+ await ctx.db.insert('externalData', {
+ data: args.data,
+ syncedAt: args.syncedAt,
+ });
+ return null;
+ },
+});
+```
+
+```typescript
+// convex/crons.ts
+import { cronJobs } from 'convex/server';
+
+import { internal } from './_generated/api';
+
+const crons = cronJobs();
+
+crons.interval(
+ 'sync external data',
+ { minutes: 15 },
+ internal.sync.syncExternalData,
+ {},
+);
+
+export default crons;
+```
+
+## Examples
+
+### Schema for Cron Job Logging
+
+```typescript
+// convex/schema.ts
+import { defineSchema, defineTable } from 'convex/server';
+import { v } from 'convex/values';
+
+export default defineSchema({
+ cronLogs: defineTable({
+ jobName: v.string(),
+ startTime: v.number(),
+ endTime: v.number(),
+ duration: v.number(),
+ processedCount: v.number(),
+ errorCount: v.number(),
+ status: v.union(
+ v.literal('success'),
+ v.literal('partial'),
+ v.literal('failed'),
+ ),
+ error: v.optional(v.string()),
+ })
+ .index('by_job', ['jobName'])
+ .index('by_status', ['status'])
+ .index('by_startTime', ['startTime']),
+
+ sessions: defineTable({
+ userId: v.id('users'),
+ token: v.string(),
+ lastActive: v.number(),
+ expiresAt: v.number(),
+ })
+ .index('by_user', ['userId'])
+ .index('by_lastActive', ['lastActive'])
+ .index('by_expiresAt', ['expiresAt']),
+
+ tasks: defineTable({
+ type: v.string(),
+ status: v.union(
+ v.literal('pending'),
+ v.literal('processing'),
+ v.literal('completed'),
+ v.literal('failed'),
+ ),
+ data: v.any(),
+ createdAt: v.number(),
+ startedAt: v.optional(v.number()),
+ completedAt: v.optional(v.number()),
+ })
+ .index('by_status', ['status'])
+ .index('by_type_and_status', ['type', 'status']),
+});
+```
+
+### Complete Cron Configuration Example
+
+```typescript
+// convex/crons.ts
+import { cronJobs } from 'convex/server';
+
+import { internal } from './_generated/api';
+
+const crons = cronJobs();
+
+// Cleanup jobs
+crons.interval(
+ 'cleanup expired sessions',
+ { hours: 1 },
+ internal.cleanup.expiredSessions,
+ {},
+);
+
+crons.interval('cleanup old logs', { hours: 24 }, internal.cleanup.oldLogs, {
+ maxAgeDays: 30,
+});
+
+// Sync jobs
+crons.interval('sync user data', { minutes: 15 }, internal.sync.userData, {});
+
+// Report jobs
+crons.cron('daily analytics', '0 1 * * *', internal.reports.dailyAnalytics, {});
+
+crons.cron('weekly summary', '0 9 * * 1', internal.reports.weeklySummary, {});
+
+// Health checks
+crons.interval(
+ 'service health check',
+ { minutes: 5 },
+ internal.monitoring.healthCheck,
+ {},
+);
+
+export default crons;
+```
+
+## Best Practices
+
+- Never run `npx convex deploy` unless explicitly instructed
+- Never run any git commands unless explicitly instructed
+- Only use `crons.interval` or `crons.cron` methods, not deprecated helpers
+- Always call internal functions from cron jobs for security
+- Import `internal` from `_generated/api` even for functions in the same file
+- Add logging and monitoring for production cron jobs
+- Use batching for operations that process large datasets
+- Handle errors gracefully to prevent job failures
+- Use meaningful job names for dashboard visibility
+- Consider timezone when using cron expressions (Convex uses UTC)
+
+## Common Pitfalls
+
+1. **Using public functions** - Cron jobs should call internal functions only
+2. **Long-running mutations** - Break large operations into batches
+3. **Missing error handling** - Unhandled errors will fail the entire job
+4. **Forgetting timezone** - All cron expressions use UTC
+5. **Using deprecated helpers** - Avoid `crons.hourly`, `crons.daily`, etc.
+6. **Not logging execution** - Makes debugging production issues difficult
+
+## References
+
+- Convex Documentation: https://docs.convex.dev/
+- Convex LLMs.txt: https://docs.convex.dev/llms.txt
+- Cron Jobs: https://docs.convex.dev/scheduling/cron-jobs
+- Scheduling Overview: https://docs.convex.dev/scheduling
+- Scheduled Functions: https://docs.convex.dev/scheduling/scheduled-functions
diff --git a/.claude/skills/convex-file-storage/SKILL.md b/.claude/skills/convex-file-storage/SKILL.md
new file mode 100644
index 0000000..64c8733
--- /dev/null
+++ b/.claude/skills/convex-file-storage/SKILL.md
@@ -0,0 +1,473 @@
+---
+name: convex-file-storage
+displayName: Convex File Storage
+description: Complete file handling including upload flows, serving files via URL, storing generated files from actions, deletion, and accessing file metadata from system tables
+version: 1.0.0
+author: Convex
+tags: [convex, file-storage, uploads, images, files]
+---
+
+# Convex File Storage
+
+Handle file uploads, storage, serving, and management in Convex applications with proper patterns for images, documents, and generated files.
+
+## Documentation Sources
+
+Before implementing, do not assume; fetch the latest documentation:
+
+- Primary: https://docs.convex.dev/file-storage
+- Upload Files: https://docs.convex.dev/file-storage/upload-files
+- Serve Files: https://docs.convex.dev/file-storage/serve-files
+- For broader context: https://docs.convex.dev/llms.txt
+
+## Instructions
+
+### File Storage Overview
+
+Convex provides built-in file storage with:
+
+- Automatic URL generation for serving files
+- Support for any file type (images, PDFs, videos, etc.)
+- File metadata via the `_storage` system table
+- Integration with mutations and actions
+
+### Generating Upload URLs
+
+```typescript
+// convex/files.ts
+import { v } from 'convex/values';
+
+import { mutation } from './_generated/server';
+
+export const generateUploadUrl = mutation({
+ args: {},
+ returns: v.string(),
+ handler: async (ctx) => {
+ return await ctx.storage.generateUploadUrl();
+ },
+});
+```
+
+### Client-Side Upload
+
+```typescript
+// React component
+import { useMutation } from "convex/react";
+import { api } from "../convex/_generated/api";
+import { useState } from "react";
+
+function FileUploader() {
+ const generateUploadUrl = useMutation(api.files.generateUploadUrl);
+ const saveFile = useMutation(api.files.saveFile);
+ const [uploading, setUploading] = useState(false);
+
+ const handleUpload = async (e: React.ChangeEvent) => {
+ const file = e.target.files?.[0];
+ if (!file) return;
+
+ setUploading(true);
+ try {
+ // Step 1: Get upload URL
+ const uploadUrl = await generateUploadUrl();
+
+ // Step 2: Upload file to storage
+ const result = await fetch(uploadUrl, {
+ method: "POST",
+ headers: { "Content-Type": file.type },
+ body: file,
+ });
+
+ const { storageId } = await result.json();
+
+ // Step 3: Save file reference to database
+ await saveFile({
+ storageId,
+ fileName: file.name,
+ fileType: file.type,
+ fileSize: file.size,
+ });
+ } finally {
+ setUploading(false);
+ }
+ };
+
+ return (
+
+
+ {uploading &&
Uploading...
}
+
+ );
+}
+```
+
+### Saving File References
+
+```typescript
+// convex/files.ts
+import { v } from 'convex/values';
+
+import { mutation, query } from './_generated/server';
+
+export const saveFile = mutation({
+ args: {
+ storageId: v.id('_storage'),
+ fileName: v.string(),
+ fileType: v.string(),
+ fileSize: v.number(),
+ },
+ returns: v.id('files'),
+ handler: async (ctx, args) => {
+ return await ctx.db.insert('files', {
+ storageId: args.storageId,
+ fileName: args.fileName,
+ fileType: args.fileType,
+ fileSize: args.fileSize,
+ uploadedAt: Date.now(),
+ });
+ },
+});
+```
+
+### Serving Files via URL
+
+```typescript
+// convex/files.ts
+export const getFileUrl = query({
+ args: { storageId: v.id('_storage') },
+ returns: v.union(v.string(), v.null()),
+ handler: async (ctx, args) => {
+ return await ctx.storage.getUrl(args.storageId);
+ },
+});
+
+// Get file with URL
+export const getFile = query({
+ args: { fileId: v.id('files') },
+ returns: v.union(
+ v.object({
+ _id: v.id('files'),
+ fileName: v.string(),
+ fileType: v.string(),
+ fileSize: v.number(),
+ url: v.union(v.string(), v.null()),
+ }),
+ v.null(),
+ ),
+ handler: async (ctx, args) => {
+ const file = await ctx.db.get(args.fileId);
+ if (!file) return null;
+
+ const url = await ctx.storage.getUrl(file.storageId);
+
+ return {
+ _id: file._id,
+ fileName: file.fileName,
+ fileType: file.fileType,
+ fileSize: file.fileSize,
+ url,
+ };
+ },
+});
+```
+
+### Displaying Files in React
+
+```typescript
+import { useQuery } from "convex/react";
+import { api } from "../convex/_generated/api";
+
+function FileDisplay({ fileId }: { fileId: Id<"files"> }) {
+ const file = useQuery(api.files.getFile, { fileId });
+
+ if (!file) return Loading...
;
+ if (!file.url) return File not found
;
+
+ // Handle different file types
+ if (file.fileType.startsWith("image/")) {
+ return ;
+ }
+
+ if (file.fileType === "application/pdf") {
+ return (
+
+ );
+ }
+
+ return (
+
+ Download {file.fileName}
+
+ );
+}
+```
+
+### Storing Generated Files from Actions
+
+```typescript
+// convex/generate.ts
+'use node';
+
+import { v } from 'convex/values';
+
+import { api } from './_generated/api';
+import { action } from './_generated/server';
+
+export const generatePDF = action({
+ args: { content: v.string() },
+ returns: v.id('_storage'),
+ handler: async (ctx, args) => {
+ // Generate PDF (example using a library)
+ const pdfBuffer = await generatePDFFromContent(args.content);
+
+ // Convert to Blob
+ const blob = new Blob([pdfBuffer], { type: 'application/pdf' });
+
+ // Store in Convex
+ const storageId = await ctx.storage.store(blob);
+
+ return storageId;
+ },
+});
+
+// Generate and save image
+export const generateImage = action({
+ args: { prompt: v.string() },
+ returns: v.id('_storage'),
+ handler: async (ctx, args) => {
+ // Call external API to generate image
+ const response = await fetch('https://api.example.com/generate', {
+ method: 'POST',
+ body: JSON.stringify({ prompt: args.prompt }),
+ });
+
+ const imageBuffer = await response.arrayBuffer();
+ const blob = new Blob([imageBuffer], { type: 'image/png' });
+
+ return await ctx.storage.store(blob);
+ },
+});
+```
+
+### Accessing File Metadata
+
+```typescript
+// convex/files.ts
+import { v } from 'convex/values';
+
+import { Id } from './_generated/dataModel';
+import { query } from './_generated/server';
+
+type FileMetadata = {
+ _id: Id<'_storage'>;
+ _creationTime: number;
+ contentType?: string;
+ sha256: string;
+ size: number;
+};
+
+export const getFileMetadata = query({
+ args: { storageId: v.id('_storage') },
+ returns: v.union(
+ v.object({
+ _id: v.id('_storage'),
+ _creationTime: v.number(),
+ contentType: v.optional(v.string()),
+ sha256: v.string(),
+ size: v.number(),
+ }),
+ v.null(),
+ ),
+ handler: async (ctx, args) => {
+ const metadata = await ctx.db.system.get(args.storageId);
+ return metadata as FileMetadata | null;
+ },
+});
+```
+
+### Deleting Files
+
+```typescript
+// convex/files.ts
+import { v } from 'convex/values';
+
+import { mutation } from './_generated/server';
+
+export const deleteFile = mutation({
+ args: { fileId: v.id('files') },
+ returns: v.null(),
+ handler: async (ctx, args) => {
+ const file = await ctx.db.get(args.fileId);
+ if (!file) return null;
+
+ // Delete from storage
+ await ctx.storage.delete(file.storageId);
+
+ // Delete database record
+ await ctx.db.delete(args.fileId);
+
+ return null;
+ },
+});
+```
+
+### Image Upload with Preview
+
+```typescript
+import { useMutation } from "convex/react";
+import { api } from "../convex/_generated/api";
+import { useState, useRef } from "react";
+
+function ImageUploader({ onUpload }: { onUpload: (id: Id<"files">) => void }) {
+ const generateUploadUrl = useMutation(api.files.generateUploadUrl);
+ const saveFile = useMutation(api.files.saveFile);
+ const [preview, setPreview] = useState(null);
+ const [uploading, setUploading] = useState(false);
+ const inputRef = useRef(null);
+
+ const handleFileSelect = async (e: React.ChangeEvent) => {
+ const file = e.target.files?.[0];
+ if (!file) return;
+
+ // Validate file type
+ if (!file.type.startsWith("image/")) {
+ alert("Please select an image file");
+ return;
+ }
+
+ // Validate file size (max 10MB)
+ if (file.size > 10 * 1024 * 1024) {
+ alert("File size must be less than 10MB");
+ return;
+ }
+
+ // Show preview
+ const reader = new FileReader();
+ reader.onload = (e) => setPreview(e.target?.result as string);
+ reader.readAsDataURL(file);
+
+ // Upload
+ setUploading(true);
+ try {
+ const uploadUrl = await generateUploadUrl();
+ const result = await fetch(uploadUrl, {
+ method: "POST",
+ headers: { "Content-Type": file.type },
+ body: file,
+ });
+
+ const { storageId } = await result.json();
+ const fileId = await saveFile({
+ storageId,
+ fileName: file.name,
+ fileType: file.type,
+ fileSize: file.size,
+ });
+
+ onUpload(fileId);
+ } finally {
+ setUploading(false);
+ }
+ };
+
+ return (
+
+
+
+
inputRef.current?.click()}
+ disabled={uploading}
+ >
+ {uploading ? "Uploading..." : "Select Image"}
+
+
+ {preview && (
+
+ )}
+
+ );
+}
+```
+
+## Examples
+
+### Schema for File Storage
+
+```typescript
+// convex/schema.ts
+import { defineSchema, defineTable } from 'convex/server';
+import { v } from 'convex/values';
+
+export default defineSchema({
+ files: defineTable({
+ storageId: v.id('_storage'),
+ fileName: v.string(),
+ fileType: v.string(),
+ fileSize: v.number(),
+ uploadedBy: v.id('users'),
+ uploadedAt: v.number(),
+ })
+ .index('by_user', ['uploadedBy'])
+ .index('by_type', ['fileType']),
+
+ // User avatars
+ users: defineTable({
+ name: v.string(),
+ email: v.string(),
+ avatarStorageId: v.optional(v.id('_storage')),
+ }),
+
+ // Posts with images
+ posts: defineTable({
+ authorId: v.id('users'),
+ content: v.string(),
+ imageStorageIds: v.array(v.id('_storage')),
+ createdAt: v.number(),
+ }).index('by_author', ['authorId']),
+});
+```
+
+## Best Practices
+
+- Never run `npx convex deploy` unless explicitly instructed
+- Never run any git commands unless explicitly instructed
+- Validate file types and sizes on the client before uploading
+- Store file metadata (name, type, size) in your own table
+- Use the `_storage` system table only for Convex metadata
+- Delete storage files when deleting database references
+- Use appropriate Content-Type headers when uploading
+- Consider image optimization for large images
+
+## Common Pitfalls
+
+1. **Not setting Content-Type header** - Files may not serve correctly
+2. **Forgetting to delete storage** - Orphaned files waste storage
+3. **Not validating file types** - Security risk for malicious uploads
+4. **Large file uploads without progress** - Poor UX for users
+5. **Using deprecated getMetadata** - Use ctx.db.system.get instead
+
+## References
+
+- Convex Documentation: https://docs.convex.dev/
+- Convex LLMs.txt: https://docs.convex.dev/llms.txt
+- File Storage: https://docs.convex.dev/file-storage
+- Upload Files: https://docs.convex.dev/file-storage/upload-files
+- Serve Files: https://docs.convex.dev/file-storage/serve-files
diff --git a/.claude/skills/convex-functions/SKILL.md b/.claude/skills/convex-functions/SKILL.md
new file mode 100644
index 0000000..e895a59
--- /dev/null
+++ b/.claude/skills/convex-functions/SKILL.md
@@ -0,0 +1,463 @@
+---
+name: convex-functions
+displayName: Convex Functions
+description: Writing queries, mutations, actions, and HTTP actions with proper argument validation, error handling, internal functions, and runtime considerations
+version: 1.0.0
+author: Convex
+tags: [convex, functions, queries, mutations, actions, http]
+---
+
+# Convex Functions
+
+Master Convex functions including queries, mutations, actions, and HTTP endpoints with proper validation, error handling, and runtime considerations.
+
+## Code Quality
+
+All examples in this skill comply with @convex-dev/eslint-plugin rules:
+
+- Object syntax with `handler` property
+- Argument validators on all functions
+- Explicit table names in database operations
+
+See the Code Quality section in [convex-best-practices](../convex-best-practices/SKILL.md) for linting setup.
+
+## Documentation Sources
+
+Before implementing, do not assume; fetch the latest documentation:
+
+- Primary: https://docs.convex.dev/functions
+- Query Functions: https://docs.convex.dev/functions/query-functions
+- Mutation Functions: https://docs.convex.dev/functions/mutation-functions
+- Actions: https://docs.convex.dev/functions/actions
+- HTTP Actions: https://docs.convex.dev/functions/http-actions
+- For broader context: https://docs.convex.dev/llms.txt
+
+## Instructions
+
+### Function Types Overview
+
+| Type | Database Access | External APIs | Caching | Use Case |
+| ----------- | ------------------------ | ------------- | ------------- | --------------------- |
+| Query | Read-only | No | Yes, reactive | Fetching data |
+| Mutation | Read/Write | No | No | Modifying data |
+| Action | Via runQuery/runMutation | Yes | No | External integrations |
+| HTTP Action | Via runQuery/runMutation | Yes | No | Webhooks, APIs |
+
+### Queries
+
+Queries are reactive, cached, and read-only:
+
+```typescript
+import { v } from 'convex/values';
+
+import { query } from './_generated/server';
+
+export const getUser = query({
+ args: { userId: v.id('users') },
+ returns: v.union(
+ v.object({
+ _id: v.id('users'),
+ _creationTime: v.number(),
+ name: v.string(),
+ email: v.string(),
+ }),
+ v.null(),
+ ),
+ handler: async (ctx, args) => {
+ return await ctx.db.get('users', args.userId);
+ },
+});
+
+// Query with index
+export const listUserTasks = query({
+ args: { userId: v.id('users') },
+ returns: v.array(
+ v.object({
+ _id: v.id('tasks'),
+ _creationTime: v.number(),
+ title: v.string(),
+ completed: v.boolean(),
+ }),
+ ),
+ handler: async (ctx, args) => {
+ return await ctx.db
+ .query('tasks')
+ .withIndex('by_user', (q) => q.eq('userId', args.userId))
+ .order('desc')
+ .collect();
+ },
+});
+```
+
+### Mutations
+
+Mutations modify the database and are transactional:
+
+```typescript
+import { ConvexError, v } from 'convex/values';
+
+import { mutation } from './_generated/server';
+
+export const createTask = mutation({
+ args: {
+ title: v.string(),
+ userId: v.id('users'),
+ },
+ returns: v.id('tasks'),
+ handler: async (ctx, args) => {
+ // Validate user exists
+ const user = await ctx.db.get('users', args.userId);
+ if (!user) {
+ throw new ConvexError('User not found');
+ }
+
+ return await ctx.db.insert('tasks', {
+ title: args.title,
+ userId: args.userId,
+ completed: false,
+ createdAt: Date.now(),
+ });
+ },
+});
+
+export const deleteTask = mutation({
+ args: { taskId: v.id('tasks') },
+ returns: v.null(),
+ handler: async (ctx, args) => {
+ await ctx.db.delete('tasks', args.taskId);
+ return null;
+ },
+});
+```
+
+### Actions
+
+Actions can call external APIs but have no direct database access:
+
+```typescript
+'use node';
+
+import { v } from 'convex/values';
+
+import { api, internal } from './_generated/api';
+import { action } from './_generated/server';
+
+export const sendEmail = action({
+ args: {
+ to: v.string(),
+ subject: v.string(),
+ body: v.string(),
+ },
+ returns: v.object({ success: v.boolean() }),
+ handler: async (ctx, args) => {
+ // Call external API
+ const response = await fetch('https://api.email.com/send', {
+ method: 'POST',
+ headers: { 'Content-Type': 'application/json' },
+ body: JSON.stringify(args),
+ });
+
+ return { success: response.ok };
+ },
+});
+
+// Action calling queries and mutations
+export const processOrder = action({
+ args: { orderId: v.id('orders') },
+ returns: v.null(),
+ handler: async (ctx, args) => {
+ // Read data via query
+ const order = await ctx.runQuery(api.orders.get, { orderId: args.orderId });
+
+ if (!order) {
+ throw new Error('Order not found');
+ }
+
+ // Call external payment API
+ const paymentResult = await processPayment(order);
+
+ // Update database via mutation
+ await ctx.runMutation(internal.orders.updateStatus, {
+ orderId: args.orderId,
+ status: paymentResult.success ? 'paid' : 'failed',
+ });
+
+ return null;
+ },
+});
+```
+
+### HTTP Actions
+
+HTTP actions handle webhooks and external requests:
+
+```typescript
+// convex/http.ts
+import { httpRouter } from 'convex/server';
+
+import { api, internal } from './_generated/api';
+import { httpAction } from './_generated/server';
+
+const http = httpRouter();
+
+// Webhook endpoint
+http.route({
+ path: '/webhooks/stripe',
+ method: 'POST',
+ handler: httpAction(async (ctx, request) => {
+ const signature = request.headers.get('stripe-signature');
+ const body = await request.text();
+
+ // Verify webhook signature
+ if (!verifyStripeSignature(body, signature)) {
+ return new Response('Invalid signature', { status: 401 });
+ }
+
+ const event = JSON.parse(body);
+
+ // Process webhook
+ await ctx.runMutation(internal.payments.handleWebhook, {
+ eventType: event.type,
+ data: event.data,
+ });
+
+ return new Response('OK', { status: 200 });
+ }),
+});
+
+// API endpoint
+http.route({
+ path: '/api/users/:userId',
+ method: 'GET',
+ handler: httpAction(async (ctx, request) => {
+ const url = new URL(request.url);
+ const userId = url.pathname.split('/').pop();
+
+ const user = await ctx.runQuery(api.users.get, {
+ userId: userId as Id<'users'>,
+ });
+
+ if (!user) {
+ return new Response('Not found', { status: 404 });
+ }
+
+ return Response.json(user);
+ }),
+});
+
+export default http;
+```
+
+### Internal Functions
+
+Use internal functions for sensitive operations:
+
+```typescript
+import { v } from 'convex/values';
+
+import {
+ internalAction,
+ internalMutation,
+ internalQuery,
+} from './_generated/server';
+
+// Only callable from other Convex functions
+export const _updateUserCredits = internalMutation({
+ args: {
+ userId: v.id('users'),
+ amount: v.number(),
+ },
+ returns: v.null(),
+ handler: async (ctx, args) => {
+ const user = await ctx.db.get('users', args.userId);
+ if (!user) return null;
+
+ await ctx.db.patch('users', args.userId, {
+ credits: (user.credits || 0) + args.amount,
+ });
+ return null;
+ },
+});
+
+// Call internal function from action
+export const purchaseCredits = action({
+ args: { userId: v.id('users'), amount: v.number() },
+ returns: v.null(),
+ handler: async (ctx, args) => {
+ // Process payment externally
+ await processPayment(args.amount);
+
+ // Update credits via internal mutation
+ await ctx.runMutation(internal.users._updateUserCredits, {
+ userId: args.userId,
+ amount: args.amount,
+ });
+
+ return null;
+ },
+});
+```
+
+### Scheduling Functions
+
+Schedule functions to run later:
+
+```typescript
+import { v } from 'convex/values';
+
+import { internal } from './_generated/api';
+import { internalMutation, mutation } from './_generated/server';
+
+export const scheduleReminder = mutation({
+ args: {
+ userId: v.id('users'),
+ message: v.string(),
+ delayMs: v.number(),
+ },
+ returns: v.id('_scheduled_functions'),
+ handler: async (ctx, args) => {
+ return await ctx.scheduler.runAfter(
+ args.delayMs,
+ internal.notifications.sendReminder,
+ { userId: args.userId, message: args.message },
+ );
+ },
+});
+
+export const sendReminder = internalMutation({
+ args: {
+ userId: v.id('users'),
+ message: v.string(),
+ },
+ returns: v.null(),
+ handler: async (ctx, args) => {
+ await ctx.db.insert('notifications', {
+ userId: args.userId,
+ message: args.message,
+ sentAt: Date.now(),
+ });
+ return null;
+ },
+});
+```
+
+## Examples
+
+### Complete Function File
+
+```typescript
+// convex/messages.ts
+import { ConvexError, v } from 'convex/values';
+
+import { internal } from './_generated/api';
+import { internalMutation, mutation, query } from './_generated/server';
+
+const messageValidator = v.object({
+ _id: v.id('messages'),
+ _creationTime: v.number(),
+ channelId: v.id('channels'),
+ authorId: v.id('users'),
+ content: v.string(),
+ editedAt: v.optional(v.number()),
+});
+
+// Public query
+export const list = query({
+ args: {
+ channelId: v.id('channels'),
+ limit: v.optional(v.number()),
+ },
+ returns: v.array(messageValidator),
+ handler: async (ctx, args) => {
+ const limit = args.limit ?? 50;
+ return await ctx.db
+ .query('messages')
+ .withIndex('by_channel', (q) => q.eq('channelId', args.channelId))
+ .order('desc')
+ .take(limit);
+ },
+});
+
+// Public mutation
+export const send = mutation({
+ args: {
+ channelId: v.id('channels'),
+ authorId: v.id('users'),
+ content: v.string(),
+ },
+ returns: v.id('messages'),
+ handler: async (ctx, args) => {
+ if (args.content.trim().length === 0) {
+ throw new ConvexError('Message cannot be empty');
+ }
+
+ const messageId = await ctx.db.insert('messages', {
+ channelId: args.channelId,
+ authorId: args.authorId,
+ content: args.content.trim(),
+ });
+
+ // Schedule notification
+ await ctx.scheduler.runAfter(0, internal.messages.notifySubscribers, {
+ channelId: args.channelId,
+ messageId,
+ });
+
+ return messageId;
+ },
+});
+
+// Internal mutation
+export const notifySubscribers = internalMutation({
+ args: {
+ channelId: v.id('channels'),
+ messageId: v.id('messages'),
+ },
+ returns: v.null(),
+ handler: async (ctx, args) => {
+ // Get channel subscribers and notify them
+ const subscribers = await ctx.db
+ .query('subscriptions')
+ .withIndex('by_channel', (q) => q.eq('channelId', args.channelId))
+ .collect();
+
+ for (const sub of subscribers) {
+ await ctx.db.insert('notifications', {
+ userId: sub.userId,
+ messageId: args.messageId,
+ read: false,
+ });
+ }
+ return null;
+ },
+});
+```
+
+## Best Practices
+
+- Never run `npx convex deploy` unless explicitly instructed
+- Never run any git commands unless explicitly instructed
+- Always define args and returns validators
+- Use queries for read operations (they are cached and reactive)
+- Use mutations for write operations (they are transactional)
+- Use actions only when calling external APIs
+- Use internal functions for sensitive operations
+- Add `"use node";` at the top of action files using Node.js APIs
+- Handle errors with ConvexError for user-facing messages
+
+## Common Pitfalls
+
+1. **Using actions for database operations** - Use queries/mutations instead
+2. **Calling external APIs from queries/mutations** - Use actions
+3. **Forgetting to add "use node"** - Required for Node.js APIs in actions
+4. **Missing return validators** - Always specify returns
+5. **Not using internal functions for sensitive logic** - Protect with internalMutation
+
+## References
+
+- Convex Documentation: https://docs.convex.dev/
+- Convex LLMs.txt: https://docs.convex.dev/llms.txt
+- Functions Overview: https://docs.convex.dev/functions
+- Query Functions: https://docs.convex.dev/functions/query-functions
+- Mutation Functions: https://docs.convex.dev/functions/mutation-functions
+- Actions: https://docs.convex.dev/functions/actions
diff --git a/.claude/skills/convex-http-actions/SKILL.md b/.claude/skills/convex-http-actions/SKILL.md
new file mode 100644
index 0000000..5353ebb
--- /dev/null
+++ b/.claude/skills/convex-http-actions/SKILL.md
@@ -0,0 +1,735 @@
+---
+name: convex-http-actions
+displayName: Convex HTTP Actions
+description: External API integration and webhook handling including HTTP endpoint routing, request/response handling, authentication, CORS configuration, and webhook signature validation
+version: 1.0.0
+author: Convex
+tags: [convex, http, actions, webhooks, api, endpoints]
+---
+
+# Convex HTTP Actions
+
+Build HTTP endpoints for webhooks, external API integrations, and custom routes in Convex applications.
+
+## Documentation Sources
+
+Before implementing, do not assume; fetch the latest documentation:
+
+- Primary: https://docs.convex.dev/functions/http-actions
+- Actions Overview: https://docs.convex.dev/functions/actions
+- Authentication: https://docs.convex.dev/auth
+- For broader context: https://docs.convex.dev/llms.txt
+
+## Instructions
+
+### HTTP Actions Overview
+
+HTTP actions allow you to define HTTP endpoints in Convex that can:
+
+- Receive webhooks from third-party services
+- Create custom API routes
+- Handle file uploads
+- Integrate with external services
+- Serve dynamic content
+
+### Basic HTTP Router Setup
+
+```typescript
+// convex/http.ts
+import { httpRouter } from 'convex/server';
+
+import { httpAction } from './_generated/server';
+
+const http = httpRouter();
+
+// Simple GET endpoint
+http.route({
+ path: '/health',
+ method: 'GET',
+ handler: httpAction(async (ctx, request) => {
+ return new Response(JSON.stringify({ status: 'ok' }), {
+ status: 200,
+ headers: { 'Content-Type': 'application/json' },
+ });
+ }),
+});
+
+export default http;
+```
+
+### Request Handling
+
+```typescript
+// convex/http.ts
+import { httpRouter } from 'convex/server';
+
+import { httpAction } from './_generated/server';
+
+const http = httpRouter();
+
+// Handle JSON body
+http.route({
+ path: '/api/data',
+ method: 'POST',
+ handler: httpAction(async (ctx, request) => {
+ // Parse JSON body
+ const body = await request.json();
+
+ // Access headers
+ const authHeader = request.headers.get('Authorization');
+
+ // Access URL parameters
+ const url = new URL(request.url);
+ const queryParam = url.searchParams.get('filter');
+
+ return new Response(
+ JSON.stringify({ received: body, filter: queryParam }),
+ {
+ status: 200,
+ headers: { 'Content-Type': 'application/json' },
+ },
+ );
+ }),
+});
+
+// Handle form data
+http.route({
+ path: '/api/form',
+ method: 'POST',
+ handler: httpAction(async (ctx, request) => {
+ const formData = await request.formData();
+ const name = formData.get('name');
+ const email = formData.get('email');
+
+ return new Response(JSON.stringify({ name, email }), {
+ status: 200,
+ headers: { 'Content-Type': 'application/json' },
+ });
+ }),
+});
+
+// Handle raw bytes
+http.route({
+ path: '/api/upload',
+ method: 'POST',
+ handler: httpAction(async (ctx, request) => {
+ const bytes = await request.bytes();
+ const contentType =
+ request.headers.get('Content-Type') ?? 'application/octet-stream';
+
+ // Store in Convex storage
+ const blob = new Blob([bytes], { type: contentType });
+ const storageId = await ctx.storage.store(blob);
+
+ return new Response(JSON.stringify({ storageId }), {
+ status: 200,
+ headers: { 'Content-Type': 'application/json' },
+ });
+ }),
+});
+
+export default http;
+```
+
+### Path Parameters
+
+Use path prefix matching for dynamic routes:
+
+```typescript
+// convex/http.ts
+import { httpRouter } from 'convex/server';
+
+import { httpAction } from './_generated/server';
+
+const http = httpRouter();
+
+// Match /api/users/* with pathPrefix
+http.route({
+ pathPrefix: '/api/users/',
+ method: 'GET',
+ handler: httpAction(async (ctx, request) => {
+ const url = new URL(request.url);
+ // Extract user ID from path: /api/users/123 -> "123"
+ const userId = url.pathname.replace('/api/users/', '');
+
+ return new Response(JSON.stringify({ userId }), {
+ status: 200,
+ headers: { 'Content-Type': 'application/json' },
+ });
+ }),
+});
+
+export default http;
+```
+
+### CORS Configuration
+
+```typescript
+// convex/http.ts
+import { httpRouter } from 'convex/server';
+
+import { httpAction } from './_generated/server';
+
+const http = httpRouter();
+
+// CORS headers helper
+const corsHeaders = {
+ 'Access-Control-Allow-Origin': '*',
+ 'Access-Control-Allow-Methods': 'GET, POST, PUT, DELETE, OPTIONS',
+ 'Access-Control-Allow-Headers': 'Content-Type, Authorization',
+ 'Access-Control-Max-Age': '86400',
+};
+
+// Handle preflight requests
+http.route({
+ path: '/api/data',
+ method: 'OPTIONS',
+ handler: httpAction(async () => {
+ return new Response(null, {
+ status: 204,
+ headers: corsHeaders,
+ });
+ }),
+});
+
+// Actual endpoint with CORS
+http.route({
+ path: '/api/data',
+ method: 'POST',
+ handler: httpAction(async (ctx, request) => {
+ const body = await request.json();
+
+ return new Response(JSON.stringify({ success: true, data: body }), {
+ status: 200,
+ headers: {
+ 'Content-Type': 'application/json',
+ ...corsHeaders,
+ },
+ });
+ }),
+});
+
+export default http;
+```
+
+### Webhook Handling
+
+```typescript
+// convex/http.ts
+import { httpRouter } from 'convex/server';
+
+import { internal } from './_generated/api';
+import { httpAction } from './_generated/server';
+
+const http = httpRouter();
+
+// Stripe webhook
+http.route({
+ path: '/webhooks/stripe',
+ method: 'POST',
+ handler: httpAction(async (ctx, request) => {
+ const signature = request.headers.get('stripe-signature');
+ if (!signature) {
+ return new Response('Missing signature', { status: 400 });
+ }
+
+ const body = await request.text();
+
+ // Verify webhook signature (in action with Node.js)
+ try {
+ await ctx.runAction(internal.stripe.verifyAndProcessWebhook, {
+ body,
+ signature,
+ });
+ return new Response('OK', { status: 200 });
+ } catch (error) {
+ console.error('Webhook error:', error);
+ return new Response('Webhook error', { status: 400 });
+ }
+ }),
+});
+
+// GitHub webhook
+http.route({
+ path: '/webhooks/github',
+ method: 'POST',
+ handler: httpAction(async (ctx, request) => {
+ const event = request.headers.get('X-GitHub-Event');
+ const signature = request.headers.get('X-Hub-Signature-256');
+
+ if (!signature) {
+ return new Response('Missing signature', { status: 400 });
+ }
+
+ const body = await request.text();
+
+ await ctx.runAction(internal.github.processWebhook, {
+ event: event ?? 'unknown',
+ body,
+ signature,
+ });
+
+ return new Response('OK', { status: 200 });
+ }),
+});
+
+export default http;
+```
+
+### Webhook Signature Verification
+
+```typescript
+// convex/stripe.ts
+'use node';
+
+import { v } from 'convex/values';
+import Stripe from 'stripe';
+
+import { internal } from './_generated/api';
+import { internalAction, internalMutation } from './_generated/server';
+
+const stripe = new Stripe(process.env.STRIPE_SECRET_KEY!);
+
+export const verifyAndProcessWebhook = internalAction({
+ args: {
+ body: v.string(),
+ signature: v.string(),
+ },
+ returns: v.null(),
+ handler: async (ctx, args) => {
+ const webhookSecret = process.env.STRIPE_WEBHOOK_SECRET!;
+
+ // Verify signature
+ const event = stripe.webhooks.constructEvent(
+ args.body,
+ args.signature,
+ webhookSecret,
+ );
+
+ // Process based on event type
+ switch (event.type) {
+ case 'checkout.session.completed':
+ await ctx.runMutation(internal.payments.handleCheckoutComplete, {
+ sessionId: event.data.object.id,
+ customerId: event.data.object.customer as string,
+ });
+ break;
+
+ case 'customer.subscription.updated':
+ await ctx.runMutation(internal.subscriptions.handleUpdate, {
+ subscriptionId: event.data.object.id,
+ status: event.data.object.status,
+ });
+ break;
+ }
+
+ return null;
+ },
+});
+```
+
+### Authentication in HTTP Actions
+
+```typescript
+// convex/http.ts
+import { httpRouter } from 'convex/server';
+
+import { internal } from './_generated/api';
+import { httpAction } from './_generated/server';
+
+const http = httpRouter();
+
+// API key authentication
+http.route({
+ path: '/api/protected',
+ method: 'GET',
+ handler: httpAction(async (ctx, request) => {
+ const apiKey = request.headers.get('X-API-Key');
+
+ if (!apiKey) {
+ return new Response(JSON.stringify({ error: 'Missing API key' }), {
+ status: 401,
+ headers: { 'Content-Type': 'application/json' },
+ });
+ }
+
+ // Validate API key
+ const isValid = await ctx.runQuery(internal.auth.validateApiKey, {
+ apiKey,
+ });
+
+ if (!isValid) {
+ return new Response(JSON.stringify({ error: 'Invalid API key' }), {
+ status: 403,
+ headers: { 'Content-Type': 'application/json' },
+ });
+ }
+
+ // Process authenticated request
+ const data = await ctx.runQuery(internal.data.getProtectedData, {});
+
+ return new Response(JSON.stringify(data), {
+ status: 200,
+ headers: { 'Content-Type': 'application/json' },
+ });
+ }),
+});
+
+// Bearer token authentication
+http.route({
+ path: '/api/user',
+ method: 'GET',
+ handler: httpAction(async (ctx, request) => {
+ const authHeader = request.headers.get('Authorization');
+
+ if (!authHeader?.startsWith('Bearer ')) {
+ return new Response(
+ JSON.stringify({ error: 'Missing or invalid Authorization header' }),
+ { status: 401, headers: { 'Content-Type': 'application/json' } },
+ );
+ }
+
+ const token = authHeader.slice(7);
+
+ // Validate token and get user
+ const user = await ctx.runQuery(internal.auth.validateToken, { token });
+
+ if (!user) {
+ return new Response(JSON.stringify({ error: 'Invalid token' }), {
+ status: 403,
+ headers: { 'Content-Type': 'application/json' },
+ });
+ }
+
+ return new Response(JSON.stringify(user), {
+ status: 200,
+ headers: { 'Content-Type': 'application/json' },
+ });
+ }),
+});
+
+export default http;
+```
+
+### Calling Mutations and Queries
+
+```typescript
+// convex/http.ts
+import { httpRouter } from 'convex/server';
+
+import { api, internal } from './_generated/api';
+import { httpAction } from './_generated/server';
+
+const http = httpRouter();
+
+http.route({
+ path: '/api/items',
+ method: 'POST',
+ handler: httpAction(async (ctx, request) => {
+ const body = await request.json();
+
+ // Call a mutation
+ const itemId = await ctx.runMutation(internal.items.create, {
+ name: body.name,
+ description: body.description,
+ });
+
+ // Query the created item
+ const item = await ctx.runQuery(internal.items.get, { id: itemId });
+
+ return new Response(JSON.stringify(item), {
+ status: 201,
+ headers: { 'Content-Type': 'application/json' },
+ });
+ }),
+});
+
+http.route({
+ path: '/api/items',
+ method: 'GET',
+ handler: httpAction(async (ctx, request) => {
+ const url = new URL(request.url);
+ const limit = parseInt(url.searchParams.get('limit') ?? '10');
+
+ const items = await ctx.runQuery(internal.items.list, { limit });
+
+ return new Response(JSON.stringify(items), {
+ status: 200,
+ headers: { 'Content-Type': 'application/json' },
+ });
+ }),
+});
+
+export default http;
+```
+
+### Error Handling
+
+```typescript
+// convex/http.ts
+import { httpRouter } from 'convex/server';
+
+import { httpAction } from './_generated/server';
+
+const http = httpRouter();
+
+// Helper for JSON responses
+function jsonResponse(data: unknown, status = 200) {
+ return new Response(JSON.stringify(data), {
+ status,
+ headers: { 'Content-Type': 'application/json' },
+ });
+}
+
+// Helper for error responses
+function errorResponse(message: string, status: number) {
+ return jsonResponse({ error: message }, status);
+}
+
+http.route({
+ path: '/api/process',
+ method: 'POST',
+ handler: httpAction(async (ctx, request) => {
+ try {
+ // Validate content type
+ const contentType = request.headers.get('Content-Type');
+ if (!contentType?.includes('application/json')) {
+ return errorResponse('Content-Type must be application/json', 415);
+ }
+
+ // Parse body
+ let body;
+ try {
+ body = await request.json();
+ } catch {
+ return errorResponse('Invalid JSON body', 400);
+ }
+
+ // Validate required fields
+ if (!body.data) {
+ return errorResponse('Missing required field: data', 400);
+ }
+
+ // Process request
+ const result = await ctx.runMutation(internal.process.handle, {
+ data: body.data,
+ });
+
+ return jsonResponse({ success: true, result }, 200);
+ } catch (error) {
+ console.error('Processing error:', error);
+ return errorResponse('Internal server error', 500);
+ }
+ }),
+});
+
+export default http;
+```
+
+### File Downloads
+
+```typescript
+// convex/http.ts
+import { httpRouter } from 'convex/server';
+
+import { Id } from './_generated/dataModel';
+import { httpAction } from './_generated/server';
+
+const http = httpRouter();
+
+http.route({
+ pathPrefix: '/files/',
+ method: 'GET',
+ handler: httpAction(async (ctx, request) => {
+ const url = new URL(request.url);
+ const fileId = url.pathname.replace('/files/', '') as Id<'_storage'>;
+
+ // Get file URL from storage
+ const fileUrl = await ctx.storage.getUrl(fileId);
+
+ if (!fileUrl) {
+ return new Response('File not found', { status: 404 });
+ }
+
+ // Redirect to the file URL
+ return Response.redirect(fileUrl, 302);
+ }),
+});
+
+export default http;
+```
+
+## Examples
+
+### Complete Webhook Integration
+
+```typescript
+// convex/http.ts
+import { httpRouter } from 'convex/server';
+
+import { internal } from './_generated/api';
+import { httpAction } from './_generated/server';
+
+const http = httpRouter();
+
+// Clerk webhook for user sync
+http.route({
+ path: '/webhooks/clerk',
+ method: 'POST',
+ handler: httpAction(async (ctx, request) => {
+ const svixId = request.headers.get('svix-id');
+ const svixTimestamp = request.headers.get('svix-timestamp');
+ const svixSignature = request.headers.get('svix-signature');
+
+ if (!svixId || !svixTimestamp || !svixSignature) {
+ return new Response('Missing Svix headers', { status: 400 });
+ }
+
+ const body = await request.text();
+
+ try {
+ await ctx.runAction(internal.clerk.verifyAndProcess, {
+ body,
+ svixId,
+ svixTimestamp,
+ svixSignature,
+ });
+ return new Response('OK', { status: 200 });
+ } catch (error) {
+ console.error('Clerk webhook error:', error);
+ return new Response('Webhook verification failed', { status: 400 });
+ }
+ }),
+});
+
+export default http;
+```
+
+```typescript
+// convex/clerk.ts
+'use node';
+
+import { v } from 'convex/values';
+import { Webhook } from 'svix';
+
+import { internal } from './_generated/api';
+import { internalAction, internalMutation } from './_generated/server';
+
+export const verifyAndProcess = internalAction({
+ args: {
+ body: v.string(),
+ svixId: v.string(),
+ svixTimestamp: v.string(),
+ svixSignature: v.string(),
+ },
+ returns: v.null(),
+ handler: async (ctx, args) => {
+ const webhookSecret = process.env.CLERK_WEBHOOK_SECRET!;
+ const wh = new Webhook(webhookSecret);
+
+ const event = wh.verify(args.body, {
+ 'svix-id': args.svixId,
+ 'svix-timestamp': args.svixTimestamp,
+ 'svix-signature': args.svixSignature,
+ }) as { type: string; data: Record };
+
+ switch (event.type) {
+ case 'user.created':
+ await ctx.runMutation(internal.users.create, {
+ clerkId: event.data.id as string,
+ email: (
+ event.data.email_addresses as Array<{ email_address: string }>
+ )[0]?.email_address,
+ name: `${event.data.first_name} ${event.data.last_name}`,
+ });
+ break;
+
+ case 'user.updated':
+ await ctx.runMutation(internal.users.update, {
+ clerkId: event.data.id as string,
+ email: (
+ event.data.email_addresses as Array<{ email_address: string }>
+ )[0]?.email_address,
+ name: `${event.data.first_name} ${event.data.last_name}`,
+ });
+ break;
+
+ case 'user.deleted':
+ await ctx.runMutation(internal.users.remove, {
+ clerkId: event.data.id as string,
+ });
+ break;
+ }
+
+ return null;
+ },
+});
+```
+
+### Schema for HTTP API
+
+```typescript
+// convex/schema.ts
+import { defineSchema, defineTable } from 'convex/server';
+import { v } from 'convex/values';
+
+export default defineSchema({
+ apiKeys: defineTable({
+ key: v.string(),
+ userId: v.id('users'),
+ name: v.string(),
+ createdAt: v.number(),
+ lastUsedAt: v.optional(v.number()),
+ revokedAt: v.optional(v.number()),
+ })
+ .index('by_key', ['key'])
+ .index('by_user', ['userId']),
+
+ webhookEvents: defineTable({
+ source: v.string(),
+ eventType: v.string(),
+ payload: v.any(),
+ processedAt: v.number(),
+ status: v.union(v.literal('success'), v.literal('failed')),
+ error: v.optional(v.string()),
+ })
+ .index('by_source', ['source'])
+ .index('by_status', ['status']),
+
+ users: defineTable({
+ clerkId: v.string(),
+ email: v.string(),
+ name: v.string(),
+ }).index('by_clerk_id', ['clerkId']),
+});
+```
+
+## Best Practices
+
+- Never run `npx convex deploy` unless explicitly instructed
+- Never run any git commands unless explicitly instructed
+- Always validate and sanitize incoming request data
+- Use internal functions for database operations
+- Implement proper error handling with appropriate status codes
+- Add CORS headers for browser-accessible endpoints
+- Verify webhook signatures before processing
+- Log webhook events for debugging
+- Use environment variables for secrets
+- Handle timeouts gracefully
+
+## Common Pitfalls
+
+1. **Missing CORS preflight handler** - Browsers send OPTIONS requests first
+2. **Not validating webhook signatures** - Security vulnerability
+3. **Exposing internal functions** - Use internal functions from HTTP actions
+4. **Forgetting Content-Type headers** - Clients may not parse responses correctly
+5. **Not handling request body errors** - Invalid JSON will throw
+6. **Blocking on long operations** - Use scheduled functions for heavy processing
+
+## References
+
+- Convex Documentation: https://docs.convex.dev/
+- Convex LLMs.txt: https://docs.convex.dev/llms.txt
+- HTTP Actions: https://docs.convex.dev/functions/http-actions
+- Actions: https://docs.convex.dev/functions/actions
+- Authentication: https://docs.convex.dev/auth
diff --git a/.claude/skills/convex-migrations/SKILL.md b/.claude/skills/convex-migrations/SKILL.md
new file mode 100644
index 0000000..3e38c63
--- /dev/null
+++ b/.claude/skills/convex-migrations/SKILL.md
@@ -0,0 +1,732 @@
+---
+name: convex-migrations
+displayName: Convex Migrations
+description: Schema migration strategies for evolving applications including adding new fields, backfilling data, removing deprecated fields, index migrations, and zero-downtime migration patterns
+version: 1.0.0
+author: Convex
+tags: [convex, migrations, schema, database, data-modeling]
+---
+
+# Convex Migrations
+
+Evolve your Convex database schema safely with patterns for adding fields, backfilling data, removing deprecated fields, and maintaining zero-downtime deployments.
+
+## Documentation Sources
+
+Before implementing, do not assume; fetch the latest documentation:
+
+- Primary: https://docs.convex.dev/database/schemas
+- Schema Overview: https://docs.convex.dev/database
+- Migration Patterns: https://stack.convex.dev/migrate-data-postgres-to-convex
+- For broader context: https://docs.convex.dev/llms.txt
+
+## Instructions
+
+### Migration Philosophy
+
+Convex handles schema evolution differently than traditional databases:
+
+- No explicit migration files or commands
+- Schema changes deploy instantly with `npx convex dev`
+- Existing data is not automatically transformed
+- Use optional fields and backfill mutations for safe migrations
+
+### Adding New Fields
+
+Start with optional fields, then backfill:
+
+```typescript
+// Step 1: Add optional field to schema
+// convex/schema.ts
+import { defineSchema, defineTable } from 'convex/server';
+import { v } from 'convex/values';
+
+export default defineSchema({
+ users: defineTable({
+ name: v.string(),
+ email: v.string(),
+ // New field - start as optional
+ avatarUrl: v.optional(v.string()),
+ }),
+});
+```
+
+```typescript
+// Step 2: Update code to handle both cases
+// convex/users.ts
+import { v } from 'convex/values';
+
+import { query } from './_generated/server';
+
+export const getUser = query({
+ args: { userId: v.id('users') },
+ returns: v.union(
+ v.object({
+ _id: v.id('users'),
+ name: v.string(),
+ email: v.string(),
+ avatarUrl: v.union(v.string(), v.null()),
+ }),
+ v.null(),
+ ),
+ handler: async (ctx, args) => {
+ const user = await ctx.db.get(args.userId);
+ if (!user) return null;
+
+ return {
+ _id: user._id,
+ name: user.name,
+ email: user.email,
+ // Handle missing field gracefully
+ avatarUrl: user.avatarUrl ?? null,
+ };
+ },
+});
+```
+
+```typescript
+// Step 3: Backfill existing documents
+// convex/migrations.ts
+import { v } from 'convex/values';
+
+import { internal } from './_generated/api';
+import { internalMutation } from './_generated/server';
+
+const BATCH_SIZE = 100;
+
+export const backfillAvatarUrl = internalMutation({
+ args: {
+ cursor: v.optional(v.string()),
+ },
+ returns: v.object({
+ processed: v.number(),
+ hasMore: v.boolean(),
+ }),
+ handler: async (ctx, args) => {
+ const result = await ctx.db
+ .query('users')
+ .paginate({ numItems: BATCH_SIZE, cursor: args.cursor ?? null });
+
+ let processed = 0;
+ for (const user of result.page) {
+ // Only update if field is missing
+ if (user.avatarUrl === undefined) {
+ await ctx.db.patch(user._id, {
+ avatarUrl: generateDefaultAvatar(user.name),
+ });
+ processed++;
+ }
+ }
+
+ // Schedule next batch if needed
+ if (!result.isDone) {
+ await ctx.scheduler.runAfter(0, internal.migrations.backfillAvatarUrl, {
+ cursor: result.continueCursor,
+ });
+ }
+
+ return {
+ processed,
+ hasMore: !result.isDone,
+ };
+ },
+});
+
+function generateDefaultAvatar(name: string): string {
+ return `https://api.dicebear.com/7.x/initials/svg?seed=${encodeURIComponent(name)}`;
+}
+```
+
+```typescript
+// Step 4: After backfill completes, make field required
+// convex/schema.ts
+export default defineSchema({
+ users: defineTable({
+ name: v.string(),
+ email: v.string(),
+ avatarUrl: v.string(), // Now required
+ }),
+});
+```
+
+### Removing Fields
+
+Remove field usage before removing from schema:
+
+```typescript
+// Step 1: Stop using the field in queries and mutations
+// Mark as deprecated in code comments
+
+// Step 2: Remove field from schema (make optional first if needed)
+// convex/schema.ts
+export default defineSchema({
+ posts: defineTable({
+ title: v.string(),
+ content: v.string(),
+ authorId: v.id('users'),
+ // legacyField: v.optional(v.string()), // Remove this line
+ }),
+});
+
+// Step 3: Optionally clean up existing data
+// convex/migrations.ts
+export const removeDeprecatedField = internalMutation({
+ args: {
+ cursor: v.optional(v.string()),
+ },
+ returns: v.null(),
+ handler: async (ctx, args) => {
+ const result = await ctx.db
+ .query('posts')
+ .paginate({ numItems: 100, cursor: args.cursor ?? null });
+
+ for (const post of result.page) {
+ // Use replace to remove the field entirely
+ const { legacyField, ...rest } = post as typeof post & {
+ legacyField?: string;
+ };
+ if (legacyField !== undefined) {
+ await ctx.db.replace(post._id, rest);
+ }
+ }
+
+ if (!result.isDone) {
+ await ctx.scheduler.runAfter(
+ 0,
+ internal.migrations.removeDeprecatedField,
+ {
+ cursor: result.continueCursor,
+ },
+ );
+ }
+
+ return null;
+ },
+});
+```
+
+### Renaming Fields
+
+Renaming requires copying data to new field, then removing old:
+
+```typescript
+// Step 1: Add new field as optional
+// convex/schema.ts
+export default defineSchema({
+ users: defineTable({
+ userName: v.string(), // Old field
+ displayName: v.optional(v.string()), // New field
+ }),
+});
+
+// Step 2: Update code to read from new field with fallback
+export const getUser = query({
+ args: { userId: v.id('users') },
+ returns: v.object({
+ _id: v.id('users'),
+ displayName: v.string(),
+ }),
+ handler: async (ctx, args) => {
+ const user = await ctx.db.get(args.userId);
+ if (!user) throw new Error('User not found');
+
+ return {
+ _id: user._id,
+ // Read new field, fall back to old
+ displayName: user.displayName ?? user.userName,
+ };
+ },
+});
+
+// Step 3: Backfill to copy data
+export const backfillDisplayName = internalMutation({
+ args: { cursor: v.optional(v.string()) },
+ returns: v.null(),
+ handler: async (ctx, args) => {
+ const result = await ctx.db
+ .query('users')
+ .paginate({ numItems: 100, cursor: args.cursor ?? null });
+
+ for (const user of result.page) {
+ if (user.displayName === undefined) {
+ await ctx.db.patch(user._id, {
+ displayName: user.userName,
+ });
+ }
+ }
+
+ if (!result.isDone) {
+ await ctx.scheduler.runAfter(0, internal.migrations.backfillDisplayName, {
+ cursor: result.continueCursor,
+ });
+ }
+
+ return null;
+ },
+});
+
+// Step 4: After backfill, update schema to make new field required
+// and remove old field
+export default defineSchema({
+ users: defineTable({
+ // userName removed
+ displayName: v.string(),
+ }),
+});
+```
+
+### Adding Indexes
+
+Add indexes before using them in queries:
+
+```typescript
+// Step 1: Add index to schema
+// convex/schema.ts
+export default defineSchema({
+ posts: defineTable({
+ title: v.string(),
+ authorId: v.id('users'),
+ publishedAt: v.optional(v.number()),
+ status: v.string(),
+ })
+ .index('by_author', ['authorId'])
+ // New index
+ .index('by_status_and_published', ['status', 'publishedAt']),
+});
+
+// Step 2: Deploy schema change
+// Run: npx convex dev
+
+// Step 3: Now use the index in queries
+export const getPublishedPosts = query({
+ args: {},
+ returns: v.array(
+ v.object({
+ _id: v.id('posts'),
+ title: v.string(),
+ publishedAt: v.number(),
+ }),
+ ),
+ handler: async (ctx) => {
+ const posts = await ctx.db
+ .query('posts')
+ .withIndex('by_status_and_published', (q) => q.eq('status', 'published'))
+ .order('desc')
+ .take(10);
+
+ return posts
+ .filter((p) => p.publishedAt !== undefined)
+ .map((p) => ({
+ _id: p._id,
+ title: p.title,
+ publishedAt: p.publishedAt!,
+ }));
+ },
+});
+```
+
+### Changing Field Types
+
+Type changes require careful migration:
+
+```typescript
+// Example: Change from string to number for a "priority" field
+
+// Step 1: Add new field with new type
+// convex/schema.ts
+export default defineSchema({
+ tasks: defineTable({
+ title: v.string(),
+ priority: v.string(), // Old: "low", "medium", "high"
+ priorityLevel: v.optional(v.number()), // New: 1, 2, 3
+ }),
+});
+
+// Step 2: Backfill with type conversion
+export const migratePriorityToNumber = internalMutation({
+ args: { cursor: v.optional(v.string()) },
+ returns: v.null(),
+ handler: async (ctx, args) => {
+ const result = await ctx.db
+ .query('tasks')
+ .paginate({ numItems: 100, cursor: args.cursor ?? null });
+
+ const priorityMap: Record = {
+ low: 1,
+ medium: 2,
+ high: 3,
+ };
+
+ for (const task of result.page) {
+ if (task.priorityLevel === undefined) {
+ await ctx.db.patch(task._id, {
+ priorityLevel: priorityMap[task.priority] ?? 1,
+ });
+ }
+ }
+
+ if (!result.isDone) {
+ await ctx.scheduler.runAfter(
+ 0,
+ internal.migrations.migratePriorityToNumber,
+ {
+ cursor: result.continueCursor,
+ },
+ );
+ }
+
+ return null;
+ },
+});
+
+// Step 3: Update code to use new field
+export const getTask = query({
+ args: { taskId: v.id('tasks') },
+ returns: v.object({
+ _id: v.id('tasks'),
+ title: v.string(),
+ priorityLevel: v.number(),
+ }),
+ handler: async (ctx, args) => {
+ const task = await ctx.db.get(args.taskId);
+ if (!task) throw new Error('Task not found');
+
+ const priorityMap: Record = {
+ low: 1,
+ medium: 2,
+ high: 3,
+ };
+
+ return {
+ _id: task._id,
+ title: task.title,
+ priorityLevel: task.priorityLevel ?? priorityMap[task.priority] ?? 1,
+ };
+ },
+});
+
+// Step 4: After backfill, update schema
+export default defineSchema({
+ tasks: defineTable({
+ title: v.string(),
+ // priority field removed
+ priorityLevel: v.number(),
+ }),
+});
+```
+
+### Migration Runner Pattern
+
+Create a reusable migration system:
+
+```typescript
+// convex/schema.ts
+import { defineSchema, defineTable } from 'convex/server';
+import { v } from 'convex/values';
+
+export default defineSchema({
+ migrations: defineTable({
+ name: v.string(),
+ startedAt: v.number(),
+ completedAt: v.optional(v.number()),
+ status: v.union(
+ v.literal('running'),
+ v.literal('completed'),
+ v.literal('failed'),
+ ),
+ error: v.optional(v.string()),
+ processed: v.number(),
+ }).index('by_name', ['name']),
+
+ // Your other tables...
+});
+```
+
+```typescript
+// convex/migrations.ts
+import { v } from 'convex/values';
+
+import { internal } from './_generated/api';
+import { internalMutation, internalQuery } from './_generated/server';
+
+// Check if migration has run
+export const hasMigrationRun = internalQuery({
+ args: { name: v.string() },
+ returns: v.boolean(),
+ handler: async (ctx, args) => {
+ const migration = await ctx.db
+ .query('migrations')
+ .withIndex('by_name', (q) => q.eq('name', args.name))
+ .first();
+ return migration?.status === 'completed';
+ },
+});
+
+// Start a migration
+export const startMigration = internalMutation({
+ args: { name: v.string() },
+ returns: v.id('migrations'),
+ handler: async (ctx, args) => {
+ // Check if already exists
+ const existing = await ctx.db
+ .query('migrations')
+ .withIndex('by_name', (q) => q.eq('name', args.name))
+ .first();
+
+ if (existing) {
+ if (existing.status === 'completed') {
+ throw new Error(`Migration ${args.name} already completed`);
+ }
+ if (existing.status === 'running') {
+ throw new Error(`Migration ${args.name} already running`);
+ }
+ // Reset failed migration
+ await ctx.db.patch(existing._id, {
+ status: 'running',
+ startedAt: Date.now(),
+ error: undefined,
+ processed: 0,
+ });
+ return existing._id;
+ }
+
+ return await ctx.db.insert('migrations', {
+ name: args.name,
+ startedAt: Date.now(),
+ status: 'running',
+ processed: 0,
+ });
+ },
+});
+
+// Update migration progress
+export const updateMigrationProgress = internalMutation({
+ args: {
+ migrationId: v.id('migrations'),
+ processed: v.number(),
+ },
+ returns: v.null(),
+ handler: async (ctx, args) => {
+ const migration = await ctx.db.get(args.migrationId);
+ if (!migration) return null;
+
+ await ctx.db.patch(args.migrationId, {
+ processed: migration.processed + args.processed,
+ });
+
+ return null;
+ },
+});
+
+// Complete a migration
+export const completeMigration = internalMutation({
+ args: { migrationId: v.id('migrations') },
+ returns: v.null(),
+ handler: async (ctx, args) => {
+ await ctx.db.patch(args.migrationId, {
+ status: 'completed',
+ completedAt: Date.now(),
+ });
+ return null;
+ },
+});
+
+// Fail a migration
+export const failMigration = internalMutation({
+ args: {
+ migrationId: v.id('migrations'),
+ error: v.string(),
+ },
+ returns: v.null(),
+ handler: async (ctx, args) => {
+ await ctx.db.patch(args.migrationId, {
+ status: 'failed',
+ error: args.error,
+ });
+ return null;
+ },
+});
+```
+
+```typescript
+// convex/migrations/addUserTimestamps.ts
+import { v } from 'convex/values';
+
+import { internal } from '../_generated/api';
+import { internalMutation } from '../_generated/server';
+
+const MIGRATION_NAME = 'add_user_timestamps_v1';
+const BATCH_SIZE = 100;
+
+export const run = internalMutation({
+ args: {
+ migrationId: v.optional(v.id('migrations')),
+ cursor: v.optional(v.string()),
+ },
+ returns: v.null(),
+ handler: async (ctx, args) => {
+ // Initialize migration on first run
+ let migrationId = args.migrationId;
+ if (!migrationId) {
+ const hasRun = await ctx.runQuery(internal.migrations.hasMigrationRun, {
+ name: MIGRATION_NAME,
+ });
+ if (hasRun) {
+ console.log(`Migration ${MIGRATION_NAME} already completed`);
+ return null;
+ }
+ migrationId = await ctx.runMutation(internal.migrations.startMigration, {
+ name: MIGRATION_NAME,
+ });
+ }
+
+ try {
+ const result = await ctx.db
+ .query('users')
+ .paginate({ numItems: BATCH_SIZE, cursor: args.cursor ?? null });
+
+ let processed = 0;
+ for (const user of result.page) {
+ if (user.createdAt === undefined) {
+ await ctx.db.patch(user._id, {
+ createdAt: user._creationTime,
+ updatedAt: user._creationTime,
+ });
+ processed++;
+ }
+ }
+
+ // Update progress
+ await ctx.runMutation(internal.migrations.updateMigrationProgress, {
+ migrationId,
+ processed,
+ });
+
+ // Continue or complete
+ if (!result.isDone) {
+ await ctx.scheduler.runAfter(
+ 0,
+ internal.migrations.addUserTimestamps.run,
+ {
+ migrationId,
+ cursor: result.continueCursor,
+ },
+ );
+ } else {
+ await ctx.runMutation(internal.migrations.completeMigration, {
+ migrationId,
+ });
+ console.log(`Migration ${MIGRATION_NAME} completed`);
+ }
+ } catch (error) {
+ await ctx.runMutation(internal.migrations.failMigration, {
+ migrationId,
+ error: String(error),
+ });
+ throw error;
+ }
+
+ return null;
+ },
+});
+```
+
+## Examples
+
+### Schema with Migration Support
+
+```typescript
+// convex/schema.ts
+import { defineSchema, defineTable } from 'convex/server';
+import { v } from 'convex/values';
+
+export default defineSchema({
+ // Migration tracking
+ migrations: defineTable({
+ name: v.string(),
+ startedAt: v.number(),
+ completedAt: v.optional(v.number()),
+ status: v.union(
+ v.literal('running'),
+ v.literal('completed'),
+ v.literal('failed'),
+ ),
+ error: v.optional(v.string()),
+ processed: v.number(),
+ }).index('by_name', ['name']),
+
+ // Users table with evolved schema
+ users: defineTable({
+ // Original fields
+ name: v.string(),
+ email: v.string(),
+
+ // Added in migration v1
+ createdAt: v.optional(v.number()),
+ updatedAt: v.optional(v.number()),
+
+ // Added in migration v2
+ avatarUrl: v.optional(v.string()),
+
+ // Added in migration v3
+ settings: v.optional(
+ v.object({
+ theme: v.string(),
+ notifications: v.boolean(),
+ }),
+ ),
+ })
+ .index('by_email', ['email'])
+ .index('by_createdAt', ['createdAt']),
+
+ // Posts table with indexes for common queries
+ posts: defineTable({
+ title: v.string(),
+ content: v.string(),
+ authorId: v.id('users'),
+ status: v.union(
+ v.literal('draft'),
+ v.literal('published'),
+ v.literal('archived'),
+ ),
+ publishedAt: v.optional(v.number()),
+ createdAt: v.number(),
+ updatedAt: v.number(),
+ })
+ .index('by_author', ['authorId'])
+ .index('by_status', ['status'])
+ .index('by_author_and_status', ['authorId', 'status'])
+ .index('by_publishedAt', ['publishedAt']),
+});
+```
+
+## Best Practices
+
+- Never run `npx convex deploy` unless explicitly instructed
+- Never run any git commands unless explicitly instructed
+- Always start with optional fields when adding new data
+- Backfill data in batches to avoid timeouts
+- Test migrations on development before production
+- Keep track of completed migrations to avoid re-running
+- Update code to handle both old and new data during transition
+- Remove deprecated fields only after all code stops using them
+- Use pagination for large datasets
+- Add appropriate indexes before running queries on new fields
+
+## Common Pitfalls
+
+1. **Making new fields required immediately** - Breaks existing documents
+2. **Not handling undefined values** - Causes runtime errors
+3. **Large batch sizes** - Causes function timeouts
+4. **Forgetting to update indexes** - Queries fail or perform poorly
+5. **Running migrations without tracking** - May run multiple times
+6. **Removing fields before code update** - Breaks existing functionality
+7. **Not testing on development** - Production data issues
+
+## References
+
+- Convex Documentation: https://docs.convex.dev/
+- Convex LLMs.txt: https://docs.convex.dev/llms.txt
+- Schemas: https://docs.convex.dev/database/schemas
+- Database Overview: https://docs.convex.dev/database
+- Migration Patterns: https://stack.convex.dev/migrate-data-postgres-to-convex
diff --git a/.claude/skills/convex-realtime/SKILL.md b/.claude/skills/convex-realtime/SKILL.md
new file mode 100644
index 0000000..d651c84
--- /dev/null
+++ b/.claude/skills/convex-realtime/SKILL.md
@@ -0,0 +1,448 @@
+---
+name: convex-realtime
+displayName: Convex Realtime
+description: Patterns for building reactive apps including subscription management, optimistic updates, cache behavior, and paginated queries with cursor-based loading
+version: 1.0.0
+author: Convex
+tags: [convex, realtime, subscriptions, optimistic-updates, pagination]
+---
+
+# Convex Realtime
+
+Build reactive applications with Convex's real-time subscriptions, optimistic updates, intelligent caching, and cursor-based pagination.
+
+## Documentation Sources
+
+Before implementing, do not assume; fetch the latest documentation:
+
+- Primary: https://docs.convex.dev/client/react
+- Optimistic Updates: https://docs.convex.dev/client/react/optimistic-updates
+- Pagination: https://docs.convex.dev/database/pagination
+- For broader context: https://docs.convex.dev/llms.txt
+
+## Instructions
+
+### How Convex Realtime Works
+
+1. **Automatic Subscriptions** - useQuery creates a subscription that updates automatically
+2. **Smart Caching** - Query results are cached and shared across components
+3. **Consistency** - All subscriptions see a consistent view of the database
+4. **Efficient Updates** - Only re-renders when relevant data changes
+
+### Basic Subscriptions
+
+```typescript
+// React component with real-time data
+import { useQuery } from "convex/react";
+import { api } from "../convex/_generated/api";
+
+function TaskList({ userId }: { userId: Id<"users"> }) {
+ // Automatically subscribes and updates in real-time
+ const tasks = useQuery(api.tasks.list, { userId });
+
+ if (tasks === undefined) {
+ return Loading...
;
+ }
+
+ return (
+
+ {tasks.map((task) => (
+ {task.title}
+ ))}
+
+ );
+}
+```
+
+### Conditional Queries
+
+```typescript
+import { useQuery } from "convex/react";
+import { api } from "../convex/_generated/api";
+
+function UserProfile({ userId }: { userId: Id<"users"> | null }) {
+ // Skip query when userId is null
+ const user = useQuery(
+ api.users.get,
+ userId ? { userId } : "skip"
+ );
+
+ if (userId === null) {
+ return Select a user
;
+ }
+
+ if (user === undefined) {
+ return Loading...
;
+ }
+
+ return {user.name}
;
+}
+```
+
+### Mutations with Real-time Updates
+
+```typescript
+import { useMutation, useQuery } from "convex/react";
+import { api } from "../convex/_generated/api";
+
+function TaskManager({ userId }: { userId: Id<"users"> }) {
+ const tasks = useQuery(api.tasks.list, { userId });
+ const createTask = useMutation(api.tasks.create);
+ const toggleTask = useMutation(api.tasks.toggle);
+
+ const handleCreate = async (title: string) => {
+ // Mutation triggers automatic re-render when data changes
+ await createTask({ title, userId });
+ };
+
+ const handleToggle = async (taskId: Id<"tasks">) => {
+ await toggleTask({ taskId });
+ };
+
+ return (
+
+
handleCreate("New Task")}>Add Task
+
+ {tasks?.map((task) => (
+ handleToggle(task._id)}>
+ {task.completed ? "✓" : "○"} {task.title}
+
+ ))}
+
+
+ );
+}
+```
+
+### Optimistic Updates
+
+Show changes immediately before server confirmation:
+
+```typescript
+import { useMutation, useQuery } from "convex/react";
+import { api } from "../convex/_generated/api";
+import { Id } from "../convex/_generated/dataModel";
+
+function TaskItem({ task }: { task: Task }) {
+ const toggleTask = useMutation(api.tasks.toggle).withOptimisticUpdate(
+ (localStore, args) => {
+ const { taskId } = args;
+ const currentValue = localStore.getQuery(api.tasks.get, { taskId });
+
+ if (currentValue !== undefined) {
+ localStore.setQuery(api.tasks.get, { taskId }, {
+ ...currentValue,
+ completed: !currentValue.completed,
+ });
+ }
+ }
+ );
+
+ return (
+ toggleTask({ taskId: task._id })}>
+ {task.completed ? "✓" : "○"} {task.title}
+
+ );
+}
+```
+
+### Optimistic Updates for Lists
+
+```typescript
+import { useMutation } from 'convex/react';
+
+import { api } from '../convex/_generated/api';
+
+function useCreateTask(userId: Id<'users'>) {
+ return useMutation(api.tasks.create).withOptimisticUpdate(
+ (localStore, args) => {
+ const { title, userId } = args;
+ const currentTasks = localStore.getQuery(api.tasks.list, { userId });
+
+ if (currentTasks !== undefined) {
+ // Add optimistic task to the list
+ const optimisticTask = {
+ _id: crypto.randomUUID() as Id<'tasks'>,
+ _creationTime: Date.now(),
+ title,
+ userId,
+ completed: false,
+ };
+
+ localStore.setQuery(api.tasks.list, { userId }, [
+ optimisticTask,
+ ...currentTasks,
+ ]);
+ }
+ },
+ );
+}
+```
+
+### Cursor-Based Pagination
+
+```typescript
+// convex/messages.ts
+import { paginationOptsValidator } from 'convex/server';
+import { v } from 'convex/values';
+
+import { query } from './_generated/server';
+
+export const listPaginated = query({
+ args: {
+ channelId: v.id('channels'),
+ paginationOpts: paginationOptsValidator,
+ },
+ handler: async (ctx, args) => {
+ return await ctx.db
+ .query('messages')
+ .withIndex('by_channel', (q) => q.eq('channelId', args.channelId))
+ .order('desc')
+ .paginate(args.paginationOpts);
+ },
+});
+```
+
+```typescript
+// React component with pagination
+import { usePaginatedQuery } from "convex/react";
+import { api } from "../convex/_generated/api";
+
+function MessageList({ channelId }: { channelId: Id<"channels"> }) {
+ const { results, status, loadMore } = usePaginatedQuery(
+ api.messages.listPaginated,
+ { channelId },
+ { initialNumItems: 20 }
+ );
+
+ return (
+
+ {results.map((message) => (
+
{message.content}
+ ))}
+
+ {status === "CanLoadMore" && (
+
loadMore(20)}>Load More
+ )}
+
+ {status === "LoadingMore" &&
Loading...
}
+
+ {status === "Exhausted" &&
No more messages
}
+
+ );
+}
+```
+
+### Infinite Scroll Pattern
+
+```typescript
+import { usePaginatedQuery } from "convex/react";
+import { useEffect, useRef } from "react";
+import { api } from "../convex/_generated/api";
+
+function InfiniteMessageList({ channelId }: { channelId: Id<"channels"> }) {
+ const { results, status, loadMore } = usePaginatedQuery(
+ api.messages.listPaginated,
+ { channelId },
+ { initialNumItems: 20 }
+ );
+
+ const observerRef = useRef();
+ const loadMoreRef = useRef(null);
+
+ useEffect(() => {
+ if (observerRef.current) {
+ observerRef.current.disconnect();
+ }
+
+ observerRef.current = new IntersectionObserver((entries) => {
+ if (entries[0].isIntersecting && status === "CanLoadMore") {
+ loadMore(20);
+ }
+ });
+
+ if (loadMoreRef.current) {
+ observerRef.current.observe(loadMoreRef.current);
+ }
+
+ return () => observerRef.current?.disconnect();
+ }, [status, loadMore]);
+
+ return (
+
+ {results.map((message) => (
+
{message.content}
+ ))}
+
+ {status === "LoadingMore" &&
Loading...
}
+
+ );
+}
+```
+
+### Multiple Subscriptions
+
+```typescript
+import { useQuery } from "convex/react";
+import { api } from "../convex/_generated/api";
+
+function Dashboard({ userId }: { userId: Id<"users"> }) {
+ // Multiple subscriptions update independently
+ const user = useQuery(api.users.get, { userId });
+ const tasks = useQuery(api.tasks.list, { userId });
+ const notifications = useQuery(api.notifications.unread, { userId });
+
+ const isLoading = user === undefined ||
+ tasks === undefined ||
+ notifications === undefined;
+
+ if (isLoading) {
+ return Loading...
;
+ }
+
+ return (
+
+
Welcome, {user.name}
+
You have {tasks.length} tasks
+
{notifications.length} unread notifications
+
+ );
+}
+```
+
+## Examples
+
+### Real-time Chat Application
+
+```typescript
+// convex/messages.ts
+import { v } from 'convex/values';
+
+import { mutation, query } from './_generated/server';
+
+export const list = query({
+ args: { channelId: v.id('channels') },
+ returns: v.array(
+ v.object({
+ _id: v.id('messages'),
+ _creationTime: v.number(),
+ content: v.string(),
+ authorId: v.id('users'),
+ authorName: v.string(),
+ }),
+ ),
+ handler: async (ctx, args) => {
+ const messages = await ctx.db
+ .query('messages')
+ .withIndex('by_channel', (q) => q.eq('channelId', args.channelId))
+ .order('desc')
+ .take(100);
+
+ // Enrich with author names
+ return Promise.all(
+ messages.map(async (msg) => {
+ const author = await ctx.db.get(msg.authorId);
+ return {
+ ...msg,
+ authorName: author?.name ?? 'Unknown',
+ };
+ }),
+ );
+ },
+});
+
+export const send = mutation({
+ args: {
+ channelId: v.id('channels'),
+ authorId: v.id('users'),
+ content: v.string(),
+ },
+ returns: v.id('messages'),
+ handler: async (ctx, args) => {
+ return await ctx.db.insert('messages', {
+ channelId: args.channelId,
+ authorId: args.authorId,
+ content: args.content,
+ });
+ },
+});
+```
+
+```typescript
+// ChatRoom.tsx
+import { useQuery, useMutation } from "convex/react";
+import { api } from "../convex/_generated/api";
+import { useState, useRef, useEffect } from "react";
+
+function ChatRoom({ channelId, userId }: Props) {
+ const messages = useQuery(api.messages.list, { channelId });
+ const sendMessage = useMutation(api.messages.send);
+ const [input, setInput] = useState("");
+ const messagesEndRef = useRef(null);
+
+ // Auto-scroll to bottom on new messages
+ useEffect(() => {
+ messagesEndRef.current?.scrollIntoView({ behavior: "smooth" });
+ }, [messages]);
+
+ const handleSend = async (e: React.FormEvent) => {
+ e.preventDefault();
+ if (!input.trim()) return;
+
+ await sendMessage({
+ channelId,
+ authorId: userId,
+ content: input.trim(),
+ });
+ setInput("");
+ };
+
+ return (
+
+
+ {messages?.map((msg) => (
+
+ {msg.authorName}: {msg.content}
+
+ ))}
+
+
+
+
+
+ );
+}
+```
+
+## Best Practices
+
+- Never run `npx convex deploy` unless explicitly instructed
+- Never run any git commands unless explicitly instructed
+- Use "skip" for conditional queries instead of conditionally calling hooks
+- Implement optimistic updates for better perceived performance
+- Use usePaginatedQuery for large datasets
+- Handle undefined state (loading) explicitly
+- Avoid unnecessary re-renders by memoizing derived data
+
+## Common Pitfalls
+
+1. **Conditional hook calls** - Use "skip" instead of if statements
+2. **Not handling loading state** - Always check for undefined
+3. **Missing optimistic update rollback** - Optimistic updates auto-rollback on error
+4. **Over-fetching with pagination** - Use appropriate page sizes
+5. **Ignoring subscription cleanup** - React handles this automatically
+
+## References
+
+- Convex Documentation: https://docs.convex.dev/
+- Convex LLMs.txt: https://docs.convex.dev/llms.txt
+- React Client: https://docs.convex.dev/client/react
+- Optimistic Updates: https://docs.convex.dev/client/react/optimistic-updates
+- Pagination: https://docs.convex.dev/database/pagination
diff --git a/.claude/skills/convex-schema-validator/SKILL.md b/.claude/skills/convex-schema-validator/SKILL.md
new file mode 100644
index 0000000..9bba549
--- /dev/null
+++ b/.claude/skills/convex-schema-validator/SKILL.md
@@ -0,0 +1,401 @@
+---
+name: convex-schema-validator
+displayName: Convex Schema Validator
+description: Defining and validating database schemas with proper typing, index configuration, optional fields, unions, and migration strategies for schema changes
+version: 1.0.0
+author: Convex
+tags: [convex, schema, validation, typescript, indexes, migrations]
+---
+
+# Convex Schema Validator
+
+Define and validate database schemas in Convex with proper typing, index configuration, optional fields, unions, and strategies for schema migrations.
+
+## Documentation Sources
+
+Before implementing, do not assume; fetch the latest documentation:
+
+- Primary: https://docs.convex.dev/database/schemas
+- Indexes: https://docs.convex.dev/database/indexes
+- Data Types: https://docs.convex.dev/database/types
+- For broader context: https://docs.convex.dev/llms.txt
+
+## Instructions
+
+### Basic Schema Definition
+
+```typescript
+// convex/schema.ts
+import { defineSchema, defineTable } from 'convex/server';
+import { v } from 'convex/values';
+
+export default defineSchema({
+ users: defineTable({
+ name: v.string(),
+ email: v.string(),
+ avatarUrl: v.optional(v.string()),
+ createdAt: v.number(),
+ }),
+
+ tasks: defineTable({
+ title: v.string(),
+ description: v.optional(v.string()),
+ completed: v.boolean(),
+ userId: v.id('users'),
+ priority: v.union(v.literal('low'), v.literal('medium'), v.literal('high')),
+ }),
+});
+```
+
+### Validator Types
+
+| Validator | TypeScript Type | Example |
+| ---------------- | ---------------- | ------------------- |
+| `v.string()` | `string` | `"hello"` |
+| `v.number()` | `number` | `42`, `3.14` |
+| `v.boolean()` | `boolean` | `true`, `false` |
+| `v.null()` | `null` | `null` |
+| `v.int64()` | `bigint` | `9007199254740993n` |
+| `v.bytes()` | `ArrayBuffer` | Binary data |
+| `v.id("table")` | `Id<"table">` | Document reference |
+| `v.array(v)` | `T[]` | `[1, 2, 3]` |
+| `v.object({})` | `{ ... }` | `{ name: "..." }` |
+| `v.optional(v)` | `T \| undefined` | Optional field |
+| `v.union(...)` | `T1 \| T2` | Multiple types |
+| `v.literal(x)` | `"x"` | Exact value |
+| `v.any()` | `any` | Any value |
+| `v.record(k, v)` | `Record` | Dynamic keys |
+
+### Index Configuration
+
+```typescript
+export default defineSchema({
+ messages: defineTable({
+ channelId: v.id('channels'),
+ authorId: v.id('users'),
+ content: v.string(),
+ sentAt: v.number(),
+ })
+ // Single field index
+ .index('by_channel', ['channelId'])
+ // Compound index
+ .index('by_channel_and_author', ['channelId', 'authorId'])
+ // Index for sorting
+ .index('by_channel_and_time', ['channelId', 'sentAt']),
+
+ // Full-text search index
+ articles: defineTable({
+ title: v.string(),
+ body: v.string(),
+ category: v.string(),
+ }).searchIndex('search_content', {
+ searchField: 'body',
+ filterFields: ['category'],
+ }),
+});
+```
+
+### Complex Types
+
+```typescript
+export default defineSchema({
+ // Nested objects
+ profiles: defineTable({
+ userId: v.id('users'),
+ settings: v.object({
+ theme: v.union(v.literal('light'), v.literal('dark')),
+ notifications: v.object({
+ email: v.boolean(),
+ push: v.boolean(),
+ }),
+ }),
+ }),
+
+ // Arrays of objects
+ orders: defineTable({
+ customerId: v.id('users'),
+ items: v.array(
+ v.object({
+ productId: v.id('products'),
+ quantity: v.number(),
+ price: v.number(),
+ }),
+ ),
+ status: v.union(
+ v.literal('pending'),
+ v.literal('processing'),
+ v.literal('shipped'),
+ v.literal('delivered'),
+ ),
+ }),
+
+ // Record type for dynamic keys
+ analytics: defineTable({
+ date: v.string(),
+ metrics: v.record(v.string(), v.number()),
+ }),
+});
+```
+
+### Discriminated Unions
+
+```typescript
+export default defineSchema({
+ events: defineTable(
+ v.union(
+ v.object({
+ type: v.literal('user_signup'),
+ userId: v.id('users'),
+ email: v.string(),
+ }),
+ v.object({
+ type: v.literal('purchase'),
+ userId: v.id('users'),
+ orderId: v.id('orders'),
+ amount: v.number(),
+ }),
+ v.object({
+ type: v.literal('page_view'),
+ sessionId: v.string(),
+ path: v.string(),
+ }),
+ ),
+ ).index('by_type', ['type']),
+});
+```
+
+### Optional vs Nullable Fields
+
+```typescript
+export default defineSchema({
+ items: defineTable({
+ // Optional: field may not exist
+ description: v.optional(v.string()),
+
+ // Nullable: field exists but can be null
+ deletedAt: v.union(v.number(), v.null()),
+
+ // Optional and nullable
+ notes: v.optional(v.union(v.string(), v.null())),
+ }),
+});
+```
+
+### Index Naming Convention
+
+Always include all indexed fields in the index name:
+
+```typescript
+export default defineSchema({
+ posts: defineTable({
+ authorId: v.id('users'),
+ categoryId: v.id('categories'),
+ publishedAt: v.number(),
+ status: v.string(),
+ })
+ // Good: descriptive names
+ .index('by_author', ['authorId'])
+ .index('by_author_and_category', ['authorId', 'categoryId'])
+ .index('by_category_and_status', ['categoryId', 'status'])
+ .index('by_status_and_published', ['status', 'publishedAt']),
+});
+```
+
+### Schema Migration Strategies
+
+#### Adding New Fields
+
+```typescript
+// Before
+users: defineTable({
+ name: v.string(),
+ email: v.string(),
+});
+
+// After - add as optional first
+users: defineTable({
+ name: v.string(),
+ email: v.string(),
+ avatarUrl: v.optional(v.string()), // New optional field
+});
+```
+
+#### Backfilling Data
+
+```typescript
+// convex/migrations.ts
+import { v } from 'convex/values';
+
+import { internalMutation } from './_generated/server';
+
+export const backfillAvatars = internalMutation({
+ args: {},
+ returns: v.number(),
+ handler: async (ctx) => {
+ const users = await ctx.db
+ .query('users')
+ .filter((q) => q.eq(q.field('avatarUrl'), undefined))
+ .take(100);
+
+ for (const user of users) {
+ await ctx.db.patch(user._id, {
+ avatarUrl: `https://api.dicebear.com/7.x/initials/svg?seed=${user.name}`,
+ });
+ }
+
+ return users.length;
+ },
+});
+```
+
+#### Making Optional Fields Required
+
+```typescript
+// Step 1: Backfill all null values
+// Step 2: Update schema to required
+users: defineTable({
+ name: v.string(),
+ email: v.string(),
+ avatarUrl: v.string(), // Now required after backfill
+});
+```
+
+## Examples
+
+### Complete E-commerce Schema
+
+```typescript
+// convex/schema.ts
+import { defineSchema, defineTable } from 'convex/server';
+import { v } from 'convex/values';
+
+export default defineSchema({
+ users: defineTable({
+ email: v.string(),
+ name: v.string(),
+ role: v.union(v.literal('customer'), v.literal('admin')),
+ createdAt: v.number(),
+ })
+ .index('by_email', ['email'])
+ .index('by_role', ['role']),
+
+ products: defineTable({
+ name: v.string(),
+ description: v.string(),
+ price: v.number(),
+ category: v.string(),
+ inventory: v.number(),
+ isActive: v.boolean(),
+ })
+ .index('by_category', ['category'])
+ .index('by_active_and_category', ['isActive', 'category'])
+ .searchIndex('search_products', {
+ searchField: 'name',
+ filterFields: ['category', 'isActive'],
+ }),
+
+ orders: defineTable({
+ userId: v.id('users'),
+ items: v.array(
+ v.object({
+ productId: v.id('products'),
+ quantity: v.number(),
+ priceAtPurchase: v.number(),
+ }),
+ ),
+ total: v.number(),
+ status: v.union(
+ v.literal('pending'),
+ v.literal('paid'),
+ v.literal('shipped'),
+ v.literal('delivered'),
+ v.literal('cancelled'),
+ ),
+ shippingAddress: v.object({
+ street: v.string(),
+ city: v.string(),
+ state: v.string(),
+ zip: v.string(),
+ country: v.string(),
+ }),
+ createdAt: v.number(),
+ updatedAt: v.number(),
+ })
+ .index('by_user', ['userId'])
+ .index('by_user_and_status', ['userId', 'status'])
+ .index('by_status', ['status']),
+
+ reviews: defineTable({
+ productId: v.id('products'),
+ userId: v.id('users'),
+ rating: v.number(),
+ comment: v.optional(v.string()),
+ createdAt: v.number(),
+ })
+ .index('by_product', ['productId'])
+ .index('by_user', ['userId']),
+});
+```
+
+### Using Schema Types in Functions
+
+```typescript
+// convex/products.ts
+import { v } from 'convex/values';
+
+import { Doc, Id } from './_generated/dataModel';
+import { mutation, query } from './_generated/server';
+
+// Use Doc type for full documents
+type Product = Doc<'products'>;
+
+// Use Id type for references
+type ProductId = Id<'products'>;
+
+export const get = query({
+ args: { productId: v.id('products') },
+ returns: v.union(
+ v.object({
+ _id: v.id('products'),
+ _creationTime: v.number(),
+ name: v.string(),
+ description: v.string(),
+ price: v.number(),
+ category: v.string(),
+ inventory: v.number(),
+ isActive: v.boolean(),
+ }),
+ v.null(),
+ ),
+ handler: async (ctx, args): Promise => {
+ return await ctx.db.get(args.productId);
+ },
+});
+```
+
+## Best Practices
+
+- Never run `npx convex deploy` unless explicitly instructed
+- Never run any git commands unless explicitly instructed
+- Always define explicit schemas rather than relying on inference
+- Use descriptive index names that include all indexed fields
+- Start with optional fields when adding new columns
+- Use discriminated unions for polymorphic data
+- Validate data at the schema level, not just in functions
+- Plan index strategy based on query patterns
+
+## Common Pitfalls
+
+1. **Missing indexes for queries** - Every withIndex needs a corresponding schema index
+2. **Wrong index field order** - Fields must be queried in order defined
+3. **Using v.any() excessively** - Lose type safety benefits
+4. **Not making new fields optional** - Breaks existing data
+5. **Forgetting system fields** - \_id and \_creationTime are automatic
+
+## References
+
+- Convex Documentation: https://docs.convex.dev/
+- Convex LLMs.txt: https://docs.convex.dev/llms.txt
+- Schemas: https://docs.convex.dev/database/schemas
+- Indexes: https://docs.convex.dev/database/indexes
+- Data Types: https://docs.convex.dev/database/types
diff --git a/.claude/skills/convex-security-audit/SKILL.md b/.claude/skills/convex-security-audit/SKILL.md
new file mode 100644
index 0000000..cd390c3
--- /dev/null
+++ b/.claude/skills/convex-security-audit/SKILL.md
@@ -0,0 +1,567 @@
+---
+name: convex-security-audit
+displayName: Convex Security Audit
+description: Deep security review patterns for authorization logic, data access boundaries, action isolation, rate limiting, and protecting sensitive operations
+version: 1.0.0
+author: Convex
+tags: [convex, security, audit, authorization, rate-limiting, protection]
+---
+
+# Convex Security Audit
+
+Comprehensive security review patterns for Convex applications including authorization logic, data access boundaries, action isolation, rate limiting, and protecting sensitive operations.
+
+## Documentation Sources
+
+Before implementing, do not assume; fetch the latest documentation:
+
+- Primary: https://docs.convex.dev/auth/functions-auth
+- Production Security: https://docs.convex.dev/production
+- For broader context: https://docs.convex.dev/llms.txt
+
+## Instructions
+
+### Security Audit Areas
+
+1. **Authorization Logic** - Who can do what
+2. **Data Access Boundaries** - What data users can see
+3. **Action Isolation** - Protecting external API calls
+4. **Rate Limiting** - Preventing abuse
+5. **Sensitive Operations** - Protecting critical functions
+
+### Authorization Logic Audit
+
+#### Role-Based Access Control (RBAC)
+
+```typescript
+// convex/lib/auth.ts
+import { ConvexError } from 'convex/values';
+
+import { Doc } from './_generated/dataModel';
+import { MutationCtx, QueryCtx } from './_generated/server';
+
+type UserRole = 'user' | 'moderator' | 'admin' | 'superadmin';
+
+const roleHierarchy: Record = {
+ user: 0,
+ moderator: 1,
+ admin: 2,
+ superadmin: 3,
+};
+
+export async function getUser(
+ ctx: QueryCtx | MutationCtx,
+): Promise | null> {
+ const identity = await ctx.auth.getUserIdentity();
+ if (!identity) return null;
+
+ return await ctx.db
+ .query('users')
+ .withIndex('by_tokenIdentifier', (q) =>
+ q.eq('tokenIdentifier', identity.tokenIdentifier),
+ )
+ .unique();
+}
+
+export async function requireRole(
+ ctx: QueryCtx | MutationCtx,
+ minRole: UserRole,
+): Promise> {
+ const user = await getUser(ctx);
+
+ if (!user) {
+ throw new ConvexError({
+ code: 'UNAUTHENTICATED',
+ message: 'Authentication required',
+ });
+ }
+
+ const userRoleLevel = roleHierarchy[user.role as UserRole] ?? 0;
+ const requiredLevel = roleHierarchy[minRole];
+
+ if (userRoleLevel < requiredLevel) {
+ throw new ConvexError({
+ code: 'FORBIDDEN',
+ message: `Role '${minRole}' or higher required`,
+ });
+ }
+
+ return user;
+}
+
+// Permission-based check
+type Permission =
+ | 'read:users'
+ | 'write:users'
+ | 'delete:users'
+ | 'admin:system';
+
+const rolePermissions: Record = {
+ user: ['read:users'],
+ moderator: ['read:users', 'write:users'],
+ admin: ['read:users', 'write:users', 'delete:users'],
+ superadmin: ['read:users', 'write:users', 'delete:users', 'admin:system'],
+};
+
+export async function requirePermission(
+ ctx: QueryCtx | MutationCtx,
+ permission: Permission,
+): Promise> {
+ const user = await getUser(ctx);
+
+ if (!user) {
+ throw new ConvexError({
+ code: 'UNAUTHENTICATED',
+ message: 'Authentication required',
+ });
+ }
+
+ const userRole = user.role as UserRole;
+ const permissions = rolePermissions[userRole] ?? [];
+
+ if (!permissions.includes(permission)) {
+ throw new ConvexError({
+ code: 'FORBIDDEN',
+ message: `Permission '${permission}' required`,
+ });
+ }
+
+ return user;
+}
+```
+
+### Data Access Boundaries Audit
+
+```typescript
+// convex/data.ts
+import { ConvexError, v } from 'convex/values';
+
+import { mutation, query } from './_generated/server';
+import { getUser, requireRole } from './lib/auth';
+
+// Audit: Users can only see their own data
+export const getMyData = query({
+ args: {},
+ returns: v.array(
+ v.object({
+ _id: v.id('userData'),
+ content: v.string(),
+ }),
+ ),
+ handler: async (ctx) => {
+ const user = await getUser(ctx);
+ if (!user) return [];
+
+ // SECURITY: Filter by userId
+ return await ctx.db
+ .query('userData')
+ .withIndex('by_user', (q) => q.eq('userId', user._id))
+ .collect();
+ },
+});
+
+// Audit: Verify ownership before returning sensitive data
+export const getSensitiveItem = query({
+ args: { itemId: v.id('sensitiveItems') },
+ returns: v.union(
+ v.object({
+ _id: v.id('sensitiveItems'),
+ secret: v.string(),
+ }),
+ v.null(),
+ ),
+ handler: async (ctx, args) => {
+ const user = await getUser(ctx);
+ if (!user) return null;
+
+ const item = await ctx.db.get(args.itemId);
+
+ // SECURITY: Verify ownership
+ if (!item || item.ownerId !== user._id) {
+ return null; // Don't reveal if item exists
+ }
+
+ return item;
+ },
+});
+
+// Audit: Shared resources with access list
+export const getSharedDocument = query({
+ args: { docId: v.id('documents') },
+ returns: v.union(
+ v.object({
+ _id: v.id('documents'),
+ content: v.string(),
+ accessLevel: v.string(),
+ }),
+ v.null(),
+ ),
+ handler: async (ctx, args) => {
+ const user = await getUser(ctx);
+ const doc = await ctx.db.get(args.docId);
+
+ if (!doc) return null;
+
+ // Public documents
+ if (doc.visibility === 'public') {
+ return { ...doc, accessLevel: 'public' };
+ }
+
+ // Must be authenticated for non-public
+ if (!user) return null;
+
+ // Owner has full access
+ if (doc.ownerId === user._id) {
+ return { ...doc, accessLevel: 'owner' };
+ }
+
+ // Check shared access
+ const access = await ctx.db
+ .query('documentAccess')
+ .withIndex('by_doc_and_user', (q) =>
+ q.eq('documentId', args.docId).eq('userId', user._id),
+ )
+ .unique();
+
+ if (!access) return null;
+
+ return { ...doc, accessLevel: access.level };
+ },
+});
+```
+
+### Action Isolation Audit
+
+```typescript
+// convex/actions.ts
+'use node';
+
+import { ConvexError, v } from 'convex/values';
+
+import { api, internal } from './_generated/api';
+import { action, internalAction } from './_generated/server';
+
+// SECURITY: Never expose API keys in responses
+export const callExternalAPI = action({
+ args: { query: v.string() },
+ returns: v.object({ result: v.string() }),
+ handler: async (ctx, args) => {
+ // Verify user is authenticated
+ const identity = await ctx.auth.getUserIdentity();
+ if (!identity) {
+ throw new ConvexError('Authentication required');
+ }
+
+ // Get API key from environment (not hardcoded)
+ const apiKey = process.env.EXTERNAL_API_KEY;
+ if (!apiKey) {
+ throw new Error('API key not configured');
+ }
+
+ // Log usage for audit trail
+ await ctx.runMutation(internal.audit.logAPICall, {
+ userId: identity.tokenIdentifier,
+ endpoint: 'external-api',
+ timestamp: Date.now(),
+ });
+
+ const response = await fetch('https://api.example.com/query', {
+ method: 'POST',
+ headers: {
+ Authorization: `Bearer ${apiKey}`,
+ 'Content-Type': 'application/json',
+ },
+ body: JSON.stringify({ query: args.query }),
+ });
+
+ if (!response.ok) {
+ // Don't expose external API error details
+ throw new ConvexError('External service unavailable');
+ }
+
+ const data = await response.json();
+
+ // Sanitize response before returning
+ return { result: sanitizeResponse(data) };
+ },
+});
+
+// Internal action - not exposed to clients
+export const _processPayment = internalAction({
+ args: {
+ userId: v.id('users'),
+ amount: v.number(),
+ paymentMethodId: v.string(),
+ },
+ returns: v.object({
+ success: v.boolean(),
+ transactionId: v.optional(v.string()),
+ }),
+ handler: async (ctx, args) => {
+ const stripeKey = process.env.STRIPE_SECRET_KEY;
+
+ // Process payment with Stripe
+ // This should NEVER be exposed as a public action
+
+ return { success: true, transactionId: 'txn_xxx' };
+ },
+});
+```
+
+### Rate Limiting Audit
+
+```typescript
+// convex/rateLimit.ts
+import { ConvexError, v } from 'convex/values';
+
+import { mutation, query } from './_generated/server';
+
+const RATE_LIMITS = {
+ message: { requests: 10, windowMs: 60000 }, // 10 per minute
+ upload: { requests: 5, windowMs: 300000 }, // 5 per 5 minutes
+ api: { requests: 100, windowMs: 3600000 }, // 100 per hour
+};
+
+export const checkRateLimit = mutation({
+ args: {
+ userId: v.string(),
+ action: v.union(
+ v.literal('message'),
+ v.literal('upload'),
+ v.literal('api'),
+ ),
+ },
+ returns: v.object({
+ allowed: v.boolean(),
+ retryAfter: v.optional(v.number()),
+ }),
+ handler: async (ctx, args) => {
+ const limit = RATE_LIMITS[args.action];
+ const now = Date.now();
+ const windowStart = now - limit.windowMs;
+
+ // Count requests in window
+ const requests = await ctx.db
+ .query('rateLimits')
+ .withIndex('by_user_and_action', (q) =>
+ q.eq('userId', args.userId).eq('action', args.action),
+ )
+ .filter((q) => q.gt(q.field('timestamp'), windowStart))
+ .collect();
+
+ if (requests.length >= limit.requests) {
+ const oldestRequest = requests[0];
+ const retryAfter = oldestRequest.timestamp + limit.windowMs - now;
+
+ return { allowed: false, retryAfter };
+ }
+
+ // Record this request
+ await ctx.db.insert('rateLimits', {
+ userId: args.userId,
+ action: args.action,
+ timestamp: now,
+ });
+
+ return { allowed: true };
+ },
+});
+
+// Use in mutations
+export const sendMessage = mutation({
+ args: { content: v.string() },
+ returns: v.id('messages'),
+ handler: async (ctx, args) => {
+ const identity = await ctx.auth.getUserIdentity();
+ if (!identity) throw new ConvexError('Authentication required');
+
+ // Check rate limit
+ const rateCheck = await checkRateLimit(ctx, {
+ userId: identity.tokenIdentifier,
+ action: 'message',
+ });
+
+ if (!rateCheck.allowed) {
+ throw new ConvexError({
+ code: 'RATE_LIMITED',
+ message: `Too many requests. Try again in ${Math.ceil(rateCheck.retryAfter! / 1000)} seconds`,
+ });
+ }
+
+ return await ctx.db.insert('messages', {
+ content: args.content,
+ authorId: identity.tokenIdentifier,
+ createdAt: Date.now(),
+ });
+ },
+});
+```
+
+### Sensitive Operations Protection
+
+```typescript
+// convex/admin.ts
+import { v } from 'convex/values';
+
+import { internal } from './_generated/api';
+import { internalMutation, mutation } from './_generated/server';
+import { requirePermission, requireRole } from './lib/auth';
+
+// Two-factor confirmation for dangerous operations
+export const deleteAllUserData = mutation({
+ args: {
+ userId: v.id('users'),
+ confirmationCode: v.string(),
+ },
+ returns: v.null(),
+ handler: async (ctx, args) => {
+ // Require superadmin
+ const admin = await requireRole(ctx, 'superadmin');
+
+ // Verify confirmation code
+ const confirmation = await ctx.db
+ .query('confirmations')
+ .withIndex('by_admin_and_code', (q) =>
+ q.eq('adminId', admin._id).eq('code', args.confirmationCode),
+ )
+ .filter((q) => q.gt(q.field('expiresAt'), Date.now()))
+ .unique();
+
+ if (!confirmation || confirmation.action !== 'delete_user_data') {
+ throw new ConvexError('Invalid or expired confirmation code');
+ }
+
+ // Delete confirmation to prevent reuse
+ await ctx.db.delete(confirmation._id);
+
+ // Schedule deletion (don't do it inline)
+ await ctx.scheduler.runAfter(0, internal.admin._performDeletion, {
+ userId: args.userId,
+ requestedBy: admin._id,
+ });
+
+ // Audit log
+ await ctx.db.insert('auditLogs', {
+ action: 'delete_user_data',
+ targetUserId: args.userId,
+ performedBy: admin._id,
+ timestamp: Date.now(),
+ });
+
+ return null;
+ },
+});
+
+// Generate confirmation code for sensitive action
+export const requestDeletionConfirmation = mutation({
+ args: { userId: v.id('users') },
+ returns: v.string(),
+ handler: async (ctx, args) => {
+ const admin = await requireRole(ctx, 'superadmin');
+
+ const code = generateSecureCode();
+
+ await ctx.db.insert('confirmations', {
+ adminId: admin._id,
+ code,
+ action: 'delete_user_data',
+ targetUserId: args.userId,
+ expiresAt: Date.now() + 5 * 60 * 1000, // 5 minutes
+ });
+
+ // In production, send code via secure channel (email, SMS)
+ return code;
+ },
+});
+```
+
+## Examples
+
+### Complete Audit Trail System
+
+```typescript
+// convex/audit.ts
+import { v } from 'convex/values';
+
+import { internalMutation, mutation, query } from './_generated/server';
+import { getUser, requireRole } from './lib/auth';
+
+const auditEventValidator = v.object({
+ _id: v.id('auditLogs'),
+ _creationTime: v.number(),
+ action: v.string(),
+ userId: v.optional(v.string()),
+ resourceType: v.string(),
+ resourceId: v.string(),
+ details: v.optional(v.any()),
+ ipAddress: v.optional(v.string()),
+ timestamp: v.number(),
+});
+
+// Internal: Log audit event
+export const logEvent = internalMutation({
+ args: {
+ action: v.string(),
+ userId: v.optional(v.string()),
+ resourceType: v.string(),
+ resourceId: v.string(),
+ details: v.optional(v.any()),
+ },
+ returns: v.id('auditLogs'),
+ handler: async (ctx, args) => {
+ return await ctx.db.insert('auditLogs', {
+ ...args,
+ timestamp: Date.now(),
+ });
+ },
+});
+
+// Admin: View audit logs
+export const getAuditLogs = query({
+ args: {
+ resourceType: v.optional(v.string()),
+ userId: v.optional(v.string()),
+ limit: v.optional(v.number()),
+ },
+ returns: v.array(auditEventValidator),
+ handler: async (ctx, args) => {
+ await requireRole(ctx, 'admin');
+
+ let query = ctx.db.query('auditLogs');
+
+ if (args.resourceType) {
+ query = query.withIndex('by_resource_type', (q) =>
+ q.eq('resourceType', args.resourceType),
+ );
+ }
+
+ return await query.order('desc').take(args.limit ?? 100);
+ },
+});
+```
+
+## Best Practices
+
+- Never run `npx convex deploy` unless explicitly instructed
+- Never run any git commands unless explicitly instructed
+- Implement defense in depth (multiple security layers)
+- Log all sensitive operations for audit trails
+- Use confirmation codes for destructive actions
+- Rate limit all user-facing endpoints
+- Never expose internal API keys or errors
+- Review access patterns regularly
+
+## Common Pitfalls
+
+1. **Single point of failure** - Implement multiple auth checks
+2. **Missing audit logs** - Log all sensitive operations
+3. **Trusting client data** - Always validate server-side
+4. **Exposing error details** - Sanitize error messages
+5. **No rate limiting** - Always implement rate limits
+
+## References
+
+- Convex Documentation: https://docs.convex.dev/
+- Convex LLMs.txt: https://docs.convex.dev/llms.txt
+- Functions Auth: https://docs.convex.dev/auth/functions-auth
+- Production Security: https://docs.convex.dev/production
diff --git a/.claude/skills/convex-security-check/SKILL.md b/.claude/skills/convex-security-check/SKILL.md
new file mode 100644
index 0000000..d2714c3
--- /dev/null
+++ b/.claude/skills/convex-security-check/SKILL.md
@@ -0,0 +1,386 @@
+---
+name: convex-security-check
+displayName: Convex Security Check
+description: Quick security audit checklist covering authentication, function exposure, argument validation, row-level access control, and environment variable handling
+version: 1.0.0
+author: Convex
+tags: [convex, security, authentication, authorization, checklist]
+---
+
+# Convex Security Check
+
+A quick security audit checklist for Convex applications covering authentication, function exposure, argument validation, row-level access control, and environment variable handling.
+
+## Documentation Sources
+
+Before implementing, do not assume; fetch the latest documentation:
+
+- Primary: https://docs.convex.dev/auth
+- Production Security: https://docs.convex.dev/production
+- Functions Auth: https://docs.convex.dev/auth/functions-auth
+- For broader context: https://docs.convex.dev/llms.txt
+
+## Instructions
+
+### Security Checklist
+
+Use this checklist to quickly audit your Convex application's security:
+
+#### 1. Authentication
+
+- [ ] Authentication provider configured (Clerk, Auth0, etc.)
+- [ ] All sensitive queries check `ctx.auth.getUserIdentity()`
+- [ ] Unauthenticated access explicitly allowed where intended
+- [ ] Session tokens properly validated
+
+#### 2. Function Exposure
+
+- [ ] Public functions (`query`, `mutation`, `action`) reviewed
+- [ ] Internal functions use `internalQuery`, `internalMutation`, `internalAction`
+- [ ] No sensitive operations exposed as public functions
+- [ ] HTTP actions validate origin/authentication
+
+#### 3. Argument Validation
+
+- [ ] All functions have explicit `args` validators
+- [ ] All functions have explicit `returns` validators
+- [ ] No `v.any()` used for sensitive data
+- [ ] ID validators use correct table names
+
+#### 4. Row-Level Access Control
+
+- [ ] Users can only access their own data
+- [ ] Admin functions check user roles
+- [ ] Shared resources have proper access checks
+- [ ] Deletion functions verify ownership
+
+#### 5. Environment Variables
+
+- [ ] API keys stored in environment variables
+- [ ] No secrets in code or schema
+- [ ] Different keys for dev/prod environments
+- [ ] Environment variables accessed only in actions
+
+### Authentication Check
+
+```typescript
+// convex/auth.ts
+import { ConvexError, v } from 'convex/values';
+
+import { mutation, query } from './_generated/server';
+
+// Helper to require authentication
+async function requireAuth(ctx: QueryCtx | MutationCtx) {
+ const identity = await ctx.auth.getUserIdentity();
+ if (!identity) {
+ throw new ConvexError('Authentication required');
+ }
+ return identity;
+}
+
+// Secure query pattern
+export const getMyProfile = query({
+ args: {},
+ returns: v.union(
+ v.object({
+ _id: v.id('users'),
+ name: v.string(),
+ email: v.string(),
+ }),
+ v.null(),
+ ),
+ handler: async (ctx) => {
+ const identity = await requireAuth(ctx);
+
+ return await ctx.db
+ .query('users')
+ .withIndex('by_tokenIdentifier', (q) =>
+ q.eq('tokenIdentifier', identity.tokenIdentifier),
+ )
+ .unique();
+ },
+});
+```
+
+### Function Exposure Check
+
+```typescript
+// PUBLIC - Exposed to clients (review carefully!)
+export const listPublicPosts = query({
+ args: {},
+ returns: v.array(
+ v.object({
+ /* ... */
+ }),
+ ),
+ handler: async (ctx) => {
+ // Anyone can call this - intentionally public
+ return await ctx.db
+ .query('posts')
+ .withIndex('by_public', (q) => q.eq('isPublic', true))
+ .collect();
+ },
+});
+
+// INTERNAL - Only callable from other Convex functions
+export const _updateUserCredits = internalMutation({
+ args: { userId: v.id('users'), amount: v.number() },
+ returns: v.null(),
+ handler: async (ctx, args) => {
+ // This cannot be called directly from clients
+ await ctx.db.patch(args.userId, {
+ credits: args.amount,
+ });
+ return null;
+ },
+});
+```
+
+### Argument Validation Check
+
+```typescript
+// GOOD: Strict validation
+export const createPost = mutation({
+ args: {
+ title: v.string(),
+ content: v.string(),
+ category: v.union(v.literal('tech'), v.literal('news'), v.literal('other')),
+ },
+ returns: v.id('posts'),
+ handler: async (ctx, args) => {
+ const identity = await requireAuth(ctx);
+ return await ctx.db.insert('posts', {
+ ...args,
+ authorId: identity.tokenIdentifier,
+ });
+ },
+});
+
+// BAD: Weak validation
+export const createPostUnsafe = mutation({
+ args: {
+ data: v.any(), // DANGEROUS: Allows any data
+ },
+ returns: v.id('posts'),
+ handler: async (ctx, args) => {
+ return await ctx.db.insert('posts', args.data);
+ },
+});
+```
+
+### Row-Level Access Control Check
+
+```typescript
+// Verify ownership before update
+export const updateTask = mutation({
+ args: {
+ taskId: v.id('tasks'),
+ title: v.string(),
+ },
+ returns: v.null(),
+ handler: async (ctx, args) => {
+ const identity = await requireAuth(ctx);
+
+ const task = await ctx.db.get(args.taskId);
+
+ // Check ownership
+ if (!task || task.userId !== identity.tokenIdentifier) {
+ throw new ConvexError('Not authorized to update this task');
+ }
+
+ await ctx.db.patch(args.taskId, { title: args.title });
+ return null;
+ },
+});
+
+// Verify ownership before delete
+export const deleteTask = mutation({
+ args: { taskId: v.id('tasks') },
+ returns: v.null(),
+ handler: async (ctx, args) => {
+ const identity = await requireAuth(ctx);
+
+ const task = await ctx.db.get(args.taskId);
+
+ if (!task || task.userId !== identity.tokenIdentifier) {
+ throw new ConvexError('Not authorized to delete this task');
+ }
+
+ await ctx.db.delete(args.taskId);
+ return null;
+ },
+});
+```
+
+### Environment Variables Check
+
+```typescript
+// convex/actions.ts
+'use node';
+
+import { v } from 'convex/values';
+
+import { action } from './_generated/server';
+
+export const sendEmail = action({
+ args: {
+ to: v.string(),
+ subject: v.string(),
+ body: v.string(),
+ },
+ returns: v.object({ success: v.boolean() }),
+ handler: async (ctx, args) => {
+ // Access API key from environment
+ const apiKey = process.env.RESEND_API_KEY;
+
+ if (!apiKey) {
+ throw new Error('RESEND_API_KEY not configured');
+ }
+
+ const response = await fetch('https://api.resend.com/emails', {
+ method: 'POST',
+ headers: {
+ Authorization: `Bearer ${apiKey}`,
+ 'Content-Type': 'application/json',
+ },
+ body: JSON.stringify({
+ from: 'noreply@example.com',
+ to: args.to,
+ subject: args.subject,
+ html: args.body,
+ }),
+ });
+
+ return { success: response.ok };
+ },
+});
+```
+
+## Examples
+
+### Complete Security Pattern
+
+```typescript
+// convex/secure.ts
+import { ConvexError, v } from 'convex/values';
+
+import { internalMutation, mutation, query } from './_generated/server';
+
+// Authentication helper
+async function getAuthenticatedUser(ctx: QueryCtx | MutationCtx) {
+ const identity = await ctx.auth.getUserIdentity();
+ if (!identity) {
+ throw new ConvexError({
+ code: 'UNAUTHENTICATED',
+ message: 'You must be logged in',
+ });
+ }
+
+ const user = await ctx.db
+ .query('users')
+ .withIndex('by_tokenIdentifier', (q) =>
+ q.eq('tokenIdentifier', identity.tokenIdentifier),
+ )
+ .unique();
+
+ if (!user) {
+ throw new ConvexError({
+ code: 'USER_NOT_FOUND',
+ message: 'User profile not found',
+ });
+ }
+
+ return user;
+}
+
+// Check admin role
+async function requireAdmin(ctx: QueryCtx | MutationCtx) {
+ const user = await getAuthenticatedUser(ctx);
+
+ if (user.role !== 'admin') {
+ throw new ConvexError({
+ code: 'FORBIDDEN',
+ message: 'Admin access required',
+ });
+ }
+
+ return user;
+}
+
+// Public: List own tasks
+export const listMyTasks = query({
+ args: {},
+ returns: v.array(
+ v.object({
+ _id: v.id('tasks'),
+ title: v.string(),
+ completed: v.boolean(),
+ }),
+ ),
+ handler: async (ctx) => {
+ const user = await getAuthenticatedUser(ctx);
+
+ return await ctx.db
+ .query('tasks')
+ .withIndex('by_user', (q) => q.eq('userId', user._id))
+ .collect();
+ },
+});
+
+// Admin only: List all users
+export const listAllUsers = query({
+ args: {},
+ returns: v.array(
+ v.object({
+ _id: v.id('users'),
+ name: v.string(),
+ role: v.string(),
+ }),
+ ),
+ handler: async (ctx) => {
+ await requireAdmin(ctx);
+
+ return await ctx.db.query('users').collect();
+ },
+});
+
+// Internal: Update user role (never exposed)
+export const _setUserRole = internalMutation({
+ args: {
+ userId: v.id('users'),
+ role: v.union(v.literal('user'), v.literal('admin')),
+ },
+ returns: v.null(),
+ handler: async (ctx, args) => {
+ await ctx.db.patch(args.userId, { role: args.role });
+ return null;
+ },
+});
+```
+
+## Best Practices
+
+- Never run `npx convex deploy` unless explicitly instructed
+- Never run any git commands unless explicitly instructed
+- Always verify user identity before returning sensitive data
+- Use internal functions for sensitive operations
+- Validate all arguments with strict validators
+- Check ownership before update/delete operations
+- Store API keys in environment variables
+- Review all public functions for security implications
+
+## Common Pitfalls
+
+1. **Missing authentication checks** - Always verify identity
+2. **Exposing internal operations** - Use internalMutation/Query
+3. **Trusting client-provided IDs** - Verify ownership
+4. **Using v.any() for arguments** - Use specific validators
+5. **Hardcoding secrets** - Use environment variables
+
+## References
+
+- Convex Documentation: https://docs.convex.dev/
+- Convex LLMs.txt: https://docs.convex.dev/llms.txt
+- Authentication: https://docs.convex.dev/auth
+- Production Security: https://docs.convex.dev/production
+- Functions Auth: https://docs.convex.dev/auth/functions-auth
diff --git a/.claude/skills/frontend-design/.claude-plugin/plugin.json b/.claude/skills/frontend-design/.claude-plugin/plugin.json
new file mode 100644
index 0000000..6a1426c
--- /dev/null
+++ b/.claude/skills/frontend-design/.claude-plugin/plugin.json
@@ -0,0 +1,8 @@
+{
+ "name": "frontend-design",
+ "description": "Frontend design skill for UI/UX implementation",
+ "author": {
+ "name": "Anthropic",
+ "email": "support@anthropic.com"
+ }
+}
diff --git a/.claude/skills/frontend-design/LICENSE b/.claude/skills/frontend-design/LICENSE
new file mode 100644
index 0000000..d645695
--- /dev/null
+++ b/.claude/skills/frontend-design/LICENSE
@@ -0,0 +1,202 @@
+
+ Apache License
+ Version 2.0, January 2004
+ http://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ APPENDIX: How to apply the Apache License to your work.
+
+ To apply the Apache License to your work, attach the following
+ boilerplate notice, with the fields enclosed by brackets "[]"
+ replaced with your own identifying information. (Don't include
+ the brackets!) The text should be enclosed in the appropriate
+ comment syntax for the file format. We also recommend that a
+ file or class name and description of purpose be included on the
+ same "printed page" as the copyright notice for easier
+ identification within third-party archives.
+
+ Copyright [yyyy] [name of copyright owner]
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
diff --git a/.claude/skills/frontend-design/README.md b/.claude/skills/frontend-design/README.md
new file mode 100644
index 0000000..00cd435
--- /dev/null
+++ b/.claude/skills/frontend-design/README.md
@@ -0,0 +1,31 @@
+# Frontend Design Plugin
+
+Generates distinctive, production-grade frontend interfaces that avoid generic AI aesthetics.
+
+## What It Does
+
+Claude automatically uses this skill for frontend work. Creates production-ready code with:
+
+- Bold aesthetic choices
+- Distinctive typography and color palettes
+- High-impact animations and visual details
+- Context-aware implementation
+
+## Usage
+
+```
+"Create a dashboard for a music streaming app"
+"Build a landing page for an AI security startup"
+"Design a settings panel with dark mode"
+```
+
+Claude will choose a clear aesthetic direction and implement production code with meticulous attention to detail.
+
+## Learn More
+
+See the [Frontend Aesthetics Cookbook](https://github.com/anthropics/claude-cookbooks/blob/main/coding/prompting_for_frontend_aesthetics.ipynb) for detailed guidance on prompting for high-quality frontend design.
+
+## Authors
+
+Prithvi Rajasekaran (prithvi@anthropic.com)
+Alexander Bricken (alexander@anthropic.com)
diff --git a/.claude/skills/frontend-design/skills/frontend-design/SKILL.md b/.claude/skills/frontend-design/skills/frontend-design/SKILL.md
new file mode 100644
index 0000000..d5a05e2
--- /dev/null
+++ b/.claude/skills/frontend-design/skills/frontend-design/SKILL.md
@@ -0,0 +1,45 @@
+---
+name: frontend-design
+description: Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
+license: Complete terms in LICENSE.txt
+---
+
+This skill guides creation of distinctive, production-grade frontend interfaces that avoid generic "AI slop" aesthetics. Implement real working code with exceptional attention to aesthetic details and creative choices.
+
+The user provides frontend requirements: a component, page, application, or interface to build. They may include context about the purpose, audience, or technical constraints.
+
+## Design Thinking
+
+Before coding, understand the context and commit to a BOLD aesthetic direction:
+
+- **Purpose**: What problem does this interface solve? Who uses it?
+- **Tone**: Pick an extreme: brutally minimal, maximalist chaos, retro-futuristic, organic/natural, luxury/refined, playful/toy-like, editorial/magazine, brutalist/raw, art deco/geometric, soft/pastel, industrial/utilitarian, etc. There are so many flavors to choose from. Use these for inspiration but design one that is true to the aesthetic direction.
+- **Constraints**: Technical requirements (framework, performance, accessibility).
+- **Differentiation**: What makes this UNFORGETTABLE? What's the one thing someone will remember?
+
+**CRITICAL**: Choose a clear conceptual direction and execute it with precision. Bold maximalism and refined minimalism both work - the key is intentionality, not intensity.
+
+Then implement working code (HTML/CSS/JS, React, Vue, etc.) that is:
+
+- Production-grade and functional
+- Visually striking and memorable
+- Cohesive with a clear aesthetic point-of-view
+- Meticulously refined in every detail
+
+## Frontend Aesthetics Guidelines
+
+Focus on:
+
+- **Typography**: Choose fonts that are beautiful, unique, and interesting. Avoid generic fonts like Arial and Inter; opt instead for distinctive choices that elevate the frontend's aesthetics; unexpected, characterful font choices. Pair a distinctive display font with a refined body font.
+- **Color & Theme**: Commit to a cohesive aesthetic. Use CSS variables for consistency. Dominant colors with sharp accents outperform timid, evenly-distributed palettes.
+- **Motion**: Use animations for effects and micro-interactions. Prioritize CSS-only solutions for HTML. Use Motion library for React when available. Focus on high-impact moments: one well-orchestrated page load with staggered reveals (animation-delay) creates more delight than scattered micro-interactions. Use scroll-triggering and hover states that surprise.
+- **Spatial Composition**: Unexpected layouts. Asymmetry. Overlap. Diagonal flow. Grid-breaking elements. Generous negative space OR controlled density.
+- **Backgrounds & Visual Details**: Create atmosphere and depth rather than defaulting to solid colors. Add contextual effects and textures that match the overall aesthetic. Apply creative forms like gradient meshes, noise textures, geometric patterns, layered transparencies, dramatic shadows, decorative borders, custom cursors, and grain overlays.
+
+NEVER use generic AI-generated aesthetics like overused font families (Inter, Roboto, Arial, system fonts), cliched color schemes (particularly purple gradients on white backgrounds), predictable layouts and component patterns, and cookie-cutter design that lacks context-specific character.
+
+Interpret creatively and make unexpected choices that feel genuinely designed for the context. No design should be the same. Vary between light and dark themes, different fonts, different aesthetics. NEVER converge on common choices (Space Grotesk, for example) across generations.
+
+**IMPORTANT**: Match implementation complexity to the aesthetic vision. Maximalist designs need elaborate code with extensive animations and effects. Minimalist or refined designs need restraint, precision, and careful attention to spacing, typography, and subtle details. Elegance comes from executing the vision well.
+
+Remember: Claude is capable of extraordinary creative work. Don't hold back, show what can truly be created when thinking outside the box and committing fully to a distinctive vision.
diff --git a/.claude/skills/payload/SKILL.md b/.claude/skills/payload/SKILL.md
new file mode 100644
index 0000000..fb2c2e6
--- /dev/null
+++ b/.claude/skills/payload/SKILL.md
@@ -0,0 +1,393 @@
+---
+name: payload
+description: Use when working with Payload CMS projects (payload.config.ts, collections, fields, hooks, access control, Payload API). Use when debugging validation errors, security issues, relationship queries, transactions, or hook behavior.
+---
+
+# Payload CMS Application Development
+
+Payload is a Next.js native CMS with TypeScript-first architecture, providing admin panel, database management, REST/GraphQL APIs, authentication, and file storage.
+
+## Quick Reference
+
+| Task | Solution | Details |
+| ------------------------ | ----------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- |
+| Auto-generate slugs | `slugField()` | [FIELDS.md#slug-field-helper](reference/FIELDS.md#slug-field-helper) |
+| Restrict content by user | Access control with query | [ACCESS-CONTROL.md#row-level-security-with-complex-queries](reference/ACCESS-CONTROL.md#row-level-security-with-complex-queries) |
+| Local API user ops | `user` + `overrideAccess: false` | [QUERIES.md#access-control-in-local-api](reference/QUERIES.md#access-control-in-local-api) |
+| Draft/publish workflow | `versions: { drafts: true }` | [COLLECTIONS.md#versioning--drafts](reference/COLLECTIONS.md#versioning--drafts) |
+| Computed fields | `virtual: true` with afterRead | [FIELDS.md#virtual-fields](reference/FIELDS.md#virtual-fields) |
+| Conditional fields | `admin.condition` | [FIELDS.md#conditional-fields](reference/FIELDS.md#conditional-fields) |
+| Custom field validation | `validate` function | [FIELDS.md#validation](reference/FIELDS.md#validation) |
+| Filter relationship list | `filterOptions` on field | [FIELDS.md#relationship](reference/FIELDS.md#relationship) |
+| Select specific fields | `select` parameter | [QUERIES.md#field-selection](reference/QUERIES.md#field-selection) |
+| Auto-set author/dates | beforeChange hook | [HOOKS.md#collection-hooks](reference/HOOKS.md#collection-hooks) |
+| Prevent hook loops | `req.context` check | [HOOKS.md#context](reference/HOOKS.md#context) |
+| Cascading deletes | beforeDelete hook | [HOOKS.md#collection-hooks](reference/HOOKS.md#collection-hooks) |
+| Geospatial queries | `point` field with `near`/`within` | [FIELDS.md#point-geolocation](reference/FIELDS.md#point-geolocation) |
+| Reverse relationships | `join` field type | [FIELDS.md#join-fields](reference/FIELDS.md#join-fields) |
+| Next.js revalidation | Context control in afterChange | [HOOKS.md#nextjs-revalidation-with-context-control](reference/HOOKS.md#nextjs-revalidation-with-context-control) |
+| Query by relationship | Nested property syntax | [QUERIES.md#nested-properties](reference/QUERIES.md#nested-properties) |
+| Complex queries | AND/OR logic | [QUERIES.md#andor-logic](reference/QUERIES.md#andor-logic) |
+| Transactions | Pass `req` to operations | [ADAPTERS.md#threading-req-through-operations](reference/ADAPTERS.md#threading-req-through-operations) |
+| Background jobs | Jobs queue with tasks | [ADVANCED.md#jobs-queue](reference/ADVANCED.md#jobs-queue) |
+| Custom API routes | Collection custom endpoints | [ADVANCED.md#custom-endpoints](reference/ADVANCED.md#custom-endpoints) |
+| Cloud storage | Storage adapter plugins | [ADAPTERS.md#storage-adapters](reference/ADAPTERS.md#storage-adapters) |
+| Multi-language | `localization` config + `localized: true` | [ADVANCED.md#localization](reference/ADVANCED.md#localization) |
+| Create plugin | `(options) => (config) => Config` | [PLUGIN-DEVELOPMENT.md#plugin-architecture](reference/PLUGIN-DEVELOPMENT.md#plugin-architecture) |
+| Plugin package setup | Package structure with SWC | [PLUGIN-DEVELOPMENT.md#plugin-package-structure](reference/PLUGIN-DEVELOPMENT.md#plugin-package-structure) |
+| Add fields to collection | Map collections, spread fields | [PLUGIN-DEVELOPMENT.md#adding-fields-to-collections](reference/PLUGIN-DEVELOPMENT.md#adding-fields-to-collections) |
+| Plugin hooks | Preserve existing hooks in array | [PLUGIN-DEVELOPMENT.md#adding-hooks](reference/PLUGIN-DEVELOPMENT.md#adding-hooks) |
+| Check field type | Type guard functions | [FIELD-TYPE-GUARDS.md](reference/FIELD-TYPE-GUARDS.md) |
+
+## Quick Start
+
+```bash
+npx create-payload-app@latest my-app
+cd my-app
+pnpm dev
+```
+
+### Minimal Config
+
+```ts
+import path from 'path';
+import { fileURLToPath } from 'url';
+import { mongooseAdapter } from '@payloadcms/db-mongodb';
+import { lexicalEditor } from '@payloadcms/richtext-lexical';
+import { buildConfig } from 'payload';
+
+const filename = fileURLToPath(import.meta.url);
+const dirname = path.dirname(filename);
+
+export default buildConfig({
+ admin: {
+ user: 'users',
+ importMap: {
+ baseDir: path.resolve(dirname),
+ },
+ },
+ collections: [Users, Media],
+ editor: lexicalEditor(),
+ secret: process.env.PAYLOAD_SECRET,
+ typescript: {
+ outputFile: path.resolve(dirname, 'payload-types.ts'),
+ },
+ db: mongooseAdapter({
+ url: process.env.DATABASE_URL,
+ }),
+});
+```
+
+## Essential Patterns
+
+### Basic Collection
+
+```ts
+import type { CollectionConfig } from 'payload';
+
+export const Posts: CollectionConfig = {
+ slug: 'posts',
+ admin: {
+ useAsTitle: 'title',
+ defaultColumns: ['title', 'author', 'status', 'createdAt'],
+ },
+ fields: [
+ { name: 'title', type: 'text', required: true },
+ { name: 'slug', type: 'text', unique: true, index: true },
+ { name: 'content', type: 'richText' },
+ { name: 'author', type: 'relationship', relationTo: 'users' },
+ ],
+ timestamps: true,
+};
+```
+
+For more collection patterns (auth, upload, drafts, live preview), see [COLLECTIONS.md](reference/COLLECTIONS.md).
+
+### Common Fields
+
+```ts
+// Text field
+{ name: 'title', type: 'text', required: true }
+
+// Relationship
+{ name: 'author', type: 'relationship', relationTo: 'users', required: true }
+
+// Rich text
+{ name: 'content', type: 'richText', required: true }
+
+// Select
+{ name: 'status', type: 'select', options: ['draft', 'published'], defaultValue: 'draft' }
+
+// Upload
+{ name: 'image', type: 'upload', relationTo: 'media' }
+```
+
+For all field types (array, blocks, point, join, virtual, conditional, etc.), see [FIELDS.md](reference/FIELDS.md).
+
+### Hook Example
+
+```ts
+export const Posts: CollectionConfig = {
+ slug: 'posts',
+ hooks: {
+ beforeChange: [
+ async ({ data, operation }) => {
+ if (operation === 'create') {
+ data.slug = slugify(data.title);
+ }
+ return data;
+ },
+ ],
+ },
+ fields: [{ name: 'title', type: 'text' }],
+};
+```
+
+For all hook patterns, see [HOOKS.md](reference/HOOKS.md). For access control, see [ACCESS-CONTROL.md](reference/ACCESS-CONTROL.md).
+
+### Access Control with Type Safety
+
+```ts
+import type { User } from '@/payload-types';
+import type { Access } from 'payload';
+
+// Type-safe access control
+export const adminOnly: Access = ({ req }) => {
+ const user = req.user as User;
+ return user?.roles?.includes('admin') || false;
+};
+
+// Row-level access control
+export const ownPostsOnly: Access = ({ req }) => {
+ const user = req.user as User;
+ if (!user) return false;
+ if (user.roles?.includes('admin')) return true;
+
+ return {
+ author: { equals: user.id },
+ };
+};
+```
+
+### Query Example
+
+```ts
+// Local API
+const posts = await payload.find({
+ collection: 'posts',
+ where: {
+ status: { equals: 'published' },
+ 'author.name': { contains: 'john' },
+ },
+ depth: 2,
+ limit: 10,
+ sort: '-createdAt',
+});
+
+// Query with populated relationships
+const post = await payload.findByID({
+ collection: 'posts',
+ id: '123',
+ depth: 2, // Populates relationships (default is 2)
+});
+// Returns: { author: { id: "user123", name: "John" } }
+
+// Without depth, relationships return IDs only
+const post = await payload.findByID({
+ collection: 'posts',
+ id: '123',
+ depth: 0,
+});
+// Returns: { author: "user123" }
+```
+
+For all query operators and REST/GraphQL examples, see [QUERIES.md](reference/QUERIES.md).
+
+### Getting Payload Instance
+
+```ts
+// In API routes (Next.js)
+import { getPayload } from 'payload'
+import config from '@payload-config'
+
+export async function GET() {
+ const payload = await getPayload({ config })
+
+ const posts = await payload.find({
+ collection: 'posts',
+ })
+
+ return Response.json(posts)
+}
+
+// In Server Components
+import { getPayload } from 'payload'
+import config from '@payload-config'
+
+export default async function Page() {
+ const payload = await getPayload({ config })
+ const { docs } = await payload.find({ collection: 'posts' })
+
+ return {docs.map(post =>
{post.title} )}
+}
+```
+
+## Security Pitfalls
+
+### 1. Local API Access Control (CRITICAL)
+
+**By default, Local API operations bypass ALL access control**, even when passing a user.
+
+```ts
+// ❌ SECURITY BUG: Passes user but ignores their permissions
+await payload.find({
+ collection: 'posts',
+ user: someUser, // Access control is BYPASSED!
+});
+
+// ✅ SECURE: Actually enforces the user's permissions
+await payload.find({
+ collection: 'posts',
+ user: someUser,
+ overrideAccess: false, // REQUIRED for access control
+});
+```
+
+**When to use each:**
+
+- `overrideAccess: true` (default) - Server-side operations you trust (cron jobs, system tasks)
+- `overrideAccess: false` - When operating on behalf of a user (API routes, webhooks)
+
+See [QUERIES.md#access-control-in-local-api](reference/QUERIES.md#access-control-in-local-api).
+
+### 2. Transaction Failures in Hooks
+
+**Nested operations in hooks without `req` break transaction atomicity.**
+
+```ts
+// ❌ DATA CORRUPTION RISK: Separate transaction
+hooks: {
+ afterChange: [
+ async ({ doc, req }) => {
+ await req.payload.create({
+ collection: 'audit-log',
+ data: { docId: doc.id },
+ // Missing req - runs in separate transaction!
+ });
+ },
+ ];
+}
+
+// ✅ ATOMIC: Same transaction
+hooks: {
+ afterChange: [
+ async ({ doc, req }) => {
+ await req.payload.create({
+ collection: 'audit-log',
+ data: { docId: doc.id },
+ req, // Maintains atomicity
+ });
+ },
+ ];
+}
+```
+
+See [ADAPTERS.md#threading-req-through-operations](reference/ADAPTERS.md#threading-req-through-operations).
+
+### 3. Infinite Hook Loops
+
+**Hooks triggering operations that trigger the same hooks create infinite loops.**
+
+```ts
+// ❌ INFINITE LOOP
+hooks: {
+ afterChange: [
+ async ({ doc, req }) => {
+ await req.payload.update({
+ collection: 'posts',
+ id: doc.id,
+ data: { views: doc.views + 1 },
+ req,
+ }); // Triggers afterChange again!
+ },
+ ];
+}
+
+// ✅ SAFE: Use context flag
+hooks: {
+ afterChange: [
+ async ({ doc, req, context }) => {
+ if (context.skipHooks) return;
+
+ await req.payload.update({
+ collection: 'posts',
+ id: doc.id,
+ data: { views: doc.views + 1 },
+ context: { skipHooks: true },
+ req,
+ });
+ },
+ ];
+}
+```
+
+See [HOOKS.md#context](reference/HOOKS.md#context).
+
+## Project Structure
+
+```txt
+src/
+├── app/
+│ ├── (frontend)/
+│ │ └── page.tsx
+│ └── (payload)/
+│ └── admin/[[...segments]]/page.tsx
+├── collections/
+│ ├── Posts.ts
+│ ├── Media.ts
+│ └── Users.ts
+├── globals/
+│ └── Header.ts
+├── components/
+│ └── CustomField.tsx
+├── hooks/
+│ └── slugify.ts
+└── payload.config.ts
+```
+
+## Type Generation
+
+```ts
+// Usage
+import type { Post, User } from '@/payload-types';
+
+// payload.config.ts
+export default buildConfig({
+ typescript: {
+ outputFile: path.resolve(dirname, 'payload-types.ts'),
+ },
+ // ...
+});
+```
+
+## Reference Documentation
+
+- **[FIELDS.md](reference/FIELDS.md)** - All field types, validation, admin options
+- **[FIELD-TYPE-GUARDS.md](reference/FIELD-TYPE-GUARDS.md)** - Type guards for runtime field type checking and narrowing
+- **[COLLECTIONS.md](reference/COLLECTIONS.md)** - Collection configs, auth, upload, drafts, live preview
+- **[HOOKS.md](reference/HOOKS.md)** - Collection hooks, field hooks, context patterns
+- **[ACCESS-CONTROL.md](reference/ACCESS-CONTROL.md)** - Collection, field, global access control, RBAC, multi-tenant
+- **[ACCESS-CONTROL-ADVANCED.md](reference/ACCESS-CONTROL-ADVANCED.md)** - Context-aware, time-based, subscription-based access, factory functions, templates
+- **[QUERIES.md](reference/QUERIES.md)** - Query operators, Local/REST/GraphQL APIs
+- **[ENDPOINTS.md](reference/ENDPOINTS.md)** - Custom API endpoints: authentication, helpers, request/response patterns
+- **[ADAPTERS.md](reference/ADAPTERS.md)** - Database, storage, email adapters, transactions
+- **[ADVANCED.md](reference/ADVANCED.md)** - Authentication, jobs, endpoints, components, plugins, localization
+- **[PLUGIN-DEVELOPMENT.md](reference/PLUGIN-DEVELOPMENT.md)** - Plugin architecture, monorepo structure, patterns, best practices
+
+## Resources
+
+- llms-full.txt:
+- Docs:
+- GitHub:
+- Examples:
+- Templates:
diff --git a/.claude/skills/payload/reference/ACCESS-CONTROL-ADVANCED.md b/.claude/skills/payload/reference/ACCESS-CONTROL-ADVANCED.md
new file mode 100644
index 0000000..ed30d8d
--- /dev/null
+++ b/.claude/skills/payload/reference/ACCESS-CONTROL-ADVANCED.md
@@ -0,0 +1,720 @@
+# Payload CMS Access Control - Advanced Patterns
+
+Advanced access control patterns including context-aware access, time-based restrictions, factory functions, and production templates.
+
+## Context-Aware Access Patterns
+
+### Locale-Specific Access
+
+Control access based on user locale for internationalized content.
+
+```ts
+import type { Access } from 'payload';
+
+export const localeSpecificAccess: Access = ({ req: { user, locale } }) => {
+ // Authenticated users can access all locales
+ if (user) return true;
+
+ // Public users can only access English content
+ if (locale === 'en') return true;
+
+ return false;
+};
+
+// Usage in collection
+export const Posts: CollectionConfig = {
+ slug: 'posts',
+ access: {
+ read: localeSpecificAccess,
+ },
+ fields: [{ name: 'title', type: 'text', localized: true }],
+};
+```
+
+**Source**: `docs/access-control/overview.mdx` (req.locale argument)
+
+### Device-Specific Access
+
+Restrict access based on device type or user agent.
+
+```ts
+import type { Access } from 'payload';
+
+export const mobileOnlyAccess: Access = ({ req: { headers } }) => {
+ const userAgent = headers?.get('user-agent') || '';
+ return /mobile|android|iphone/i.test(userAgent);
+};
+
+export const desktopOnlyAccess: Access = ({ req: { headers } }) => {
+ const userAgent = headers?.get('user-agent') || '';
+ return !/mobile|android|iphone/i.test(userAgent);
+};
+
+// Usage
+export const MobileContent: CollectionConfig = {
+ slug: 'mobile-content',
+ access: {
+ read: mobileOnlyAccess,
+ },
+ fields: [{ name: 'title', type: 'text' }],
+};
+```
+
+**Source**: Synthesized (headers pattern)
+
+### IP-Based Access
+
+Restrict access from specific IP addresses (requires middleware/proxy headers).
+
+```ts
+import type { Access } from 'payload';
+
+export const restrictedIpAccess = (allowedIps: string[]): Access => {
+ return ({ req: { headers } }) => {
+ const ip = headers?.get('x-forwarded-for') || headers?.get('x-real-ip');
+ return allowedIps.includes(ip || '');
+ };
+};
+
+// Usage
+const internalIps = ['192.168.1.0/24', '10.0.0.5'];
+
+export const InternalDocs: CollectionConfig = {
+ slug: 'internal-docs',
+ access: {
+ read: restrictedIpAccess(internalIps),
+ },
+ fields: [{ name: 'content', type: 'richText' }],
+};
+```
+
+**Note**: Requires your server to pass IP address via headers (common with proxies/load balancers).
+
+**Source**: Synthesized (headers pattern)
+
+## Time-Based Access Patterns
+
+### Today's Records Only
+
+```ts
+import type { Access } from 'payload';
+
+export const todayOnlyAccess: Access = ({ req: { user } }) => {
+ if (!user) return false;
+
+ const now = new Date();
+ const startOfDay = new Date(now.getFullYear(), now.getMonth(), now.getDate());
+ const endOfDay = new Date(startOfDay.getTime() + 24 * 60 * 60 * 1000);
+
+ return {
+ createdAt: {
+ greater_than_equal: startOfDay.toISOString(),
+ less_than: endOfDay.toISOString(),
+ },
+ };
+};
+```
+
+**Source**: `test/access-control/config.ts` (query constraint patterns)
+
+### Recent Records (Last N Days)
+
+```ts
+import type { Access } from 'payload';
+
+export const recentRecordsAccess = (days: number): Access => {
+ return ({ req: { user } }) => {
+ if (!user) return false;
+ if (user.roles?.includes('admin')) return true;
+
+ const cutoff = new Date();
+ cutoff.setDate(cutoff.getDate() - days);
+
+ return {
+ createdAt: {
+ greater_than_equal: cutoff.toISOString(),
+ },
+ };
+ };
+};
+
+// Usage: Users see only last 30 days, admins see all
+export const Logs: CollectionConfig = {
+ slug: 'logs',
+ access: {
+ read: recentRecordsAccess(30),
+ },
+ fields: [{ name: 'message', type: 'text' }],
+};
+```
+
+### Scheduled Content (Publish Date Range)
+
+```ts
+import type { Access } from 'payload';
+
+export const scheduledContentAccess: Access = ({ req: { user } }) => {
+ // Editors see all content
+ if (user?.roles?.includes('admin') || user?.roles?.includes('editor')) {
+ return true;
+ }
+
+ const now = new Date().toISOString();
+
+ // Public sees only content within publish window
+ return {
+ and: [
+ { publishDate: { less_than_equal: now } },
+ {
+ or: [
+ { unpublishDate: { exists: false } },
+ { unpublishDate: { greater_than: now } },
+ ],
+ },
+ ],
+ };
+};
+```
+
+**Source**: Synthesized (query constraint + date patterns)
+
+## Subscription-Based Access
+
+### Active Subscription Required
+
+```ts
+import type { Access } from 'payload';
+
+export const activeSubscriptionAccess: Access = async ({ req: { user } }) => {
+ if (!user) return false;
+ if (user.roles?.includes('admin')) return true;
+
+ try {
+ const subscription = await req.payload.findByID({
+ collection: 'subscriptions',
+ id: user.subscriptionId,
+ });
+
+ return subscription?.status === 'active';
+ } catch {
+ return false;
+ }
+};
+
+// Usage
+export const PremiumContent: CollectionConfig = {
+ slug: 'premium-content',
+ access: {
+ read: activeSubscriptionAccess,
+ },
+ fields: [{ name: 'title', type: 'text' }],
+};
+```
+
+### Subscription Tier-Based Access
+
+```ts
+import type { Access } from 'payload';
+
+export const tierBasedAccess = (requiredTier: string): Access => {
+ const tierHierarchy = ['free', 'basic', 'pro', 'enterprise'];
+
+ return async ({ req: { user } }) => {
+ if (!user) return false;
+ if (user.roles?.includes('admin')) return true;
+
+ try {
+ const subscription = await req.payload.findByID({
+ collection: 'subscriptions',
+ id: user.subscriptionId,
+ });
+
+ if (subscription?.status !== 'active') return false;
+
+ const userTierIndex = tierHierarchy.indexOf(subscription.tier);
+ const requiredTierIndex = tierHierarchy.indexOf(requiredTier);
+
+ return userTierIndex >= requiredTierIndex;
+ } catch {
+ return false;
+ }
+ };
+};
+
+// Usage
+export const EnterpriseFeatures: CollectionConfig = {
+ slug: 'enterprise-features',
+ access: {
+ read: tierBasedAccess('enterprise'),
+ },
+ fields: [{ name: 'feature', type: 'text' }],
+};
+```
+
+**Source**: Synthesized (async + cross-collection pattern)
+
+## Factory Functions
+
+Reusable functions that generate access control configurations.
+
+### createRoleBasedAccess
+
+Generate access control for specific roles.
+
+```ts
+import type { Access } from 'payload';
+
+export function createRoleBasedAccess(roles: string[]): Access {
+ return ({ req: { user } }) => {
+ if (!user) return false;
+ return roles.some((role) => user.roles?.includes(role));
+ };
+}
+
+// Usage
+const adminOrEditor = createRoleBasedAccess(['admin', 'editor']);
+const moderatorAccess = createRoleBasedAccess(['admin', 'moderator']);
+
+export const Posts: CollectionConfig = {
+ slug: 'posts',
+ access: {
+ create: adminOrEditor,
+ update: adminOrEditor,
+ delete: moderatorAccess,
+ },
+ fields: [{ name: 'title', type: 'text' }],
+};
+```
+
+**Source**: `test/access-control/config.ts`
+
+### createOrgScopedAccess
+
+Generate organization-scoped access with optional admin bypass.
+
+```ts
+import type { Access } from 'payload';
+
+export function createOrgScopedAccess(allowAdmin = true): Access {
+ return ({ req: { user } }) => {
+ if (!user) return false;
+ if (allowAdmin && user.roles?.includes('admin')) return true;
+
+ return {
+ organizationId: { in: user.organizationIds || [] },
+ };
+ };
+}
+
+// Usage
+const orgScoped = createOrgScopedAccess(); // Admins bypass
+const strictOrgScoped = createOrgScopedAccess(false); // Admins also scoped
+
+export const Projects: CollectionConfig = {
+ slug: 'projects',
+ access: {
+ read: orgScoped,
+ update: orgScoped,
+ delete: strictOrgScoped,
+ },
+ fields: [
+ { name: 'title', type: 'text' },
+ { name: 'organizationId', type: 'text', required: true },
+ ],
+};
+```
+
+**Source**: `test/access-control/config.ts`
+
+### createTeamBasedAccess
+
+Generate team-scoped access with configurable field name.
+
+```ts
+import type { Access } from 'payload';
+
+export function createTeamBasedAccess(teamField = 'teamId'): Access {
+ return ({ req: { user } }) => {
+ if (!user) return false;
+ if (user.roles?.includes('admin')) return true;
+
+ return {
+ [teamField]: { in: user.teamIds || [] },
+ };
+ };
+}
+
+// Usage with custom field name
+const projectTeamAccess = createTeamBasedAccess('projectTeam');
+
+export const Tasks: CollectionConfig = {
+ slug: 'tasks',
+ access: {
+ read: projectTeamAccess,
+ update: projectTeamAccess,
+ },
+ fields: [
+ { name: 'title', type: 'text' },
+ { name: 'projectTeam', type: 'text', required: true },
+ ],
+};
+```
+
+**Source**: Synthesized (org pattern variation)
+
+### createTimeLimitedAccess
+
+Generate access limited to records within specified days.
+
+```ts
+import type { Access } from 'payload';
+
+export function createTimeLimitedAccess(daysAccess: number): Access {
+ return ({ req: { user } }) => {
+ if (!user) return false;
+ if (user.roles?.includes('admin')) return true;
+
+ const cutoff = new Date();
+ cutoff.setDate(cutoff.getDate() - daysAccess);
+
+ return {
+ createdAt: {
+ greater_than_equal: cutoff.toISOString(),
+ },
+ };
+ };
+}
+
+// Usage: Users see 90 days, admins see all
+export const ActivityLogs: CollectionConfig = {
+ slug: 'activity-logs',
+ access: {
+ read: createTimeLimitedAccess(90),
+ },
+ fields: [{ name: 'action', type: 'text' }],
+};
+```
+
+**Source**: Synthesized (time + query pattern)
+
+## Configuration Templates
+
+Complete collection configurations for common scenarios.
+
+### Basic Authenticated Collection
+
+```ts
+import type { CollectionConfig } from 'payload';
+
+export const BasicCollection: CollectionConfig = {
+ slug: 'basic-collection',
+ access: {
+ create: ({ req: { user } }) => Boolean(user),
+ read: ({ req: { user } }) => Boolean(user),
+ update: ({ req: { user } }) => Boolean(user),
+ delete: ({ req: { user } }) => Boolean(user),
+ },
+ fields: [
+ { name: 'title', type: 'text', required: true },
+ { name: 'content', type: 'richText' },
+ ],
+};
+```
+
+**Source**: `docs/access-control/collections.mdx`
+
+### Public + Authenticated Collection
+
+```ts
+import type { CollectionConfig } from 'payload';
+
+export const PublicAuthCollection: CollectionConfig = {
+ slug: 'posts',
+ access: {
+ // Only admins/editors can create
+ create: ({ req: { user } }) => {
+ return (
+ user?.roles?.some((role) => ['admin', 'editor'].includes(role)) || false
+ );
+ },
+
+ // Authenticated users see all, public sees only published
+ read: ({ req: { user } }) => {
+ if (user) return true;
+ return { _status: { equals: 'published' } };
+ },
+
+ // Only admins/editors can update
+ update: ({ req: { user } }) => {
+ return (
+ user?.roles?.some((role) => ['admin', 'editor'].includes(role)) || false
+ );
+ },
+
+ // Only admins can delete
+ delete: ({ req: { user } }) => {
+ return user?.roles?.includes('admin') || false;
+ },
+ },
+ versions: {
+ drafts: true,
+ },
+ fields: [
+ { name: 'title', type: 'text', required: true },
+ { name: 'content', type: 'richText', required: true },
+ { name: 'author', type: 'relationship', relationTo: 'users' },
+ ],
+};
+```
+
+**Source**: `templates/website/src/collections/Posts/index.ts`
+
+### Multi-User/Self-Service Collection
+
+```ts
+import type { CollectionConfig } from 'payload';
+
+export const SelfServiceCollection: CollectionConfig = {
+ slug: 'users',
+ auth: true,
+ access: {
+ // Admins can create users
+ create: ({ req: { user } }) => user?.roles?.includes('admin') || false,
+
+ // Anyone can read user profiles
+ read: () => true,
+
+ // Users can update self, admins can update anyone
+ update: ({ req: { user }, id }) => {
+ if (!user) return false;
+ if (user.roles?.includes('admin')) return true;
+ return user.id === id;
+ },
+
+ // Only admins can delete
+ delete: ({ req: { user } }) => user?.roles?.includes('admin') || false,
+ },
+ fields: [
+ { name: 'name', type: 'text', required: true },
+ { name: 'email', type: 'email', required: true },
+ {
+ name: 'roles',
+ type: 'select',
+ hasMany: true,
+ options: ['admin', 'editor', 'user'],
+ access: {
+ // Only admins can read/update roles
+ read: ({ req: { user } }) => user?.roles?.includes('admin') || false,
+ update: ({ req: { user } }) => user?.roles?.includes('admin') || false,
+ },
+ },
+ ],
+};
+```
+
+**Source**: `templates/website/src/collections/Users/index.ts`
+
+## Debugging Tips
+
+### Log Access Check Execution
+
+```ts
+export const debugAccess: Access = ({ req: { user }, id }) => {
+ console.log('Access check:', {
+ userId: user?.id,
+ userRoles: user?.roles,
+ docId: id,
+ timestamp: new Date().toISOString(),
+ });
+ return true;
+};
+```
+
+### Verify Arguments Availability
+
+```ts
+export const checkArgsAccess: Access = (args) => {
+ console.log('Available arguments:', {
+ hasReq: 'req' in args,
+ hasUser: args.req?.user ? 'yes' : 'no',
+ hasId: args.id ? 'provided' : 'undefined',
+ hasData: args.data ? 'provided' : 'undefined',
+ });
+ return true;
+};
+```
+
+### Measure Async Operation Timing
+
+```ts
+export const timedAsyncAccess: Access = async ({ req }) => {
+ const start = Date.now();
+
+ const result = await fetch('https://auth-service.example.com/validate', {
+ headers: { userId: req.user?.id },
+ });
+
+ console.log(`Access check took ${Date.now() - start}ms`);
+
+ return result.ok;
+};
+```
+
+### Test Access Without User
+
+```ts
+// In test/development
+const testAccess = await payload.find({
+ collection: 'posts',
+ overrideAccess: false, // Enforce access control
+ user: undefined, // Simulate no user
+});
+
+console.log('Public access result:', testAccess.docs.length);
+```
+
+**Source**: Synthesized (debugging best practices)
+
+## Performance Considerations
+
+### Async Operations Impact
+
+```ts
+// ❌ Slow: Multiple sequential async calls
+export const slowAccess: Access = async ({ req: { user } }) => {
+ const org = await req.payload.findByID({
+ collection: 'orgs',
+ id: user.orgId,
+ });
+ const team = await req.payload.findByID({
+ collection: 'teams',
+ id: user.teamId,
+ });
+ const subscription = await req.payload.findByID({
+ collection: 'subs',
+ id: user.subId,
+ });
+
+ return org.active && team.active && subscription.active;
+};
+
+// ✅ Fast: Use query constraints or cache in context
+export const fastAccess: Access = ({ req: { user, context } }) => {
+ // Cache expensive lookups
+ if (!context.orgStatus) {
+ context.orgStatus = checkOrgStatus(user.orgId);
+ }
+
+ return context.orgStatus;
+};
+```
+
+### Query Constraint Optimization
+
+```ts
+// ❌ Avoid: Non-indexed fields in constraints
+export const slowQuery: Access = () => ({
+ 'metadata.internalCode': { equals: 'ABC123' }, // Slow if not indexed
+});
+
+// ✅ Better: Use indexed fields
+export const fastQuery: Access = () => ({
+ status: { equals: 'active' }, // Indexed field
+ organizationId: { in: ['org1', 'org2'] }, // Indexed field
+});
+```
+
+### Field Access on Large Arrays
+
+```ts
+// ❌ Slow: Complex access on array fields
+const arrayField: ArrayField = {
+ name: 'items',
+ type: 'array',
+ fields: [
+ {
+ name: 'secretData',
+ type: 'text',
+ access: {
+ read: async ({ req }) => {
+ // Async call runs for EVERY array item
+ const result = await expensiveCheck();
+ return result;
+ },
+ },
+ },
+ ],
+};
+
+// ✅ Fast: Simple checks or cache result
+const optimizedArrayField: ArrayField = {
+ name: 'items',
+ type: 'array',
+ fields: [
+ {
+ name: 'secretData',
+ type: 'text',
+ access: {
+ read: ({ req: { user }, context }) => {
+ // Cache once, reuse for all items
+ if (context.canReadSecret === undefined) {
+ context.canReadSecret = user?.roles?.includes('admin');
+ }
+ return context.canReadSecret;
+ },
+ },
+ },
+ ],
+};
+```
+
+### Avoid N+1 Queries
+
+```ts
+// ❌ N+1 Problem: Query per access check
+export const n1Access: Access = async ({ req, id }) => {
+ // Runs for EACH document in list
+ const doc = await req.payload.findByID({ collection: 'docs', id });
+ return doc.isPublic;
+};
+
+// ✅ Better: Use query constraint to filter at DB level
+export const efficientAccess: Access = () => {
+ return { isPublic: { equals: true } };
+};
+```
+
+**Performance Best Practices:**
+
+1. **Minimize Async Operations**: Use query constraints over async lookups when possible
+2. **Cache Expensive Checks**: Store results in `req.context` for reuse
+3. **Index Query Fields**: Ensure fields in query constraints are indexed
+4. **Avoid Complex Logic in Array Fields**: Simple boolean checks preferred
+5. **Use Query Constraints**: Let database filter rather than loading all records
+
+**Source**: Synthesized (operational best practices)
+
+## Enhanced Best Practices
+
+Comprehensive security and implementation guidelines:
+
+1. **Default Deny**: Start with restrictive access, gradually add permissions
+2. **Type Guards**: Use TypeScript for user type safety and better IDE support
+3. **Validate Data**: Never trust frontend-provided IDs or data
+4. **Async for Critical Checks**: Use async operations for important security decisions
+5. **Consistent Logic**: Apply same rules at field and collection levels
+6. **Test Edge Cases**: Test with no user, wrong user, admin user scenarios
+7. **Monitor Access**: Log failed access attempts for security review
+8. **Regular Audit**: Review access rules quarterly or after major changes
+9. **Cache Wisely**: Use `req.context` for expensive operations
+10. **Document Intent**: Add comments explaining complex access rules
+11. **Avoid Secrets in Client**: Never expose sensitive logic to client-side
+12. **Rate Limit External Calls**: Protect against DoS on external validation services
+13. **Handle Errors Gracefully**: Access functions should return `false` on error, not throw
+14. **Use Environment Vars**: Store configuration (IPs, API keys) in env vars
+15. **Test Local API**: Remember to set `overrideAccess: false` when testing
+16. **Consider Performance**: Measure impact of async operations on login time
+17. **Version Control**: Track access control changes in git history
+18. **Principle of Least Privilege**: Grant minimum access required for functionality
+
+**Sources**: `docs/access-control/*.mdx`, synthesized best practices
diff --git a/.claude/skills/payload/reference/ACCESS-CONTROL.md b/.claude/skills/payload/reference/ACCESS-CONTROL.md
new file mode 100644
index 0000000..1769108
--- /dev/null
+++ b/.claude/skills/payload/reference/ACCESS-CONTROL.md
@@ -0,0 +1,706 @@
+# Payload CMS Access Control Reference
+
+Complete reference for access control patterns across collections, fields, and globals.
+
+## At a Glance
+
+| Feature | Scope | Returns | Use Case |
+| --------------------- | --------------------------------------------------------- | ---------------------- | ---------------------------------- |
+| **Collection Access** | create, read, update, delete, admin, unlock, readVersions | boolean \| Where query | Document-level permissions |
+| **Field Access** | create, read, update | boolean only | Field-level visibility/editability |
+| **Global Access** | read, update, readVersions | boolean \| Where query | Global document permissions |
+
+## Three Layers of Access Control
+
+Payload provides three distinct access control layers:
+
+1. **Collection-Level**: Controls operations on entire documents (create, read, update, delete, admin, unlock, readVersions)
+2. **Field-Level**: Controls access to individual fields (create, read, update)
+3. **Global-Level**: Controls access to global documents (read, update, readVersions)
+
+## Return Value Types
+
+Access control functions can return:
+
+- **Boolean**: `true` (allow) or `false` (deny)
+- **Query Constraint**: `Where` object for row-level security (collection-level only)
+
+Field-level access does NOT support query constraints - only boolean returns.
+
+## Operation Decision Tree
+
+```txt
+User makes request
+ │
+ ├─ Collection access check
+ │ ├─ Returns false? → Deny entire operation
+ │ ├─ Returns true? → Continue
+ │ └─ Returns Where? → Apply query constraint
+ │
+ ├─ Field access check (if applicable)
+ │ ├─ Returns false? → Field omitted from result
+ │ └─ Returns true? → Include field
+ │
+ └─ Operation completed
+```
+
+## Collection Access Control
+
+### Basic Patterns
+
+```ts
+import type { Access, CollectionConfig } from 'payload';
+
+export const Posts: CollectionConfig = {
+ slug: 'posts',
+ access: {
+ // Boolean: Only authenticated users can create
+ create: ({ req: { user } }) => Boolean(user),
+
+ // Query constraint: Public sees published, users see all
+ read: ({ req: { user } }) => {
+ if (user) return true;
+ return { status: { equals: 'published' } };
+ },
+
+ // User-specific: Admins or document owner
+ update: ({ req: { user }, id }) => {
+ if (user?.roles?.includes('admin')) return true;
+ return { author: { equals: user?.id } };
+ },
+
+ // Async: Check related data
+ delete: async ({ req, id }) => {
+ const hasComments = await req.payload.count({
+ collection: 'comments',
+ where: { post: { equals: id } },
+ });
+ return hasComments === 0;
+ },
+
+ // Admin panel visibility
+ admin: ({ req: { user } }) => {
+ return user?.roles?.includes('admin') || user?.roles?.includes('editor');
+ },
+ },
+ fields: [
+ { name: 'title', type: 'text' },
+ { name: 'status', type: 'select', options: ['draft', 'published'] },
+ { name: 'author', type: 'relationship', relationTo: 'users' },
+ ],
+};
+```
+
+### Role-Based Access Control (RBAC) Pattern
+
+Payload does NOT provide a roles system by default. The following is a commonly accepted pattern for implementing role-based access control in auth collections:
+
+```ts
+import type { CollectionConfig } from 'payload';
+
+export const Users: CollectionConfig = {
+ slug: 'users',
+ auth: true,
+ fields: [
+ { name: 'name', type: 'text', required: true },
+ { name: 'email', type: 'email', required: true },
+ {
+ name: 'roles',
+ type: 'select',
+ hasMany: true,
+ options: ['admin', 'editor', 'user'],
+ defaultValue: ['user'],
+ required: true,
+ // Save roles to JWT for access control without database lookups
+ saveToJWT: true,
+ access: {
+ // Only admins can update roles
+ update: ({ req: { user } }) => user?.roles?.includes('admin'),
+ },
+ },
+ ],
+};
+```
+
+**Important Notes:**
+
+1. **Not Built-In**: Payload does not provide a roles system out of the box. You must add a `roles` field to your auth collection.
+2. **Save to JWT**: Use `saveToJWT: true` to include roles in the JWT token, enabling role checks without database queries.
+3. **Default Value**: Set a `defaultValue` to automatically assign new users a default role.
+4. **Access Control**: Restrict who can modify roles (typically only admins).
+5. **Role Options**: Define your own role hierarchy based on your application needs.
+
+**Using Roles in Access Control:**
+
+```ts
+import type { Access } from 'payload';
+
+// Check for specific role
+export const adminOnly: Access = ({ req: { user } }) => {
+ return user?.roles?.includes('admin');
+};
+
+// Check for multiple roles
+export const adminOrEditor: Access = ({ req: { user } }) => {
+ return Boolean(
+ user?.roles?.some((role) => ['admin', 'editor'].includes(role)),
+ );
+};
+
+// Role hierarchy check
+export const hasMinimumRole: Access = ({ req: { user } }, minRole: string) => {
+ const roleHierarchy = ['user', 'editor', 'admin'];
+ const userHighestRole = Math.max(
+ ...(user?.roles?.map((r) => roleHierarchy.indexOf(r)) || [-1]),
+ );
+ const requiredRoleIndex = roleHierarchy.indexOf(minRole);
+
+ return userHighestRole >= requiredRoleIndex;
+};
+```
+
+### Reusable Access Functions
+
+```ts
+import type { Access } from 'payload';
+
+// Anyone (public)
+export const anyone: Access = () => true;
+
+// Authenticated only
+export const authenticated: Access = ({ req: { user } }) => Boolean(user);
+
+// Authenticated or published content
+export const authenticatedOrPublished: Access = ({ req: { user } }) => {
+ if (user) return true;
+ return { _status: { equals: 'published' } };
+};
+
+// Admin only
+export const admins: Access = ({ req: { user } }) => {
+ return user?.roles?.includes('admin');
+};
+
+// Admin or editor
+export const adminsOrEditors: Access = ({ req: { user } }) => {
+ return Boolean(
+ user?.roles?.some((role) => ['admin', 'editor'].includes(role)),
+ );
+};
+
+// Self or admin
+export const adminsOrSelf: Access = ({ req: { user } }) => {
+ if (user?.roles?.includes('admin')) return true;
+ return { id: { equals: user?.id } };
+};
+
+// Usage
+export const Posts: CollectionConfig = {
+ slug: 'posts',
+ access: {
+ create: authenticated,
+ read: authenticatedOrPublished,
+ update: adminsOrEditors,
+ delete: admins,
+ },
+ fields: [{ name: 'title', type: 'text' }],
+};
+```
+
+### Row-Level Security with Complex Queries
+
+```ts
+import type { Access } from 'payload';
+
+// Organization-scoped access
+export const organizationScoped: Access = ({ req: { user } }) => {
+ if (user?.roles?.includes('admin')) return true;
+
+ // Users see only their organization's data
+ return {
+ organization: {
+ equals: user?.organization,
+ },
+ };
+};
+
+// Multiple conditions with AND
+export const complexAccess: Access = ({ req: { user } }) => {
+ return {
+ and: [
+ { status: { equals: 'published' } },
+ { 'author.isActive': { equals: true } },
+ {
+ or: [
+ { visibility: { equals: 'public' } },
+ { author: { equals: user?.id } },
+ ],
+ },
+ ],
+ };
+};
+
+// Team-based access
+export const teamMemberAccess: Access = ({ req: { user } }) => {
+ if (!user) return false;
+ if (user.roles?.includes('admin')) return true;
+
+ return {
+ 'team.members': {
+ contains: user.id,
+ },
+ };
+};
+```
+
+### Header-Based Access (API Keys)
+
+```ts
+import type { Access } from 'payload';
+
+export const apiKeyAccess: Access = ({ req }) => {
+ const apiKey = req.headers.get('x-api-key');
+
+ if (!apiKey) return false;
+
+ // Validate against stored keys
+ return apiKey === process.env.VALID_API_KEY;
+};
+
+// Bearer token validation
+export const bearerTokenAccess: Access = async ({ req }) => {
+ const auth = req.headers.get('authorization');
+
+ if (!auth?.startsWith('Bearer ')) return false;
+
+ const token = auth.slice(7);
+ const isValid = await validateToken(token);
+
+ return isValid;
+};
+```
+
+## Field Access Control
+
+Field access does NOT support query constraints - only boolean returns.
+
+### Basic Field Access
+
+```ts
+import type { FieldAccess, NumberField } from 'payload';
+
+const salaryReadAccess: FieldAccess = ({ req: { user }, doc }) => {
+ // Self can read own salary
+ if (user?.id === doc?.id) return true;
+ // Admin can read all salaries
+ return user?.roles?.includes('admin');
+};
+
+const salaryUpdateAccess: FieldAccess = ({ req: { user } }) => {
+ // Only admins can update salary
+ return user?.roles?.includes('admin');
+};
+
+const salaryField: NumberField = {
+ name: 'salary',
+ type: 'number',
+ access: {
+ read: salaryReadAccess,
+ update: salaryUpdateAccess,
+ },
+};
+```
+
+### Sibling Data Access
+
+```ts
+import type { ArrayField, FieldAccess } from 'payload';
+
+const contentReadAccess: FieldAccess = ({ req: { user }, siblingData }) => {
+ // Authenticated users see all
+ if (user) return true;
+ // Public sees only if marked public
+ return siblingData?.isPublic === true;
+};
+
+const arrayField: ArrayField = {
+ name: 'sections',
+ type: 'array',
+ fields: [
+ {
+ name: 'isPublic',
+ type: 'checkbox',
+ defaultValue: false,
+ },
+ {
+ name: 'content',
+ type: 'text',
+ access: {
+ read: contentReadAccess,
+ },
+ },
+ ],
+};
+```
+
+### Nested Field Access
+
+```ts
+import type { FieldAccess, GroupField } from 'payload';
+
+const internalOnlyAccess: FieldAccess = ({ req: { user } }) => {
+ return user?.roles?.includes('admin') || user?.roles?.includes('internal');
+};
+
+const groupField: GroupField = {
+ name: 'internalMetadata',
+ type: 'group',
+ access: {
+ read: internalOnlyAccess,
+ update: internalOnlyAccess,
+ },
+ fields: [
+ { name: 'internalNotes', type: 'textarea' },
+ { name: 'priority', type: 'select', options: ['low', 'medium', 'high'] },
+ ],
+};
+```
+
+### Hiding Admin Fields
+
+```ts
+import type { CollectionConfig } from 'payload';
+
+export const Users: CollectionConfig = {
+ slug: 'users',
+ auth: true,
+ fields: [
+ { name: 'name', type: 'text', required: true },
+ { name: 'email', type: 'email', required: true },
+ {
+ name: 'roles',
+ type: 'select',
+ hasMany: true,
+ options: ['admin', 'editor', 'user'],
+ access: {
+ // Hide from UI, but still saved/queried
+ read: ({ req: { user } }) => user?.roles?.includes('admin'),
+ // Only admins can update roles
+ update: ({ req: { user } }) => user?.roles?.includes('admin'),
+ },
+ },
+ ],
+};
+```
+
+## Global Access Control
+
+```ts
+import type { Access, GlobalConfig } from 'payload';
+
+const adminOnly: Access = ({ req: { user } }) => {
+ return user?.roles?.includes('admin');
+};
+
+export const SiteSettings: GlobalConfig = {
+ slug: 'site-settings',
+ access: {
+ read: () => true, // Anyone can read settings
+ update: adminOnly, // Only admins can update
+ readVersions: adminOnly, // Only admins can see version history
+ },
+ fields: [
+ { name: 'siteName', type: 'text' },
+ { name: 'maintenanceMode', type: 'checkbox' },
+ ],
+};
+```
+
+## Multi-Tenant Access Control
+
+```ts
+import type { Access, CollectionConfig } from 'payload';
+
+// Add tenant field to user type
+interface User {
+ id: string;
+ tenantId: string;
+ roles?: string[];
+}
+
+// Tenant-scoped access
+const tenantAccess: Access = ({ req: { user } }) => {
+ // No user = no access
+ if (!user) return false;
+
+ // Super admin sees all
+ if (user.roles?.includes('super-admin')) return true;
+
+ // Users see only their tenant's data
+ return {
+ tenant: {
+ equals: (user as User).tenantId,
+ },
+ };
+};
+
+export const Posts: CollectionConfig = {
+ slug: 'posts',
+ access: {
+ create: tenantAccess,
+ read: tenantAccess,
+ update: tenantAccess,
+ delete: tenantAccess,
+ },
+ fields: [
+ { name: 'title', type: 'text' },
+ {
+ name: 'tenant',
+ type: 'text',
+ required: true,
+ access: {
+ // Tenant field hidden from non-admins
+ update: ({ req: { user } }) => user?.roles?.includes('super-admin'),
+ },
+ hooks: {
+ // Auto-set tenant on create
+ beforeChange: [
+ ({ req, operation, value }) => {
+ if (operation === 'create' && !value) {
+ return (req.user as User)?.tenantId;
+ }
+ return value;
+ },
+ ],
+ },
+ },
+ ],
+};
+```
+
+## Auth Collection Patterns
+
+### Self or Admin Pattern
+
+```ts
+import type { CollectionConfig } from 'payload';
+
+export const Users: CollectionConfig = {
+ slug: 'users',
+ auth: true,
+ access: {
+ // Anyone can read user profiles
+ read: () => true,
+
+ // Users can update themselves, admins can update anyone
+ update: ({ req: { user }, id }) => {
+ if (user?.roles?.includes('admin')) return true;
+ return user?.id === id;
+ },
+
+ // Only admins can delete
+ delete: ({ req: { user } }) => user?.roles?.includes('admin'),
+ },
+ fields: [
+ { name: 'name', type: 'text' },
+ { name: 'email', type: 'email' },
+ ],
+};
+```
+
+### Restrict Self-Updates
+
+```ts
+import type { CollectionConfig, FieldAccess } from 'payload';
+
+const preventSelfRoleChange: FieldAccess = ({ req: { user }, id }) => {
+ // Admins can change anyone's roles
+ if (user?.roles?.includes('admin')) return true;
+ // Users cannot change their own roles
+ if (user?.id === id) return false;
+ return false;
+};
+
+export const Users: CollectionConfig = {
+ slug: 'users',
+ auth: true,
+ fields: [
+ {
+ name: 'roles',
+ type: 'select',
+ hasMany: true,
+ options: ['admin', 'editor', 'user'],
+ access: {
+ update: preventSelfRoleChange,
+ },
+ },
+ ],
+};
+```
+
+## Cross-Collection Validation
+
+```ts
+import type { Access } from 'payload';
+
+// Check if user is a project member before allowing access
+export const projectMemberAccess: Access = async ({ req, id }) => {
+ const { user, payload } = req;
+
+ if (!user) return false;
+ if (user.roles?.includes('admin')) return true;
+
+ // Check if document exists and user is member
+ const project = await payload.findByID({
+ collection: 'projects',
+ id: id as string,
+ depth: 0,
+ });
+
+ return project.members?.includes(user.id);
+};
+
+// Prevent deletion if document has dependencies
+export const preventDeleteWithDependencies: Access = async ({ req, id }) => {
+ const { payload } = req;
+
+ const dependencyCount = await payload.count({
+ collection: 'related-items',
+ where: {
+ parent: { equals: id },
+ },
+ });
+
+ return dependencyCount === 0;
+};
+```
+
+## Access Control Function Arguments
+
+### Collection Create
+
+```ts
+create: ({ req, data }) => boolean | Where;
+
+// req: PayloadRequest
+// - req.user: Authenticated user (if any)
+// - req.payload: Payload instance for queries
+// - req.headers: Request headers
+// - req.locale: Current locale
+// data: The data being created
+```
+
+### Collection Read
+
+```ts
+read: ({ req, id }) => boolean | Where;
+
+// req: PayloadRequest
+// id: Document ID being read
+// - undefined during Access Operation (login check)
+// - string when reading specific document
+```
+
+### Collection Update
+
+```ts
+update: ({ req, id, data }) => boolean | Where;
+
+// req: PayloadRequest
+// id: Document ID being updated
+// data: New values being applied
+```
+
+### Collection Delete
+
+```ts
+delete: ({ req, id }) => boolean | Where
+
+// req: PayloadRequest
+// id: Document ID being deleted
+```
+
+### Field Create
+
+```ts
+access: {
+ create: ({ req, data, siblingData }) => boolean;
+}
+
+// req: PayloadRequest
+// data: Full document data
+// siblingData: Adjacent field values at same level
+```
+
+### Field Read
+
+```ts
+access: {
+ read: ({ req, id, doc, siblingData }) => boolean;
+}
+
+// req: PayloadRequest
+// id: Document ID
+// doc: Full document
+// siblingData: Adjacent field values
+```
+
+### Field Update
+
+```ts
+access: {
+ update: ({ req, id, data, doc, siblingData }) => boolean;
+}
+
+// req: PayloadRequest
+// id: Document ID
+// data: New values
+// doc: Current document
+// siblingData: Adjacent field values
+```
+
+## Important Notes
+
+1. **Local API Default**: Access control is **skipped by default** in Local API (`overrideAccess: true`). When passing a `user` parameter, you almost always want to set `overrideAccess: false` to respect that user's permissions:
+
+ ```ts
+ // ❌ WRONG: Passes user but bypasses access control (default behavior)
+ await payload.find({
+ collection: 'posts',
+ user: someUser, // User is ignored for access control!
+ });
+
+ // ✅ CORRECT: Respects the user's permissions
+ await payload.find({
+ collection: 'posts',
+ user: someUser,
+ overrideAccess: false, // Required to enforce access control
+ });
+ ```
+
+ **Why this matters**: If you pass `user` without `overrideAccess: false`, the operation runs with admin privileges regardless of the user's actual permissions. This is a common security mistake.
+
+2. **Field Access Limitations**: Field-level access does NOT support query constraints - only boolean returns.
+
+3. **Admin Panel Visibility**: The `admin` access control determines if a collection appears in the admin panel for a user.
+
+4. **Access Before Hooks**: Access control executes BEFORE hooks run, so hooks cannot modify access behavior.
+
+5. **Query Constraints**: Only collection-level `read` access supports query constraints. All other operations and field-level access require boolean returns.
+
+## Best Practices
+
+1. **Reusable Functions**: Create named access functions for common patterns
+2. **Fail Secure**: Default to `false` for sensitive operations
+3. **Cache Checks**: Use `req.context` to cache expensive validation
+4. **Type Safety**: Type your user object for better IDE support
+5. **Test Thoroughly**: Write tests for complex access control logic
+6. **Document Intent**: Add comments explaining access rules
+7. **Audit Logs**: Track access control decisions for security review
+8. **Performance**: Avoid N+1 queries in access functions
+9. **Error Handling**: Access functions should not throw - return `false` instead
+10. **Tenant Hooks**: Auto-set tenant fields in `beforeChange` hooks
+
+## Advanced Patterns
+
+For advanced access control patterns including context-aware access, time-based restrictions, subscription-based access, factory functions, configuration templates, debugging tips, and performance optimization, see [ACCESS-CONTROL-ADVANCED.md](ACCESS-CONTROL-ADVANCED.md).
diff --git a/.claude/skills/payload/reference/ADAPTERS.md b/.claude/skills/payload/reference/ADAPTERS.md
new file mode 100644
index 0000000..2ca9de7
--- /dev/null
+++ b/.claude/skills/payload/reference/ADAPTERS.md
@@ -0,0 +1,334 @@
+# Payload CMS Adapters Reference
+
+Complete reference for database, storage, and email adapters.
+
+## Database Adapters
+
+### MongoDB
+
+```ts
+import { mongooseAdapter } from '@payloadcms/db-mongodb';
+
+export default buildConfig({
+ db: mongooseAdapter({
+ url: process.env.DATABASE_URL,
+ }),
+});
+```
+
+### Postgres
+
+```ts
+import { postgresAdapter } from '@payloadcms/db-postgres';
+
+export default buildConfig({
+ db: postgresAdapter({
+ pool: {
+ connectionString: process.env.DATABASE_URL,
+ },
+ push: false, // Don't auto-push schema changes
+ migrationDir: './migrations',
+ }),
+});
+```
+
+### SQLite
+
+```ts
+import { sqliteAdapter } from '@payloadcms/db-sqlite';
+
+export default buildConfig({
+ db: sqliteAdapter({
+ client: {
+ url: 'file:./payload.db',
+ },
+ transactionOptions: {}, // Enable transactions (disabled by default)
+ }),
+});
+```
+
+## Transactions
+
+Payload automatically uses transactions for all-or-nothing database operations. Pass `req` to include operations in the same transaction.
+
+```ts
+import type { CollectionAfterChangeHook } from 'payload';
+
+const afterChange: CollectionAfterChangeHook = async ({ req, doc }) => {
+ // This will be part of the same transaction
+ await req.payload.create({
+ req, // Pass req to use same transaction
+ collection: 'audit-log',
+ data: { action: 'created', docId: doc.id },
+ });
+};
+
+// Manual transaction control
+const transactionID = await payload.db.beginTransaction();
+try {
+ await payload.create({
+ collection: 'orders',
+ data: orderData,
+ req: { transactionID },
+ });
+ await payload.update({
+ collection: 'inventory',
+ id: itemId,
+ data: { stock: newStock },
+ req: { transactionID },
+ });
+ await payload.db.commitTransaction(transactionID);
+} catch (error) {
+ await payload.db.rollbackTransaction(transactionID);
+ throw error;
+}
+```
+
+**Note**: MongoDB requires replicaset for transactions. SQLite requires `transactionOptions: {}` to enable.
+
+### Threading req Through Operations
+
+**Critical**: When performing nested operations in hooks, always pass `req` to maintain transaction context. Failing to do so breaks atomicity and can cause partial updates.
+
+```ts
+import type { CollectionAfterChangeHook } from 'payload';
+
+// ✅ CORRECT: Thread req through nested operations
+const resaveChildren: CollectionAfterChangeHook = async ({
+ collection,
+ doc,
+ req,
+}) => {
+ // Find children - pass req
+ const children = await req.payload.find({
+ collection: 'children',
+ where: { parent: { equals: doc.id } },
+ req, // Maintains transaction context
+ });
+
+ // Update each child - pass req
+ for (const child of children.docs) {
+ await req.payload.update({
+ id: child.id,
+ collection: 'children',
+ data: { updatedField: 'value' },
+ req, // Same transaction as parent operation
+ });
+ }
+};
+
+// ❌ WRONG: Missing req breaks transaction
+const brokenHook: CollectionAfterChangeHook = async ({
+ collection,
+ doc,
+ req,
+}) => {
+ const children = await req.payload.find({
+ collection: 'children',
+ where: { parent: { equals: doc.id } },
+ // Missing req - separate transaction or no transaction
+ });
+
+ for (const child of children.docs) {
+ await req.payload.update({
+ id: child.id,
+ collection: 'children',
+ data: { updatedField: 'value' },
+ // Missing req - if parent operation fails, these updates persist
+ });
+ }
+};
+```
+
+**Why This Matters:**
+
+- **MongoDB (with replica sets)**: Creates atomic session across operations
+- **PostgreSQL**: All operations use same Drizzle transaction
+- **SQLite (with transactions enabled)**: Ensures rollback on errors
+- **Without req**: Each operation runs independently, breaking atomicity
+
+**When req is Required:**
+
+- All mutating operations in hooks (create, update, delete)
+- Operations that must succeed/fail together
+- When using MongoDB replica sets or Postgres
+- Any operation that relies on `req.context` or `req.user`
+
+**When req is Optional:**
+
+- Read-only lookups independent of current transaction
+- Operations with `disableTransaction: true`
+- Administrative operations with `overrideAccess: true`
+
+## Storage Adapters
+
+Available storage adapters:
+
+- **@payloadcms/storage-s3** - AWS S3
+- **@payloadcms/storage-azure** - Azure Blob Storage
+- **@payloadcms/storage-gcs** - Google Cloud Storage
+- **@payloadcms/storage-r2** - Cloudflare R2
+- **@payloadcms/storage-vercel-blob** - Vercel Blob
+- **@payloadcms/storage-uploadthing** - Uploadthing
+
+### AWS S3
+
+```ts
+import { s3Storage } from '@payloadcms/storage-s3';
+
+export default buildConfig({
+ plugins: [
+ s3Storage({
+ collections: {
+ media: true,
+ },
+ bucket: process.env.S3_BUCKET,
+ config: {
+ credentials: {
+ accessKeyId: process.env.S3_ACCESS_KEY_ID,
+ secretAccessKey: process.env.S3_SECRET_ACCESS_KEY,
+ },
+ region: process.env.S3_REGION,
+ },
+ }),
+ ],
+});
+```
+
+### Azure Blob Storage
+
+```ts
+import { azureStorage } from '@payloadcms/storage-azure';
+
+export default buildConfig({
+ plugins: [
+ azureStorage({
+ collections: {
+ media: true,
+ },
+ connectionString: process.env.AZURE_STORAGE_CONNECTION_STRING,
+ containerName: process.env.AZURE_STORAGE_CONTAINER_NAME,
+ }),
+ ],
+});
+```
+
+### Google Cloud Storage
+
+```ts
+import { gcsStorage } from '@payloadcms/storage-gcs';
+
+export default buildConfig({
+ plugins: [
+ gcsStorage({
+ collections: {
+ media: true,
+ },
+ bucket: process.env.GCS_BUCKET,
+ options: {
+ projectId: process.env.GCS_PROJECT_ID,
+ credentials: JSON.parse(process.env.GCS_CREDENTIALS),
+ },
+ }),
+ ],
+});
+```
+
+### Cloudflare R2
+
+```ts
+import { r2Storage } from '@payloadcms/storage-r2';
+
+export default buildConfig({
+ plugins: [
+ r2Storage({
+ collections: {
+ media: true,
+ },
+ bucket: process.env.R2_BUCKET,
+ config: {
+ credentials: {
+ accessKeyId: process.env.R2_ACCESS_KEY_ID,
+ secretAccessKey: process.env.R2_SECRET_ACCESS_KEY,
+ },
+ region: 'auto',
+ endpoint: process.env.R2_ENDPOINT,
+ },
+ }),
+ ],
+});
+```
+
+### Vercel Blob
+
+```ts
+import { vercelBlobStorage } from '@payloadcms/storage-vercel-blob';
+
+export default buildConfig({
+ plugins: [
+ vercelBlobStorage({
+ collections: {
+ media: true,
+ },
+ token: process.env.BLOB_READ_WRITE_TOKEN,
+ }),
+ ],
+});
+```
+
+### Uploadthing
+
+```ts
+import { uploadthingStorage } from '@payloadcms/storage-uploadthing';
+
+export default buildConfig({
+ plugins: [
+ uploadthingStorage({
+ collections: {
+ media: true,
+ },
+ options: {
+ token: process.env.UPLOADTHING_TOKEN,
+ acl: 'public-read',
+ },
+ }),
+ ],
+});
+```
+
+## Email Adapters
+
+### Nodemailer (SMTP)
+
+```ts
+import { nodemailerAdapter } from '@payloadcms/email-nodemailer';
+
+export default buildConfig({
+ email: nodemailerAdapter({
+ defaultFromAddress: 'noreply@example.com',
+ defaultFromName: 'My App',
+ transportOptions: {
+ host: process.env.SMTP_HOST,
+ port: 587,
+ auth: {
+ user: process.env.SMTP_USER,
+ pass: process.env.SMTP_PASS,
+ },
+ },
+ }),
+});
+```
+
+### Resend
+
+```ts
+import { resendAdapter } from '@payloadcms/email-resend';
+
+export default buildConfig({
+ email: resendAdapter({
+ defaultFromAddress: 'noreply@example.com',
+ defaultFromName: 'My App',
+ apiKey: process.env.RESEND_API_KEY,
+ }),
+});
+```
diff --git a/.claude/skills/payload/reference/ADVANCED.md b/.claude/skills/payload/reference/ADVANCED.md
new file mode 100644
index 0000000..6e508bf
--- /dev/null
+++ b/.claude/skills/payload/reference/ADVANCED.md
@@ -0,0 +1,390 @@
+# Payload CMS Advanced Features
+
+Complete reference for authentication, jobs, custom endpoints, components, plugins, and localization.
+
+## Authentication
+
+### Login
+
+```ts
+// REST API
+const response = await fetch('/api/users/login', {
+ method: 'POST',
+ headers: { 'Content-Type': 'application/json' },
+ body: JSON.stringify({
+ email: 'user@example.com',
+ password: 'password',
+ }),
+});
+
+// Local API
+const result = await payload.login({
+ collection: 'users',
+ data: {
+ email: 'user@example.com',
+ password: 'password',
+ },
+});
+```
+
+### Forgot Password
+
+```ts
+await payload.forgotPassword({
+ collection: 'users',
+ data: {
+ email: 'user@example.com',
+ },
+});
+```
+
+### Custom Strategy
+
+```ts
+import type { CollectionConfig, Strategy } from 'payload';
+
+const customStrategy: Strategy = {
+ name: 'custom',
+ authenticate: async ({ payload, headers }) => {
+ const token = headers.get('authorization')?.split(' ')[1];
+ if (!token) return { user: null };
+
+ const user = await verifyToken(token);
+ return { user };
+ },
+};
+
+export const Users: CollectionConfig = {
+ slug: 'users',
+ auth: {
+ strategies: [customStrategy],
+ },
+ fields: [],
+};
+```
+
+### API Keys
+
+```ts
+import type { CollectionConfig } from 'payload';
+
+export const APIKeys: CollectionConfig = {
+ slug: 'api-keys',
+ auth: {
+ disableLocalStrategy: true,
+ useAPIKey: true,
+ },
+ fields: [],
+};
+```
+
+## Jobs Queue
+
+Offload long-running or scheduled tasks to background workers.
+
+### Tasks
+
+```ts
+import type { TaskConfig } from 'payload';
+import { buildConfig } from 'payload';
+
+export default buildConfig({
+ jobs: {
+ tasks: [
+ {
+ slug: 'sendWelcomeEmail',
+ inputSchema: [
+ { name: 'userEmail', type: 'text', required: true },
+ { name: 'userName', type: 'text', required: true },
+ ],
+ outputSchema: [{ name: 'emailSent', type: 'checkbox', required: true }],
+ retries: 2, // Retry up to 2 times on failure
+ handler: async ({ input, req }) => {
+ await sendEmail({
+ to: input.userEmail,
+ subject: `Welcome ${input.userName}`,
+ });
+ return { output: { emailSent: true } };
+ },
+ } as TaskConfig<'sendWelcomeEmail'>,
+ ],
+ },
+});
+```
+
+### Queueing Jobs
+
+```ts
+// In a hook or endpoint
+await req.payload.jobs.queue({
+ task: 'sendWelcomeEmail',
+ input: {
+ userEmail: 'user@example.com',
+ userName: 'John',
+ },
+ waitUntil: new Date('2024-12-31'), // Optional: schedule for future
+});
+```
+
+### Workflows
+
+Multi-step jobs that run in sequence:
+
+```ts
+{
+ slug: 'onboardUser',
+ inputSchema: [{ name: 'userId', type: 'text' }],
+ handler: async ({ job, req }) => {
+ const results = await job.runInlineTask({
+ task: async ({ input }) => {
+ // Step 1: Send welcome email
+ await sendEmail(input.userId)
+ return { output: { emailSent: true } }
+ },
+ })
+
+ await job.runInlineTask({
+ task: async () => {
+ // Step 2: Create onboarding tasks
+ await createTasks()
+ return { output: { tasksCreated: true } }
+ },
+ })
+ },
+}
+```
+
+## Custom Endpoints
+
+Add custom REST API routes to collections, globals, or root config. See [ENDPOINTS.md](ENDPOINTS.md) for detailed patterns, authentication, helpers, and real-world examples.
+
+### Root Endpoints
+
+```ts
+import type { Endpoint } from 'payload';
+import { buildConfig } from 'payload';
+
+const helloEndpoint: Endpoint = {
+ path: '/hello',
+ method: 'get',
+ handler: () => {
+ return Response.json({ message: 'Hello!' });
+ },
+};
+
+const greetEndpoint: Endpoint = {
+ path: '/greet/:name',
+ method: 'get',
+ handler: (req) => {
+ return Response.json({
+ message: `Hello ${req.routeParams.name}!`,
+ });
+ },
+};
+
+export default buildConfig({
+ endpoints: [helloEndpoint, greetEndpoint],
+ collections: [],
+ secret: process.env.PAYLOAD_SECRET || '',
+});
+```
+
+### Collection Endpoints
+
+```ts
+import type { CollectionConfig, Endpoint } from 'payload';
+
+const featuredEndpoint: Endpoint = {
+ path: '/featured',
+ method: 'get',
+ handler: async (req) => {
+ const posts = await req.payload.find({
+ collection: 'posts',
+ where: { featured: { equals: true } },
+ });
+ return Response.json(posts);
+ },
+};
+
+export const Posts: CollectionConfig = {
+ slug: 'posts',
+ endpoints: [featuredEndpoint],
+ fields: [
+ { name: 'title', type: 'text' },
+ { name: 'featured', type: 'checkbox' },
+ ],
+};
+```
+
+## Custom Components
+
+### Field Component (Client)
+
+```tsx
+'use client';
+
+import type { TextFieldClientComponent } from 'payload';
+import { useField } from '@payloadcms/ui';
+
+export const CustomField: TextFieldClientComponent = () => {
+ const { value, setValue } = useField();
+
+ return (
+ setValue(e.target.value)} />
+ );
+};
+```
+
+### Custom View
+
+```tsx
+'use client';
+
+import { DefaultTemplate } from '@payloadcms/next/templates';
+
+export const CustomView = () => {
+ return (
+
+ Custom Dashboard
+ {/* Your content */}
+
+ );
+};
+```
+
+### Admin Config
+
+```ts
+import { buildConfig } from 'payload';
+
+export default buildConfig({
+ admin: {
+ components: {
+ beforeDashboard: ['/components/BeforeDashboard'],
+ beforeLogin: ['/components/BeforeLogin'],
+ views: {
+ custom: {
+ Component: '/views/Custom',
+ path: '/custom',
+ },
+ },
+ },
+ },
+ collections: [],
+ secret: process.env.PAYLOAD_SECRET || '',
+});
+```
+
+## Plugins
+
+### Available Plugins
+
+- **@payloadcms/plugin-seo** - SEO fields with meta title/description, Open Graph, preview generation
+- **@payloadcms/plugin-redirects** - Manage URL redirects (301/302) for Next.js apps
+- **@payloadcms/plugin-nested-docs** - Hierarchical document structures with breadcrumbs
+- **@payloadcms/plugin-form-builder** - Dynamic form builder with submissions and validation
+- **@payloadcms/plugin-search** - Full-text search integration (Algolia support)
+- **@payloadcms/plugin-stripe** - Stripe payments, subscriptions, webhooks
+- **@payloadcms/plugin-ecommerce** - Complete ecommerce solution (products, variants, carts, orders)
+- **@payloadcms/plugin-import-export** - Import/export data via CSV
+- **@payloadcms/plugin-multi-tenant** - Multi-tenancy with tenant isolation
+- **@payloadcms/plugin-sentry** - Sentry error tracking integration
+- **@payloadcms/plugin-mcp** - Model Context Protocol for AI integrations
+
+### Using Plugins
+
+```ts
+import { redirectsPlugin } from '@payloadcms/plugin-redirects';
+import { seoPlugin } from '@payloadcms/plugin-seo';
+import { buildConfig } from 'payload';
+
+export default buildConfig({
+ plugins: [
+ seoPlugin({
+ collections: ['posts', 'pages'],
+ }),
+ redirectsPlugin({
+ collections: ['pages'],
+ }),
+ ],
+ collections: [],
+ secret: process.env.PAYLOAD_SECRET || '',
+});
+```
+
+### Creating Plugins
+
+```ts
+import type { Config } from 'payload';
+
+interface PluginOptions {
+ enabled?: boolean;
+}
+
+export const myPlugin =
+ (options: PluginOptions) =>
+ (config: Config): Config => ({
+ ...config,
+ collections: [
+ ...(config.collections || []),
+ {
+ slug: 'plugin-collection',
+ fields: [{ name: 'title', type: 'text' }],
+ },
+ ],
+ onInit: async (payload) => {
+ if (config.onInit) await config.onInit(payload);
+ // Plugin initialization
+ },
+ });
+```
+
+## Localization
+
+```ts
+import type { Field, Payload } from 'payload';
+import { buildConfig } from 'payload';
+
+export default buildConfig({
+ localization: {
+ locales: ['en', 'es', 'de'],
+ defaultLocale: 'en',
+ fallback: true,
+ },
+ collections: [],
+ secret: process.env.PAYLOAD_SECRET || '',
+});
+
+// Localized field
+const localizedField: TextField = {
+ name: 'title',
+ type: 'text',
+ localized: true,
+};
+
+// Query with locale
+const posts = await payload.find({
+ collection: 'posts',
+ locale: 'es',
+});
+```
+
+## TypeScript Type References
+
+For complete TypeScript type definitions and signatures, reference these files from the Payload source:
+
+### Core Configuration Types
+
+- **[All Commonly-Used Types](https://github.com/payloadcms/payload/blob/main/packages/payload/src/index.ts)** - Check here first for commonly used types and interfaces. All core types are exported from this file.
+
+### Database & Adapters
+
+- **[Database Adapter Types](https://github.com/payloadcms/payload/blob/main/packages/payload/src/database/types.ts)** - Base adapter interface
+- **[MongoDB Adapter](https://github.com/payloadcms/payload/blob/main/packages/db-mongodb/src/index.ts)** - MongoDB-specific options
+- **[Postgres Adapter](https://github.com/payloadcms/payload/blob/main/packages/db-postgres/src/index.ts)** - Postgres-specific options
+
+### Rich Text & Plugins
+
+- **[Lexical Types](https://github.com/payloadcms/payload/blob/main/packages/richtext-lexical/src/exports/server/index.ts)** - Lexical editor configuration
+
+When users need detailed type information, fetch these URLs to provide complete signatures and optional parameters.
diff --git a/.claude/skills/payload/reference/COLLECTIONS.md b/.claude/skills/payload/reference/COLLECTIONS.md
new file mode 100644
index 0000000..b52a2d0
--- /dev/null
+++ b/.claude/skills/payload/reference/COLLECTIONS.md
@@ -0,0 +1,303 @@
+# Payload CMS Collections Reference
+
+Complete reference for collection configurations and patterns.
+
+## Basic Collection
+
+```ts
+import type { CollectionConfig } from 'payload';
+
+export const Posts: CollectionConfig = {
+ slug: 'posts',
+ labels: {
+ singular: 'Post',
+ plural: 'Posts',
+ },
+ admin: {
+ useAsTitle: 'title',
+ defaultColumns: ['title', 'author', 'status', 'createdAt'],
+ group: 'Content', // Organize in admin sidebar
+ description: 'Blog posts and articles',
+ listSearchableFields: ['title', 'slug'],
+ },
+ fields: [
+ {
+ name: 'title',
+ type: 'text',
+ required: true,
+ index: true,
+ },
+ {
+ name: 'slug',
+ type: 'text',
+ unique: true,
+ index: true,
+ admin: { position: 'sidebar' },
+ },
+ {
+ name: 'status',
+ type: 'select',
+ options: ['draft', 'published'],
+ defaultValue: 'draft',
+ },
+ ],
+ defaultSort: '-createdAt',
+ timestamps: true,
+};
+```
+
+## Auth Collection
+
+```ts
+export const Users: CollectionConfig = {
+ slug: 'users',
+ auth: {
+ tokenExpiration: 7200, // 2 hours
+ verify: true,
+ maxLoginAttempts: 5,
+ lockTime: 600000, // 10 minutes
+ useAPIKey: true,
+ },
+ admin: {
+ useAsTitle: 'email',
+ },
+ fields: [
+ {
+ name: 'roles',
+ type: 'select',
+ hasMany: true,
+ options: ['admin', 'editor', 'user'],
+ required: true,
+ defaultValue: ['user'],
+ saveToJWT: true,
+ },
+ {
+ name: 'name',
+ type: 'text',
+ required: true,
+ },
+ ],
+};
+```
+
+## Upload Collection
+
+```ts
+export const Media: CollectionConfig = {
+ slug: 'media',
+ upload: {
+ staticDir: 'media',
+ mimeTypes: ['image/*'],
+ imageSizes: [
+ {
+ name: 'thumbnail',
+ width: 400,
+ height: 300,
+ position: 'centre',
+ },
+ {
+ name: 'card',
+ width: 768,
+ height: 1024,
+ },
+ ],
+ adminThumbnail: 'thumbnail',
+ focalPoint: true,
+ crop: true,
+ },
+ access: {
+ read: () => true,
+ },
+ fields: [
+ {
+ name: 'alt',
+ type: 'text',
+ required: true,
+ },
+ {
+ name: 'caption',
+ type: 'text',
+ localized: true,
+ },
+ ],
+};
+```
+
+## Live Preview
+
+Enable real-time content preview during editing.
+
+```ts
+import type { CollectionConfig } from 'payload';
+
+const generatePreviewPath = ({
+ slug,
+ collection,
+ req,
+}: {
+ slug: string;
+ collection: string;
+ req: any;
+}) => {
+ const baseUrl = process.env.NEXT_PUBLIC_SERVER_URL;
+ return `${baseUrl}/api/preview?slug=${slug}&collection=${collection}`;
+};
+
+export const Pages: CollectionConfig = {
+ slug: 'pages',
+ admin: {
+ useAsTitle: 'title',
+ // Live preview during editing
+ livePreview: {
+ url: ({ data, req }) =>
+ generatePreviewPath({
+ slug: data?.slug as string,
+ collection: 'pages',
+ req,
+ }),
+ },
+ // Static preview button
+ preview: (data, { req }) =>
+ generatePreviewPath({
+ slug: data?.slug as string,
+ collection: 'pages',
+ req,
+ }),
+ },
+ fields: [
+ { name: 'title', type: 'text' },
+ { name: 'slug', type: 'text' },
+ ],
+};
+```
+
+## Versioning & Drafts
+
+Payload maintains version history and supports draft/publish workflows.
+
+```ts
+import type { CollectionConfig } from 'payload';
+
+// Basic versioning (audit log only)
+export const Users: CollectionConfig = {
+ slug: 'users',
+ versions: true, // or { maxPerDoc: 100 }
+ fields: [{ name: 'name', type: 'text' }],
+};
+
+// Drafts enabled (draft/publish workflow)
+export const Posts: CollectionConfig = {
+ slug: 'posts',
+ versions: {
+ drafts: true, // Enables _status field
+ maxPerDoc: 50,
+ },
+ fields: [{ name: 'title', type: 'text' }],
+};
+
+// Full configuration with autosave and scheduled publish
+export const Pages: CollectionConfig = {
+ slug: 'pages',
+ versions: {
+ drafts: {
+ autosave: true, // Auto-save while editing
+ schedulePublish: true, // Schedule future publish/unpublish
+ validate: false, // Don't validate drafts (default)
+ },
+ maxPerDoc: 100, // Keep last 100 versions (0 = unlimited)
+ },
+ fields: [{ name: 'title', type: 'text' }],
+};
+```
+
+### Draft API Usage
+
+```ts
+// Create draft
+await payload.create({
+ collection: 'posts',
+ data: { title: 'Draft Post' },
+ draft: true, // Saves as draft, skips required field validation
+});
+
+// Update as draft
+await payload.update({
+ collection: 'posts',
+ id: '123',
+ data: { title: 'Updated Draft' },
+ draft: true,
+});
+
+// Read with drafts (returns newest draft if available)
+const post = await payload.findByID({
+ collection: 'posts',
+ id: '123',
+ draft: true, // Returns draft version if exists
+});
+
+// Query only published (REST API)
+// GET /api/posts (returns only _status: 'published')
+
+// Access control for drafts
+export const Posts: CollectionConfig = {
+ slug: 'posts',
+ versions: { drafts: true },
+ access: {
+ read: ({ req: { user } }) => {
+ // Public can only see published
+ if (!user) return { _status: { equals: 'published' } };
+ // Authenticated can see all
+ return true;
+ },
+ },
+ fields: [{ name: 'title', type: 'text' }],
+};
+```
+
+### Document Status
+
+The `_status` field is auto-injected when drafts are enabled:
+
+- `draft` - Never published
+- `published` - Published with no newer drafts
+- `changed` - Published but has newer unpublished drafts
+
+## Globals
+
+Globals are single-instance documents (not collections).
+
+```ts
+import type { GlobalConfig } from 'payload';
+
+export const Header: GlobalConfig = {
+ slug: 'header',
+ label: 'Header',
+ admin: {
+ group: 'Settings',
+ },
+ fields: [
+ {
+ name: 'logo',
+ type: 'upload',
+ relationTo: 'media',
+ required: true,
+ },
+ {
+ name: 'nav',
+ type: 'array',
+ maxRows: 8,
+ fields: [
+ {
+ name: 'link',
+ type: 'relationship',
+ relationTo: 'pages',
+ },
+ {
+ name: 'label',
+ type: 'text',
+ },
+ ],
+ },
+ ],
+};
+```
diff --git a/.claude/skills/payload/reference/ENDPOINTS.md b/.claude/skills/payload/reference/ENDPOINTS.md
new file mode 100644
index 0000000..0769629
--- /dev/null
+++ b/.claude/skills/payload/reference/ENDPOINTS.md
@@ -0,0 +1,648 @@
+# Payload Custom API Endpoints Reference
+
+Custom REST API endpoints extend Payload's auto-generated CRUD operations with custom logic, authentication flows, webhooks, and integrations.
+
+## Quick Reference
+
+### Endpoint Configuration
+
+| Property | Type | Description |
+| --------- | ------------------------------------------------- | --------------------------------------------------------------- |
+| `path` | `string` | Route path after collection/global slug (e.g., `/:id/tracking`) |
+| `method` | `'get' \| 'post' \| 'put' \| 'patch' \| 'delete'` | HTTP method (lowercase) |
+| `handler` | `(req: PayloadRequest) => Promise` | Async function returning Web API Response |
+| `custom` | `Record` | Extension point for plugins/metadata |
+
+### Request Context
+
+| Property | Type | Description |
+| ----------------- | ----------------------- | ------------------------------------------------------ |
+| `req.user` | `User \| null` | Authenticated user (null if not authenticated) |
+| `req.payload` | `Payload` | Payload instance for operations (find, create...) |
+| `req.routeParams` | `Record` | Path parameters (e.g., `:id`) |
+| `req.url` | `string` | Full request URL |
+| `req.method` | `string` | HTTP method |
+| `req.headers` | `Headers` | Request headers |
+| `req.json()` | `() => Promise` | Parse JSON body |
+| `req.text()` | `() => Promise` | Read body as text |
+| `req.data` | `any` | Parsed body (after `addDataAndFileToRequest()`) |
+| `req.file` | `File` | Uploaded file (after `addDataAndFileToRequest()`) |
+| `req.locale` | `string` | Request locale (after `addLocalesToRequestFromData()`) |
+| `req.i18n` | `I18n` | i18n instance |
+| `req.t` | `TFunction` | Translation function |
+
+## Common Patterns
+
+### Authentication Check
+
+Custom endpoints are **not authenticated by default**. Check `req.user` to enforce authentication.
+
+```ts
+import { APIError } from 'payload';
+
+export const authenticatedEndpoint = {
+ path: '/protected',
+ method: 'get',
+ handler: async (req) => {
+ if (!req.user) {
+ throw new APIError('Unauthorized', 401);
+ }
+
+ // User is authenticated
+ return Response.json({ message: 'Access granted' });
+ },
+};
+```
+
+### Using Payload Operations
+
+Use `req.payload` for database operations with access control and hooks.
+
+```ts
+export const getRelatedPosts = {
+ path: '/:id/related',
+ method: 'get',
+ handler: async (req) => {
+ const { id } = req.routeParams;
+
+ // Find related posts
+ const posts = await req.payload.find({
+ collection: 'posts',
+ where: {
+ category: {
+ equals: id,
+ },
+ },
+ limit: 5,
+ sort: '-createdAt',
+ });
+
+ return Response.json(posts);
+ },
+};
+```
+
+### Route Parameters
+
+Access path parameters via `req.routeParams`.
+
+```ts
+export const getTrackingEndpoint = {
+ path: '/:id/tracking',
+ method: 'get',
+ handler: async (req) => {
+ const orderId = req.routeParams.id;
+
+ const tracking = await getTrackingInfo(orderId);
+
+ if (!tracking) {
+ return Response.json({ error: 'not found' }, { status: 404 });
+ }
+
+ return Response.json(tracking);
+ },
+};
+```
+
+### Request Body Handling
+
+**Option 1: Manual JSON parsing**
+
+```ts
+export const createEndpoint = {
+ path: '/create',
+ method: 'post',
+ handler: async (req) => {
+ const data = await req.json();
+
+ const result = await req.payload.create({
+ collection: 'posts',
+ data,
+ });
+
+ return Response.json(result);
+ },
+};
+```
+
+**Option 2: Using helper (handles JSON + files)**
+
+```ts
+import { addDataAndFileToRequest } from 'payload';
+
+export const uploadEndpoint = {
+ path: '/upload',
+ method: 'post',
+ handler: async (req) => {
+ await addDataAndFileToRequest(req);
+
+ // req.data now contains parsed body
+ // req.file contains uploaded file (if multipart)
+
+ const result = await req.payload.create({
+ collection: 'media',
+ data: req.data,
+ file: req.file,
+ });
+
+ return Response.json(result);
+ },
+};
+```
+
+### CORS Headers
+
+Use `headersWithCors` helper to apply config CORS settings.
+
+```ts
+import { headersWithCors } from 'payload';
+
+export const corsEndpoint = {
+ path: '/public-data',
+ method: 'get',
+ handler: async (req) => {
+ const data = await fetchPublicData();
+
+ return Response.json(data, {
+ headers: headersWithCors({
+ headers: new Headers(),
+ req,
+ }),
+ });
+ },
+};
+```
+
+### Error Handling
+
+Throw `APIError` with status codes for proper error responses.
+
+```ts
+import { APIError } from 'payload';
+
+export const validateEndpoint = {
+ path: '/validate',
+ method: 'post',
+ handler: async (req) => {
+ const data = await req.json();
+
+ if (!data.email) {
+ throw new APIError('Email is required', 400);
+ }
+
+ // Validation passed
+ return Response.json({ valid: true });
+ },
+};
+```
+
+### Query Parameters
+
+Extract query params from URL.
+
+```ts
+export const searchEndpoint = {
+ path: '/search',
+ method: 'get',
+ handler: async (req) => {
+ const url = new URL(req.url);
+ const query = url.searchParams.get('q');
+ const limit = parseInt(url.searchParams.get('limit') || '10');
+
+ const results = await req.payload.find({
+ collection: 'posts',
+ where: {
+ title: {
+ contains: query,
+ },
+ },
+ limit,
+ });
+
+ return Response.json(results);
+ },
+};
+```
+
+## Helper Functions
+
+### addDataAndFileToRequest
+
+Parses request body and attaches to `req.data` and `req.file`.
+
+```ts
+import { addDataAndFileToRequest } from 'payload';
+
+export const endpoint = {
+ path: '/process',
+ method: 'post',
+ handler: async (req) => {
+ await addDataAndFileToRequest(req);
+
+ // req.data: parsed JSON or form data
+ // req.file: uploaded file (if multipart)
+
+ console.log(req.data); // { title: 'My Post' }
+ console.log(req.file); // File object or undefined
+ },
+};
+```
+
+**Handles:**
+
+- JSON bodies (`Content-Type: application/json`)
+- Form data (`Content-Type: multipart/form-data`)
+- File uploads
+
+### addLocalesToRequestFromData
+
+Extracts locale from request data and validates against config.
+
+```ts
+import { addLocalesToRequestFromData } from 'payload';
+
+export const endpoint = {
+ path: '/translate',
+ method: 'post',
+ handler: async (req) => {
+ await addLocalesToRequestFromData(req);
+
+ // req.locale: validated locale string
+ // req.fallbackLocale: fallback locale string
+
+ const result = await req.payload.find({
+ collection: 'posts',
+ locale: req.locale,
+ });
+
+ return Response.json(result);
+ },
+};
+```
+
+### headersWithCors
+
+Applies CORS headers from Payload config.
+
+```ts
+import { headersWithCors } from 'payload';
+
+export const endpoint = {
+ path: '/data',
+ method: 'get',
+ handler: async (req) => {
+ const data = { message: 'Hello' };
+
+ return Response.json(data, {
+ headers: headersWithCors({
+ headers: new Headers({
+ 'Cache-Control': 'public, max-age=3600',
+ }),
+ req,
+ }),
+ });
+ },
+};
+```
+
+## Real-World Examples
+
+### Multi-Tenant Login Endpoint
+
+From `examples/multi-tenant`:
+
+```ts
+import { APIError, generatePayloadCookie, headersWithCors } from 'payload';
+
+export const externalUsersLogin = {
+ path: '/login-external',
+ method: 'post',
+ handler: async (req) => {
+ const { email, password, tenant } = await req.json();
+
+ if (!email || !password || !tenant) {
+ throw new APIError('Missing credentials', 400);
+ }
+
+ // Find user with tenant constraint
+ const userQuery = await req.payload.find({
+ collection: 'users',
+ where: {
+ and: [
+ { email: { equals: email } },
+ {
+ or: [
+ { tenants: { equals: tenant } },
+ { 'tenants.tenant': { equals: tenant } },
+ ],
+ },
+ ],
+ },
+ });
+
+ if (!userQuery.docs.length) {
+ throw new APIError('Invalid credentials', 401);
+ }
+
+ // Authenticate user
+ const result = await req.payload.login({
+ collection: 'users',
+ data: { email, password },
+ });
+
+ return Response.json(result, {
+ headers: headersWithCors({
+ headers: new Headers({
+ 'Set-Cookie': generatePayloadCookie({
+ collectionAuthConfig: req.payload.config.collections.find(
+ (c) => c.slug === 'users',
+ ).auth,
+ cookiePrefix: req.payload.config.cookiePrefix,
+ token: result.token,
+ }),
+ }),
+ req,
+ }),
+ });
+ },
+};
+```
+
+### Webhook Handler (Stripe)
+
+From `packages/plugin-ecommerce`:
+
+```ts
+export const webhookEndpoint = {
+ path: '/webhooks',
+ method: 'post',
+ handler: async (req) => {
+ const body = await req.text();
+ const signature = req.headers.get('stripe-signature');
+
+ try {
+ const event = stripe.webhooks.constructEvent(
+ body,
+ signature,
+ webhookSecret,
+ );
+
+ // Process event
+ switch (event.type) {
+ case 'payment_intent.succeeded':
+ await handlePaymentSuccess(req.payload, event.data.object);
+ break;
+ case 'payment_intent.failed':
+ await handlePaymentFailure(req.payload, event.data.object);
+ break;
+ }
+
+ return Response.json({ received: true });
+ } catch (err) {
+ req.payload.logger.error(`Webhook error: ${err.message}`);
+ return Response.json({ error: err.message }, { status: 400 });
+ }
+ },
+};
+```
+
+### Data Preview Endpoint
+
+From `packages/plugin-import-export`:
+
+```ts
+import { addDataAndFileToRequest } from 'payload';
+
+export const previewEndpoint = {
+ path: '/preview',
+ method: 'post',
+ handler: async (req) => {
+ if (!req.user) {
+ throw new APIError('Unauthorized', 401);
+ }
+
+ await addDataAndFileToRequest(req);
+
+ const { collection, where, limit = 10 } = req.data;
+
+ // Validate collection exists
+ const collectionConfig = req.payload.config.collections.find(
+ (c) => c.slug === collection,
+ );
+ if (!collectionConfig) {
+ throw new APIError('Collection not found', 404);
+ }
+
+ // Preview data
+ const results = await req.payload.find({
+ collection,
+ where,
+ limit,
+ depth: 0,
+ });
+
+ return Response.json({
+ docs: results.docs,
+ totalDocs: results.totalDocs,
+ fields: collectionConfig.fields,
+ });
+ },
+};
+```
+
+### Reindex Action Endpoint
+
+From `packages/plugin-search`:
+
+```ts
+export const reindexEndpoint = (pluginConfig) => ({
+ path: '/reindex',
+ method: 'post',
+ handler: async (req) => {
+ if (!req.user) {
+ throw new APIError('Unauthorized', 401);
+ }
+
+ const { collection } = req.routeParams;
+
+ // Reindex collection
+ const result = await reindexCollection(
+ req.payload,
+ collection,
+ pluginConfig,
+ );
+
+ return Response.json({
+ message: `Reindexed ${result.count} documents`,
+ count: result.count,
+ });
+ },
+});
+```
+
+## Endpoint Placement
+
+### Collection Endpoints
+
+Mounted at `/api/{collection-slug}/{path}`.
+
+```ts
+import type { CollectionConfig } from 'payload';
+
+export const Orders: CollectionConfig = {
+ slug: 'orders',
+ fields: [
+ /* ... */
+ ],
+ endpoints: [
+ {
+ path: '/:id/tracking',
+ method: 'get',
+ handler: async (req) => {
+ // Available at: /api/orders/:id/tracking
+ const orderId = req.routeParams.id;
+ return Response.json({ orderId });
+ },
+ },
+ ],
+};
+```
+
+### Global Endpoints
+
+Mounted at `/api/globals/{global-slug}/{path}`.
+
+```ts
+import type { GlobalConfig } from 'payload';
+
+export const Settings: GlobalConfig = {
+ slug: 'settings',
+ fields: [
+ /* ... */
+ ],
+ endpoints: [
+ {
+ path: '/clear-cache',
+ method: 'post',
+ handler: async (req) => {
+ // Available at: /api/globals/settings/clear-cache
+ await clearCache();
+ return Response.json({ message: 'Cache cleared' });
+ },
+ },
+ ],
+};
+```
+
+## Advanced Patterns
+
+### Factory Functions
+
+Create reusable endpoint factories for plugins.
+
+```ts
+export const createWebhookEndpoint = (config) => ({
+ path: '/webhook',
+ method: 'post',
+ handler: async (req) => {
+ const signature = req.headers.get('x-webhook-signature');
+
+ if (!verifySignature(signature, config.secret)) {
+ throw new APIError('Invalid signature', 401);
+ }
+
+ const data = await req.json();
+ await processWebhook(req.payload, data, config);
+
+ return Response.json({ received: true });
+ },
+});
+```
+
+### Conditional Endpoints
+
+Add endpoints based on config options.
+
+```ts
+export const MyCollection: CollectionConfig = {
+ slug: 'posts',
+ fields: [
+ /* ... */
+ ],
+ endpoints: [
+ // Always included
+ {
+ path: '/public',
+ method: 'get',
+ handler: async (req) => Response.json({ data: [] }),
+ },
+ // Conditionally included
+ ...(process.env.ENABLE_ANALYTICS
+ ? [
+ {
+ path: '/analytics',
+ method: 'get',
+ handler: async (req) => Response.json({ analytics: [] }),
+ },
+ ]
+ : []),
+ ],
+};
+```
+
+### OpenAPI Documentation
+
+Use `custom` property for API documentation metadata.
+
+```ts
+export const endpoint = {
+ path: '/search',
+ method: 'get',
+ handler: async (req) => {
+ // Handler implementation
+ },
+ custom: {
+ openapi: {
+ summary: 'Search posts',
+ parameters: [
+ {
+ name: 'q',
+ in: 'query',
+ required: true,
+ schema: { type: 'string' },
+ },
+ ],
+ responses: {
+ 200: {
+ description: 'Search results',
+ content: {
+ 'application/json': {
+ schema: { type: 'array' },
+ },
+ },
+ },
+ },
+ },
+ },
+};
+```
+
+## Best Practices
+
+1. **Always check authentication** - Custom endpoints are not authenticated by default
+2. **Use `req.payload` for operations** - Ensures access control and hooks execute
+3. **Use helpers for common tasks** - `addDataAndFileToRequest`, `headersWithCors`, etc.
+4. **Throw `APIError` for errors** - Provides consistent error responses
+5. **Return Web API `Response`** - Use `Response.json()` for consistent responses
+6. **Validate input** - Check required fields, validate types
+7. **Handle CORS** - Use `headersWithCors` for cross-origin requests
+8. **Log errors** - Use `req.payload.logger` for debugging
+9. **Document with `custom`** - Add OpenAPI metadata for API docs
+10. **Factory pattern for reuse** - Create endpoint factories for plugins
+
+## Resources
+
+- REST API Overview:
+- Custom Endpoints:
+- Access Control:
+- Local API:
diff --git a/.claude/skills/payload/reference/FIELD-TYPE-GUARDS.md b/.claude/skills/payload/reference/FIELD-TYPE-GUARDS.md
new file mode 100644
index 0000000..52d2f2c
--- /dev/null
+++ b/.claude/skills/payload/reference/FIELD-TYPE-GUARDS.md
@@ -0,0 +1,559 @@
+# Payload Field Type Guards Reference
+
+Complete reference with detailed examples and patterns. See [FIELDS.md](FIELDS.md#field-type-guards) for quick reference table of all guards.
+
+## Structural Guards
+
+### fieldHasSubFields
+
+Checks if field contains nested fields (group, array, row, or collapsible).
+
+```ts
+import type { Field } from 'payload';
+import { fieldHasSubFields } from 'payload';
+
+function traverseFields(fields: Field[]): void {
+ fields.forEach((field) => {
+ if (fieldHasSubFields(field)) {
+ // Safe to access field.fields
+ traverseFields(field.fields);
+ }
+ });
+}
+```
+
+**Signature:**
+
+```ts
+fieldHasSubFields(
+ field: TField
+): field is TField & (FieldWithSubFieldsClient | FieldWithSubFields)
+```
+
+**Common Pattern - Exclude Arrays:**
+
+```ts
+if (fieldHasSubFields(field) && !fieldIsArrayType(field)) {
+ // Groups, rows, collapsibles only (not arrays)
+}
+```
+
+### fieldIsArrayType
+
+Checks if field type is `'array'`.
+
+```ts
+import { fieldIsArrayType } from 'payload';
+
+if (fieldIsArrayType(field)) {
+ // field.type === 'array'
+ console.log(`Min rows: ${field.minRows}`);
+ console.log(`Max rows: ${field.maxRows}`);
+}
+```
+
+**Signature:**
+
+```ts
+fieldIsArrayType(
+ field: TField
+): field is TField & (ArrayFieldClient | ArrayField)
+```
+
+### fieldIsBlockType
+
+Checks if field type is `'blocks'`.
+
+```ts
+import { fieldIsBlockType } from 'payload';
+
+if (fieldIsBlockType(field)) {
+ // field.type === 'blocks'
+ field.blocks.forEach((block) => {
+ console.log(`Block: ${block.slug}`);
+ });
+}
+```
+
+**Signature:**
+
+```ts
+fieldIsBlockType(
+ field: TField
+): field is TField & (BlocksFieldClient | BlocksField)
+```
+
+**Common Pattern - Distinguish Containers:**
+
+```ts
+if (fieldIsArrayType(field)) {
+ // Handle array rows
+} else if (fieldIsBlockType(field)) {
+ // Handle block types
+}
+```
+
+### fieldIsGroupType
+
+Checks if field type is `'group'`.
+
+```ts
+import { fieldIsGroupType } from 'payload';
+
+if (fieldIsGroupType(field)) {
+ // field.type === 'group'
+ console.log(`Interface: ${field.interfaceName}`);
+}
+```
+
+**Signature:**
+
+```ts
+fieldIsGroupType(
+ field: TField
+): field is TField & (GroupFieldClient | GroupField)
+```
+
+## Capability Guards
+
+### fieldSupportsMany
+
+Checks if field can have multiple values (select, relationship, or upload with `hasMany`).
+
+```ts
+import { fieldSupportsMany } from 'payload';
+
+if (fieldSupportsMany(field)) {
+ // field.type is 'select' | 'relationship' | 'upload'
+ // Safe to check field.hasMany
+ if (field.hasMany) {
+ console.log('Field accepts multiple values');
+ }
+}
+```
+
+**Signature:**
+
+```ts
+fieldSupportsMany(
+ field: TField
+): field is TField & (FieldWithManyClient | FieldWithMany)
+```
+
+### fieldHasMaxDepth
+
+Checks if field is relationship/upload/join with numeric `maxDepth` property.
+
+```ts
+import { fieldHasMaxDepth } from 'payload';
+
+if (fieldHasMaxDepth(field)) {
+ // field.type is 'upload' | 'relationship' | 'join'
+ // AND field.maxDepth is number
+ const remainingDepth = field.maxDepth - currentDepth;
+}
+```
+
+**Signature:**
+
+```ts
+fieldHasMaxDepth(
+ field: TField
+): field is TField & (FieldWithMaxDepthClient | FieldWithMaxDepth)
+```
+
+### fieldShouldBeLocalized
+
+Checks if field needs localization handling (accounts for parent localization).
+
+```ts
+import { fieldShouldBeLocalized } from 'payload';
+
+function processField(field: Field, parentIsLocalized: boolean) {
+ if (fieldShouldBeLocalized({ field, parentIsLocalized })) {
+ // Create locale-specific table or index
+ }
+}
+```
+
+**Signature:**
+
+```ts
+fieldShouldBeLocalized({
+ field,
+ parentIsLocalized,
+}: {
+ field: ClientField | ClientTab | Field | Tab
+ parentIsLocalized: boolean
+}): boolean
+```
+
+```ts
+// Accounts for parent localization
+if (fieldShouldBeLocalized({ field, parentIsLocalized: false })) {
+ /* ... */
+}
+```
+
+### fieldIsVirtual
+
+Checks if field is virtual (computed or virtual relationship).
+
+```ts
+import { fieldIsVirtual } from 'payload';
+
+if (fieldIsVirtual(field)) {
+ // field.virtual is truthy
+ if (typeof field.virtual === 'string') {
+ // Virtual relationship path
+ console.log(`Virtual path: ${field.virtual}`);
+ } else {
+ // Computed virtual field (uses hooks)
+ }
+}
+```
+
+**Signature:**
+
+```ts
+fieldIsVirtual(field: Field | Tab): boolean
+```
+
+## Data Guards
+
+### fieldAffectsData
+
+**Most commonly used guard.** Checks if field stores data (has name and is not UI-only).
+
+```ts
+import { fieldAffectsData } from 'payload';
+
+function generateSchema(fields: Field[]) {
+ fields.forEach((field) => {
+ if (fieldAffectsData(field)) {
+ // Safe to access field.name
+ schema[field.name] = getFieldType(field);
+ }
+ });
+}
+```
+
+**Signature:**
+
+```ts
+fieldAffectsData(
+ field: TField
+): field is TField & (FieldAffectingDataClient | FieldAffectingData)
+```
+
+**Pattern - Data Fields Only:**
+
+```ts
+const dataFields = fields.filter(fieldAffectsData);
+```
+
+### fieldIsPresentationalOnly
+
+Checks if field is UI-only (type `'ui'`).
+
+```ts
+import { fieldIsPresentationalOnly } from 'payload';
+
+if (fieldIsPresentationalOnly(field)) {
+ // field.type === 'ui'
+ // Skip in data operations, GraphQL schema, etc.
+ return;
+}
+```
+
+**Signature:**
+
+```ts
+fieldIsPresentationalOnly(
+ field: TField
+): field is TField & (UIFieldClient | UIField)
+```
+
+### fieldIsID
+
+Checks if field name is exactly `'id'`.
+
+```ts
+import { fieldIsID } from 'payload';
+
+if (fieldIsID(field)) {
+ // field.name === 'id'
+ // Special handling for ID field
+}
+```
+
+**Signature:**
+
+```ts
+fieldIsID(
+ field: TField
+): field is { name: 'id' } & TField
+```
+
+### fieldIsHiddenOrDisabled
+
+Checks if field is hidden or admin-disabled.
+
+```ts
+import { fieldIsHiddenOrDisabled } from 'payload';
+
+const visibleFields = fields.filter((field) => !fieldIsHiddenOrDisabled(field));
+```
+
+**Signature:**
+
+```ts
+fieldIsHiddenOrDisabled(
+ field: TField
+): field is { admin: { hidden: true } } & TField
+```
+
+## Layout Guards
+
+### fieldIsSidebar
+
+Checks if field is positioned in sidebar.
+
+```ts
+import { fieldIsSidebar } from 'payload';
+
+const [mainFields, sidebarFields] = fields.reduce(
+ ([main, sidebar], field) => {
+ if (fieldIsSidebar(field)) {
+ return [main, [...sidebar, field]];
+ }
+ return [[...main, field], sidebar];
+ },
+ [[], []],
+);
+```
+
+**Signature:**
+
+```ts
+fieldIsSidebar(
+ field: TField
+): field is { admin: { position: 'sidebar' } } & TField
+```
+
+## Tab & Group Guards
+
+### tabHasName
+
+Checks if tab is named (stores data under tab name).
+
+```ts
+import { tabHasName } from 'payload';
+
+tabs.forEach((tab) => {
+ if (tabHasName(tab)) {
+ // tab.name exists
+ dataPath.push(tab.name);
+ }
+ // Process tab.fields
+});
+```
+
+**Signature:**
+
+```ts
+tabHasName(
+ tab: TField
+): tab is NamedTab & TField
+```
+
+### groupHasName
+
+Checks if group is named (stores data under group name).
+
+```ts
+import { groupHasName } from 'payload';
+
+if (groupHasName(group)) {
+ // group.name exists
+ return data[group.name];
+}
+```
+
+**Signature:**
+
+```ts
+groupHasName(group: Partial): group is NamedGroupFieldClient
+```
+
+## Option & Value Guards
+
+### optionIsObject
+
+Checks if option is object format `{label, value}` vs string.
+
+```ts
+import { optionIsObject } from 'payload';
+
+field.options.forEach((option) => {
+ if (optionIsObject(option)) {
+ console.log(`${option.label}: ${option.value}`);
+ } else {
+ console.log(option); // string value
+ }
+});
+```
+
+**Signature:**
+
+```ts
+optionIsObject(option: Option): option is OptionObject
+```
+
+### optionsAreObjects
+
+Checks if entire options array contains objects.
+
+```ts
+import { optionsAreObjects } from 'payload';
+
+if (optionsAreObjects(field.options)) {
+ // All options are OptionObject[]
+ const labels = field.options.map((opt) => opt.label);
+}
+```
+
+**Signature:**
+
+```ts
+optionsAreObjects(options: Option[]): options is OptionObject[]
+```
+
+### optionIsValue
+
+Checks if option is string value (not object).
+
+```ts
+import { optionIsValue } from 'payload';
+
+if (optionIsValue(option)) {
+ // option is string
+ const value = option;
+}
+```
+
+**Signature:**
+
+```ts
+optionIsValue(option: Option): option is string
+```
+
+### valueIsValueWithRelation
+
+Checks if relationship value is polymorphic format `{relationTo, value}`.
+
+```ts
+import { valueIsValueWithRelation } from 'payload';
+
+if (valueIsValueWithRelation(fieldValue)) {
+ // fieldValue.relationTo exists
+ // fieldValue.value exists
+ console.log(`Related to ${fieldValue.relationTo}: ${fieldValue.value}`);
+}
+```
+
+**Signature:**
+
+```ts
+valueIsValueWithRelation(value: unknown): value is ValueWithRelation
+```
+
+## Common Patterns
+
+### Recursive Field Traversal
+
+```ts
+import { fieldAffectsData, fieldHasSubFields } from 'payload';
+
+function traverseFields(fields: Field[], callback: (field: Field) => void) {
+ fields.forEach((field) => {
+ if (fieldAffectsData(field)) {
+ callback(field);
+ }
+
+ if (fieldHasSubFields(field)) {
+ traverseFields(field.fields, callback);
+ }
+ });
+}
+```
+
+### Filter Data-Bearing Fields
+
+```ts
+import {
+ fieldAffectsData,
+ fieldIsHiddenOrDisabled,
+ fieldIsPresentationalOnly,
+} from 'payload';
+
+const dataFields = fields.filter(
+ (field) =>
+ fieldAffectsData(field) &&
+ !fieldIsPresentationalOnly(field) &&
+ !fieldIsHiddenOrDisabled(field),
+);
+```
+
+### Container Type Switching
+
+```ts
+import { fieldHasSubFields, fieldIsArrayType, fieldIsBlockType } from 'payload';
+
+if (fieldIsArrayType(field)) {
+ // Handle array-specific logic
+} else if (fieldIsBlockType(field)) {
+ // Handle blocks-specific logic
+} else if (fieldHasSubFields(field)) {
+ // Handle group/row/collapsible
+}
+```
+
+### Safe Property Access
+
+```ts
+import { fieldHasMaxDepth, fieldSupportsMany } from 'payload';
+
+// Without guard - TypeScript error
+// if (field.hasMany) { /* ... */ }
+
+// With guard - safe access
+if (fieldSupportsMany(field) && field.hasMany) {
+ console.log('Multiple values supported');
+}
+
+if (fieldHasMaxDepth(field)) {
+ const depth = field.maxDepth; // TypeScript knows this is number
+}
+```
+
+## Type Preservation
+
+All guards preserve the original type constraint:
+
+```ts
+import type { ClientField, Field } from 'payload';
+import { fieldHasSubFields } from 'payload';
+
+function processServerField(field: Field) {
+ if (fieldHasSubFields(field)) {
+ // field is Field & FieldWithSubFields (not ClientField)
+ }
+}
+
+function processClientField(field: ClientField) {
+ if (fieldHasSubFields(field)) {
+ // field is ClientField & FieldWithSubFieldsClient
+ }
+}
+```
diff --git a/.claude/skills/payload/reference/FIELDS.md b/.claude/skills/payload/reference/FIELDS.md
new file mode 100644
index 0000000..b4d3ae3
--- /dev/null
+++ b/.claude/skills/payload/reference/FIELDS.md
@@ -0,0 +1,754 @@
+# Payload CMS Field Types Reference
+
+Complete reference for all Payload field types with examples.
+
+## Text Field
+
+```ts
+import type { TextField } from 'payload';
+
+const textField: TextField = {
+ name: 'title',
+ type: 'text',
+ required: true,
+ unique: true,
+ minLength: 5,
+ maxLength: 100,
+ index: true,
+ localized: true,
+ defaultValue: 'Default Title',
+ validate: (value) => Boolean(value) || 'Required',
+ admin: {
+ placeholder: 'Enter title...',
+ position: 'sidebar',
+ condition: (data) => data.showTitle === true,
+ },
+};
+```
+
+### Slug Field Helper
+
+Built-in helper for auto-generating slugs:
+
+```ts
+import type { CollectionConfig } from 'payload';
+import { slugField } from 'payload';
+
+export const Pages: CollectionConfig = {
+ slug: 'pages',
+ fields: [
+ { name: 'title', type: 'text', required: true },
+ slugField({
+ name: 'slug', // defaults to 'slug'
+ useAsSlug: 'title', // defaults to 'title'
+ checkboxName: 'generateSlug', // defaults to 'generateSlug'
+ localized: true,
+ required: true,
+ overrides: (defaultField) => {
+ // Customize the generated fields if needed
+ return defaultField;
+ },
+ }),
+ ],
+};
+```
+
+## Rich Text (Lexical)
+
+```ts
+import type { RichTextField } from 'payload';
+import {
+ HeadingFeature,
+ lexicalEditor,
+ LinkFeature,
+} from '@payloadcms/richtext-lexical';
+
+const richTextField: RichTextField = {
+ name: 'content',
+ type: 'richText',
+ required: true,
+ localized: true,
+ editor: lexicalEditor({
+ features: ({ defaultFeatures }) => [
+ ...defaultFeatures,
+ HeadingFeature({
+ enabledHeadingSizes: ['h1', 'h2', 'h3'],
+ }),
+ LinkFeature({
+ enabledCollections: ['posts', 'pages'],
+ }),
+ ],
+ }),
+};
+```
+
+### Advanced Lexical Configuration
+
+```ts
+import {
+ BoldFeature,
+ EXPERIMENTAL_TableFeature,
+ FixedToolbarFeature,
+ HeadingFeature,
+ IndentFeature,
+ InlineToolbarFeature,
+ ItalicFeature,
+ lexicalEditor,
+ LinkFeature,
+ OrderedListFeature,
+ UnderlineFeature,
+ UnorderedListFeature,
+} from '@payloadcms/richtext-lexical';
+
+// Global editor config with full features
+export default buildConfig({
+ editor: lexicalEditor({
+ features: () => {
+ return [
+ UnderlineFeature(),
+ BoldFeature(),
+ ItalicFeature(),
+ OrderedListFeature(),
+ UnorderedListFeature(),
+ LinkFeature({
+ enabledCollections: ['pages'],
+ fields: ({ defaultFields }) => {
+ const defaultFieldsWithoutUrl = defaultFields.filter((field) => {
+ if ('name' in field && field.name === 'url') return false;
+ return true;
+ });
+
+ return [
+ ...defaultFieldsWithoutUrl,
+ {
+ name: 'url',
+ type: 'text',
+ admin: {
+ condition: ({ linkType }) => linkType !== 'internal',
+ },
+ label: ({ t }) => t('fields:enterURL'),
+ required: true,
+ },
+ ];
+ },
+ }),
+ IndentFeature(),
+ EXPERIMENTAL_TableFeature(),
+ ];
+ },
+ }),
+});
+
+// Field-specific editor with custom toolbar
+const richTextWithToolbars: RichTextField = {
+ name: 'richText',
+ type: 'richText',
+ editor: lexicalEditor({
+ features: ({ rootFeatures }) => {
+ return [
+ ...rootFeatures,
+ HeadingFeature({ enabledHeadingSizes: ['h2', 'h3', 'h4'] }),
+ FixedToolbarFeature(),
+ InlineToolbarFeature(),
+ ];
+ },
+ }),
+ label: false,
+};
+```
+
+## Relationship
+
+```ts
+import type { RelationshipField } from 'payload';
+
+// Single relationship
+const singleRelationship: RelationshipField = {
+ name: 'author',
+ type: 'relationship',
+ relationTo: 'users',
+ required: true,
+ maxDepth: 2,
+};
+
+// Multiple relationships (hasMany)
+const multipleRelationship: RelationshipField = {
+ name: 'categories',
+ type: 'relationship',
+ relationTo: 'categories',
+ hasMany: true,
+ filterOptions: {
+ active: { equals: true },
+ },
+};
+
+// Polymorphic relationship
+const polymorphicRelationship: PolymorphicRelationshipField = {
+ name: 'relatedContent',
+ type: 'relationship',
+ relationTo: ['posts', 'pages'],
+ hasMany: true,
+};
+```
+
+## Array
+
+```ts
+import type { ArrayField } from 'payload';
+
+const arrayField: ArrayField = {
+ name: 'slides',
+ type: 'array',
+ minRows: 2,
+ maxRows: 10,
+ labels: {
+ singular: 'Slide',
+ plural: 'Slides',
+ },
+ fields: [
+ {
+ name: 'title',
+ type: 'text',
+ required: true,
+ },
+ {
+ name: 'image',
+ type: 'upload',
+ relationTo: 'media',
+ },
+ ],
+ admin: {
+ initCollapsed: true,
+ },
+};
+```
+
+## Blocks
+
+```ts
+import type { Block, BlocksField } from 'payload';
+
+const HeroBlock: Block = {
+ slug: 'hero',
+ interfaceName: 'HeroBlock',
+ fields: [
+ {
+ name: 'heading',
+ type: 'text',
+ required: true,
+ },
+ {
+ name: 'background',
+ type: 'upload',
+ relationTo: 'media',
+ },
+ ],
+};
+
+const ContentBlock: Block = {
+ slug: 'content',
+ fields: [
+ {
+ name: 'text',
+ type: 'richText',
+ },
+ ],
+};
+
+const blocksField: BlocksField = {
+ name: 'layout',
+ type: 'blocks',
+ blocks: [HeroBlock, ContentBlock],
+};
+```
+
+## Select
+
+```ts
+import type { SelectField } from 'payload';
+
+const selectField: SelectField = {
+ name: 'status',
+ type: 'select',
+ options: [
+ { label: 'Draft', value: 'draft' },
+ { label: 'Published', value: 'published' },
+ ],
+ defaultValue: 'draft',
+ required: true,
+};
+
+// Multiple select
+const multiSelectField: SelectField = {
+ name: 'tags',
+ type: 'select',
+ hasMany: true,
+ options: ['tech', 'news', 'sports'],
+};
+```
+
+## Upload
+
+```ts
+import type { UploadField } from 'payload';
+
+const uploadField: UploadField = {
+ name: 'featuredImage',
+ type: 'upload',
+ relationTo: 'media',
+ required: true,
+ filterOptions: {
+ mimeType: { contains: 'image' },
+ },
+};
+```
+
+## Point (Geolocation)
+
+Point fields store geographic coordinates with automatic 2dsphere indexing for geospatial queries.
+
+```ts
+import type { PointField } from 'payload';
+
+const locationField: PointField = {
+ name: 'location',
+ type: 'point',
+ label: 'Location',
+ required: true,
+};
+
+// Returns [longitude, latitude]
+// Example: [-122.4194, 37.7749] for San Francisco
+```
+
+### Geospatial Queries
+
+```ts
+// Query by distance (sorted by nearest first)
+const nearbyLocations = await payload.find({
+ collection: 'stores',
+ where: {
+ location: {
+ near: [10, 20], // [longitude, latitude]
+ maxDistance: 5000, // in meters
+ minDistance: 1000,
+ },
+ },
+});
+
+// Query within polygon area
+const polygon: Point[] = [
+ [9.0, 19.0], // bottom-left
+ [9.0, 21.0], // top-left
+ [11.0, 21.0], // top-right
+ [11.0, 19.0], // bottom-right
+ [9.0, 19.0], // closing point
+];
+
+const withinArea = await payload.find({
+ collection: 'stores',
+ where: {
+ location: {
+ within: {
+ type: 'Polygon',
+ coordinates: [polygon],
+ },
+ },
+ },
+});
+
+// Query intersecting area
+const intersecting = await payload.find({
+ collection: 'stores',
+ where: {
+ location: {
+ intersects: {
+ type: 'Polygon',
+ coordinates: [polygon],
+ },
+ },
+ },
+});
+```
+
+**Note**: Point fields are not supported in SQLite.
+
+## Join Fields
+
+Join fields create reverse relationships, allowing you to access related documents from the "other side" of a relationship.
+
+```ts
+import type { JoinField } from 'payload';
+
+// From Users collection - show user's orders
+const ordersJoinField: JoinField = {
+ name: 'orders',
+ type: 'join',
+ collection: 'orders',
+ on: 'customer', // The field in 'orders' that references this user
+ admin: {
+ allowCreate: false,
+ defaultColumns: ['id', 'createdAt', 'total', 'currency', 'items'],
+ },
+};
+
+// From Users collection - show user's cart
+const cartJoinField: JoinField = {
+ name: 'cart',
+ type: 'join',
+ collection: 'carts',
+ on: 'customer',
+ admin: {
+ allowCreate: false,
+ defaultColumns: ['id', 'createdAt', 'total', 'currency'],
+ },
+};
+```
+
+## Virtual Fields
+
+```ts
+import type { TextField } from 'payload';
+
+// Computed from siblings
+const computedVirtualField: TextField = {
+ name: 'fullName',
+ type: 'text',
+ virtual: true,
+ hooks: {
+ afterRead: [
+ ({ siblingData }) => `${siblingData.firstName} ${siblingData.lastName}`,
+ ],
+ },
+};
+
+// From relationship path
+const pathVirtualField: TextField = {
+ name: 'authorName',
+ type: 'text',
+ virtual: 'author.name',
+};
+```
+
+## Conditional Fields
+
+```ts
+import type { CheckboxField, UploadField } from 'payload';
+
+// Simple boolean condition
+const enableFeatureField: CheckboxField = {
+ name: 'enableFeature',
+ type: 'checkbox',
+};
+
+const conditionalField: TextField = {
+ name: 'featureText',
+ type: 'text',
+ admin: {
+ condition: (data) => data.enableFeature === true,
+ },
+};
+
+// Sibling data condition (from hero field pattern)
+const typeField: SelectField = {
+ name: 'type',
+ type: 'select',
+ options: ['none', 'highImpact', 'mediumImpact', 'lowImpact'],
+ defaultValue: 'lowImpact',
+};
+
+const mediaField: UploadField = {
+ name: 'media',
+ type: 'upload',
+ relationTo: 'media',
+ admin: {
+ condition: (_, { type } = {}) =>
+ ['highImpact', 'mediumImpact'].includes(type),
+ },
+ required: true,
+};
+```
+
+## Radio
+
+Radio fields present options as radio buttons for single selection.
+
+```ts
+import type { RadioField } from 'payload';
+
+const radioField: RadioField = {
+ name: 'priority',
+ type: 'radio',
+ options: [
+ { label: 'Low', value: 'low' },
+ { label: 'Medium', value: 'medium' },
+ { label: 'High', value: 'high' },
+ ],
+ defaultValue: 'medium',
+ admin: {
+ layout: 'horizontal', // or 'vertical'
+ },
+};
+```
+
+## Row (Layout)
+
+Row fields arrange fields horizontally in the admin panel (presentational only).
+
+```ts
+import type { RowField } from 'payload';
+
+const rowField: RowField = {
+ type: 'row',
+ fields: [
+ {
+ name: 'firstName',
+ type: 'text',
+ admin: { width: '50%' },
+ },
+ {
+ name: 'lastName',
+ type: 'text',
+ admin: { width: '50%' },
+ },
+ ],
+};
+```
+
+## Collapsible (Layout)
+
+Collapsible fields group fields in an expandable/collapsible section.
+
+```ts
+import type { CollapsibleField } from 'payload';
+
+const collapsibleField: CollapsibleField = {
+ label: ({ data }) => data?.title || 'Advanced Options',
+ type: 'collapsible',
+ admin: {
+ initCollapsed: true,
+ },
+ fields: [
+ { name: 'customCSS', type: 'textarea' },
+ { name: 'customJS', type: 'code' },
+ ],
+};
+```
+
+## UI (Custom Components)
+
+UI fields allow fully custom React components in the admin (no data stored).
+
+```ts
+import type { UIField } from 'payload';
+
+const uiField: UIField = {
+ name: 'customMessage',
+ type: 'ui',
+ admin: {
+ components: {
+ Field: '/path/to/CustomFieldComponent',
+ Cell: '/path/to/CustomCellComponent', // For list view
+ },
+ },
+};
+```
+
+## Tabs & Groups
+
+```ts
+import type { GroupField, TabsField } from 'payload';
+
+// Tabs
+const tabsField: TabsField = {
+ type: 'tabs',
+ tabs: [
+ {
+ label: 'Content',
+ fields: [
+ { name: 'title', type: 'text' },
+ { name: 'body', type: 'richText' },
+ ],
+ },
+ {
+ label: 'SEO',
+ fields: [
+ { name: 'metaTitle', type: 'text' },
+ { name: 'metaDescription', type: 'textarea' },
+ ],
+ },
+ ],
+};
+
+// Group (named)
+const groupField: GroupField = {
+ name: 'meta',
+ type: 'group',
+ fields: [
+ { name: 'title', type: 'text' },
+ { name: 'description', type: 'textarea' },
+ ],
+};
+```
+
+## Reusable Field Factories
+
+Create composable field patterns that can be customized with overrides.
+
+```ts
+import type { Field, GroupField } from 'payload';
+
+// Utility for deep merging
+const deepMerge = (target: T, source: Partial): T => {
+ // Implementation would deeply merge objects
+ return { ...target, ...source };
+};
+
+// Reusable link field factory
+type LinkType = (options?: {
+ appearances?: ('default' | 'outline')[] | false;
+ disableLabel?: boolean;
+ overrides?: Record;
+}) => GroupField;
+
+export const link: LinkType = ({
+ appearances,
+ disableLabel = false,
+ overrides = {},
+} = {}) => {
+ const linkField: GroupField = {
+ name: 'link',
+ type: 'group',
+ admin: {
+ hideGutter: true,
+ },
+ fields: [
+ {
+ type: 'row',
+ fields: [
+ {
+ name: 'type',
+ type: 'radio',
+ options: [
+ { label: 'Internal link', value: 'reference' },
+ { label: 'Custom URL', value: 'custom' },
+ ],
+ defaultValue: 'reference',
+ admin: {
+ layout: 'horizontal',
+ width: '50%',
+ },
+ },
+ {
+ name: 'newTab',
+ type: 'checkbox',
+ label: 'Open in new tab',
+ admin: {
+ width: '50%',
+ style: {
+ alignSelf: 'flex-end',
+ },
+ },
+ },
+ ],
+ },
+ {
+ name: 'reference',
+ type: 'relationship',
+ relationTo: ['pages'],
+ required: true,
+ maxDepth: 1,
+ admin: {
+ condition: (_, siblingData) => siblingData?.type === 'reference',
+ },
+ },
+ {
+ name: 'url',
+ type: 'text',
+ label: 'Custom URL',
+ required: true,
+ admin: {
+ condition: (_, siblingData) => siblingData?.type === 'custom',
+ },
+ },
+ ],
+ };
+
+ if (!disableLabel) {
+ linkField.fields.push({
+ name: 'label',
+ type: 'text',
+ required: true,
+ });
+ }
+
+ if (appearances !== false) {
+ linkField.fields.push({
+ name: 'appearance',
+ type: 'select',
+ defaultValue: 'default',
+ options: [
+ { label: 'Default', value: 'default' },
+ { label: 'Outline', value: 'outline' },
+ ],
+ });
+ }
+
+ return deepMerge(linkField, overrides) as GroupField;
+};
+
+// Usage
+const navItem = link({ appearances: false });
+const ctaButton = link({
+ overrides: {
+ name: 'cta',
+ admin: {
+ description: 'Call to action button',
+ },
+ },
+});
+```
+
+## Field Type Guards
+
+Type guards for runtime field type checking and safe type narrowing.
+
+| Type Guard | Checks For | Use When |
+| --------------------------- | ----------------------------------------------------------- | ---------------------------------------- |
+| `fieldAffectsData` | Field stores data (has name, not UI-only) | Need to access field data or name |
+| `fieldHasSubFields` | Field contains nested fields (group/array/row/collapsible) | Need to recursively traverse fields |
+| `fieldIsArrayType` | Field is array type | Distinguish arrays from other containers |
+| `fieldIsBlockType` | Field is blocks type | Handle blocks-specific logic |
+| `fieldIsGroupType` | Field is group type | Handle group-specific logic |
+| `fieldSupportsMany` | Field can have multiple values (select/relationship/upload) | Check for `hasMany` support |
+| `fieldHasMaxDepth` | Field supports population depth control | Control relationship/upload/join depth |
+| `fieldIsPresentationalOnly` | Field is UI-only (no data storage) | Exclude from data operations |
+| `fieldIsSidebar` | Field positioned in sidebar | Separate sidebar rendering |
+| `fieldIsID` | Field name is 'id' | Special ID field handling |
+| `fieldIsHiddenOrDisabled` | Field is hidden or disabled | Filter from UI operations |
+| `fieldShouldBeLocalized` | Field needs localization handling | Proper locale table checks |
+| `fieldIsVirtual` | Field is virtual (computed/no DB column) | Skip in database transforms |
+| `tabHasName` | Tab is named (stores data) | Distinguish named vs unnamed tabs |
+| `groupHasName` | Group is named (stores data) | Distinguish named vs unnamed groups |
+| `optionIsObject` | Option is `{label, value}` format | Access option properties safely |
+| `optionsAreObjects` | All options are objects | Batch option processing |
+| `optionIsValue` | Option is string value | Handle string options |
+| `valueIsValueWithRelation` | Value is polymorphic relationship | Handle polymorphic relationships |
+
+```ts
+import { fieldAffectsData, fieldHasSubFields, fieldIsArrayType } from 'payload';
+
+function processField(field: Field) {
+ if (fieldAffectsData(field)) {
+ // Safe to access field.name
+ console.log(field.name);
+ }
+
+ if (fieldHasSubFields(field)) {
+ // Safe to access field.fields
+ field.fields.forEach(processField);
+ }
+}
+```
+
+See [FIELD-TYPE-GUARDS.md](FIELD-TYPE-GUARDS.md) for detailed usage patterns.
diff --git a/.claude/skills/payload/reference/HOOKS.md b/.claude/skills/payload/reference/HOOKS.md
new file mode 100644
index 0000000..23225b0
--- /dev/null
+++ b/.claude/skills/payload/reference/HOOKS.md
@@ -0,0 +1,194 @@
+# Payload CMS Hooks Reference
+
+Complete reference for collection hooks, field hooks, and hook context patterns.
+
+## Collection Hooks
+
+```ts
+export const Posts: CollectionConfig = {
+ slug: 'posts',
+ hooks: {
+ // Before validation
+ beforeValidate: [
+ async ({ data, operation }) => {
+ if (operation === 'create') {
+ data.slug = slugify(data.title);
+ }
+ return data;
+ },
+ ],
+
+ // Before save
+ beforeChange: [
+ async ({ data, req, operation, originalDoc }) => {
+ if (operation === 'update' && data.status === 'published') {
+ data.publishedAt = new Date();
+ }
+ return data;
+ },
+ ],
+
+ // After save
+ afterChange: [
+ async ({ doc, req, operation, previousDoc }) => {
+ if (operation === 'create') {
+ await sendNotification(doc);
+ }
+ return doc;
+ },
+ ],
+
+ // After read
+ afterRead: [
+ async ({ doc, req }) => {
+ doc.viewCount = await getViewCount(doc.id);
+ return doc;
+ },
+ ],
+
+ // Before delete
+ beforeDelete: [
+ async ({ req, id }) => {
+ await cleanupRelatedData(id);
+ },
+ ],
+ },
+};
+```
+
+## Field Hooks
+
+```ts
+import type { EmailField, FieldHook } from 'payload';
+
+const beforeValidateHook: FieldHook = ({ value }) => {
+ return value.trim().toLowerCase();
+};
+
+const afterReadHook: FieldHook = ({ value, req }) => {
+ // Hide email from non-admins
+ if (!req.user?.roles?.includes('admin')) {
+ return value.replace(/(.{2})(.*)(@.*)/, '$1***$3');
+ }
+ return value;
+};
+
+const emailField: EmailField = {
+ name: 'email',
+ type: 'email',
+ hooks: {
+ beforeValidate: [beforeValidateHook],
+ afterRead: [afterReadHook],
+ },
+};
+```
+
+## Hook Context
+
+Share data between hooks or control hook behavior using request context:
+
+```ts
+import type { CollectionConfig } from 'payload';
+
+export const Posts: CollectionConfig = {
+ slug: 'posts',
+ hooks: {
+ beforeChange: [
+ async ({ context }) => {
+ context.expensiveData = await fetchExpensiveData();
+ },
+ ],
+ afterChange: [
+ async ({ context, doc }) => {
+ // Reuse from previous hook
+ await processData(doc, context.expensiveData);
+ },
+ ],
+ },
+ fields: [{ name: 'title', type: 'text' }],
+};
+```
+
+## Next.js Revalidation with Context Control
+
+```ts
+import type {
+ CollectionAfterChangeHook,
+ CollectionAfterDeleteHook,
+} from 'payload';
+import { revalidatePath } from 'next/cache';
+
+import type { Page } from '../payload-types';
+
+export const revalidatePage: CollectionAfterChangeHook = ({
+ doc,
+ previousDoc,
+ req: { payload, context },
+}) => {
+ if (!context.disableRevalidate) {
+ if (doc._status === 'published') {
+ const path = doc.slug === 'home' ? '/' : `/${doc.slug}`;
+ payload.logger.info(`Revalidating page at path: ${path}`);
+ revalidatePath(path);
+ }
+
+ // Revalidate old path if unpublished
+ if (previousDoc?._status === 'published' && doc._status !== 'published') {
+ const oldPath =
+ previousDoc.slug === 'home' ? '/' : `/${previousDoc.slug}`;
+ payload.logger.info(`Revalidating old page at path: ${oldPath}`);
+ revalidatePath(oldPath);
+ }
+ }
+ return doc;
+};
+
+export const revalidateDelete: CollectionAfterDeleteHook = ({
+ doc,
+ req: { context },
+}) => {
+ if (!context.disableRevalidate) {
+ const path = doc?.slug === 'home' ? '/' : `/${doc?.slug}`;
+ revalidatePath(path);
+ }
+ return doc;
+};
+```
+
+## Date Field Auto-Set
+
+Automatically set date when document is published:
+
+```ts
+import type { DateField } from 'payload';
+
+const publishedOnField: DateField = {
+ name: 'publishedOn',
+ type: 'date',
+ admin: {
+ date: {
+ pickerAppearance: 'dayAndTime',
+ },
+ position: 'sidebar',
+ },
+ hooks: {
+ beforeChange: [
+ ({ siblingData, value }) => {
+ if (siblingData._status === 'published' && !value) {
+ return new Date();
+ }
+ return value;
+ },
+ ],
+ },
+};
+```
+
+## Hook Patterns Best Practices
+
+- Use `beforeValidate` for data formatting
+- Use `beforeChange` for business logic
+- Use `afterChange` for side effects
+- Use `afterRead` for computed fields
+- Store expensive operations in `context`
+- Pass `req` to nested operations for transaction safety (see [ADAPTERS.md#threading-req-through-operations](ADAPTERS.md#threading-req-through-operations))
diff --git a/.claude/skills/payload/reference/PLUGIN-DEVELOPMENT.md b/.claude/skills/payload/reference/PLUGIN-DEVELOPMENT.md
new file mode 100644
index 0000000..b5d9c70
--- /dev/null
+++ b/.claude/skills/payload/reference/PLUGIN-DEVELOPMENT.md
@@ -0,0 +1,1486 @@
+# Payload Plugin Development
+
+Complete guide to creating Payload CMS plugins with TypeScript patterns, package structure, and best practices from the official Payload plugin template.
+
+## Plugin Architecture
+
+Plugins are functions that receive configuration options and return a function that transforms the Payload config:
+
+```ts
+import type { Config, Plugin } from 'payload';
+
+interface MyPluginConfig {
+ enabled?: boolean;
+ collections?: string[];
+}
+
+export const myPlugin =
+ (options: MyPluginConfig): Plugin =>
+ (config: Config): Config => ({
+ ...config,
+ // Transform config here
+ });
+```
+
+**Key Pattern:** Double arrow function (currying)
+
+- First function: Accepts plugin options, returns plugin function
+- Second function: Accepts Payload config, returns modified config
+
+## Plugin Package Structure
+
+### Simple Structure
+
+```
+plugin-/
+├── package.json # Package metadata and dependencies
+├── README.md # Plugin documentation
+├── LICENSE.md # License file
+└── src/
+ ├── index.ts # Entry point, re-exports plugin and config types
+ ├── plugin.ts # Plugin implementation
+ ├── types.ts # TypeScript type definitions
+ └── exports/ # Additional entry points (optional)
+ └── types.ts # Type-only exports
+```
+
+### Exhaustive Structure
+
+```
+plugin-/
+├── .swcrc # SWC compiler config
+├── package.json # Package metadata and dependencies
+├── tsconfig.json # TypeScript config
+├── README.md # Plugin documentation
+├── LICENSE.md # License file
+├── eslint.config.js # ESLint configuration (optional)
+├── vitest.config.js # Vitest test configuration (optional)
+├── playwright.config.js # Playwright e2e tests (optional)
+└── src/
+ ├── index.ts # Entry point, re-exports plugin and config types
+ ├── plugin.ts # Plugin implementation
+ ├── types.ts # TypeScript type definitions
+ ├── defaults.ts # Default configuration values (optional)
+ ├── endpoints/ # Custom API endpoints (optional)
+ │ └── handler.ts
+ ├── components/ # React components (optional)
+ │ ├── ClientComponent.tsx # 'use client' components
+ │ └── ServerComponent.tsx # RSC components
+ ├── fields/ # Custom field components (optional)
+ │ ├── FieldName/
+ │ │ ├── index.ts # Field config
+ │ │ └── Component.tsx # Client component
+ ├── exports/ # Additional entry points
+ │ ├── types.ts # Type-only exports
+ │ ├── fields.ts # Field-only exports
+ │ ├── client.ts # Re-export client components
+ │ └── rsc.ts # Re-export server components (RSC)
+ ├── translations/ # i18n translations (optional)
+ │ └── index.ts
+ └── ui/ # Admin UI components (optional)
+ └── Component.tsx
+```
+
+**Key additions from official template:**
+
+- **dev/** directory with complete Payload project for local testing
+- **src/exports/rsc.ts** for React Server Component exports
+- **src/components/** for organizing React components
+- **src/endpoints/** for custom API endpoint handlers
+- Test configuration files (vitest.config.js, playwright.config.js)
+
+## Package.json Configuration
+
+```json
+{
+ "name": "payload-plugin-example",
+ "version": "1.0.0",
+ "description": "A Payload CMS plugin",
+ "type": "module",
+ "main": "./dist/index.js",
+ "types": "./dist/index.d.ts",
+ "exports": {
+ ".": {
+ "import": "./dist/index.js",
+ "types": "./dist/index.d.ts",
+ "default": "./dist/index.js"
+ },
+ "./types": {
+ "import": "./dist/exports/types.js",
+ "types": "./dist/exports/types.d.ts"
+ },
+ "./client": {
+ "import": "./dist/exports/client.js",
+ "types": "./dist/exports/client.d.ts"
+ },
+ "./rsc": {
+ "import": "./dist/exports/rsc.js",
+ "types": "./dist/exports/rsc.d.ts"
+ }
+ },
+ "files": ["dist"],
+ "scripts": {
+ "build": "npm run copyfiles && npm run build:types && npm run build:swc",
+ "build:swc": "swc ./src -d ./dist --config-file .swcrc --strip-leading-paths",
+ "build:types": "tsc --emitDeclarationOnly --outDir dist",
+ "clean": "rimraf dist *.tsbuildinfo",
+ "copyfiles": "copyfiles -u 1 \"src/**/*.{html,css,scss,ttf,woff,woff2,eot,svg,jpg,png,json}\" dist/",
+ "dev": "next dev dev --turbo",
+ "dev:generate-types": "cross-env PAYLOAD_CONFIG_PATH=./dev/payload.config.ts payload generate:types",
+ "dev:payload": "cross-env PAYLOAD_CONFIG_PATH=./dev/payload.config.ts payload",
+ "test": "npm run test:int && npm run test:e2e",
+ "test:int": "vitest",
+ "test:e2e": "playwright test",
+ "lint": "eslint",
+ "lint:fix": "eslint ./src --fix",
+ "prepublishOnly": "npm run clean && npm run build"
+ },
+ "dependencies": {
+ "@payloadcms/translations": "^3.0.0",
+ "@payloadcms/ui": "^3.0.0"
+ },
+ "devDependencies": {
+ "@payloadcms/db-mongodb": "^3.0.0",
+ "@payloadcms/next": "^3.0.0",
+ "@payloadcms/richtext-lexical": "^3.0.0",
+ "@playwright/test": "^1.40.0",
+ "@swc/cli": "^0.1.62",
+ "@swc/core": "^1.3.0",
+ "copyfiles": "^2.4.1",
+ "cross-env": "^7.0.3",
+ "eslint": "^9.0.0",
+ "next": "^15.4.10",
+ "payload": "^3.0.0",
+ "react": "^19.2.1",
+ "react-dom": "^19.2.1",
+ "rimraf": "^5.0.0",
+ "typescript": "^5.0.0",
+ "vitest": "^3.0.0"
+ },
+ "peerDependencies": {
+ "payload": "^3.0.0"
+ }
+}
+```
+
+**Key Points:**
+
+- `type: "module"` for ESM
+- Compiled output in `./dist`, source in `./src`
+- Payload as peer dependency (user installs it)
+- Multiple export entry points: main, `/types`, `/client`, `/rsc`
+- `/client` for client components, `/rsc` for React Server Components
+- SWC for fast compilation
+- Dev scripts for local development with Next.js
+- Test scripts for both integration (Vitest) and e2e (Playwright) tests
+- `prepublishOnly` ensures build before publish
+
+## Plugin Patterns
+
+### Adding Fields to Collections
+
+```ts
+import type { Config, Field, Plugin } from 'payload';
+
+export const seoPlugin =
+ (options: { collections?: string[] }): Plugin =>
+ (config: Config): Config => {
+ const seoFields: Field[] = [
+ {
+ name: 'meta',
+ type: 'group',
+ fields: [
+ { name: 'title', type: 'text' },
+ { name: 'description', type: 'textarea' },
+ ],
+ },
+ ];
+
+ return {
+ ...config,
+ collections: config.collections?.map((collection) => {
+ if (options.collections?.includes(collection.slug)) {
+ return {
+ ...collection,
+ fields: [...(collection.fields || []), ...seoFields],
+ };
+ }
+ return collection;
+ }),
+ };
+ };
+```
+
+### Adding New Collections
+
+```ts
+import type { CollectionConfig, Config, Plugin } from 'payload';
+
+export const redirectsPlugin =
+ (options: { overrides?: Partial }): Plugin =>
+ (config: Config): Config => {
+ const redirectsCollection: CollectionConfig = {
+ slug: 'redirects',
+ access: { read: () => true },
+ fields: [
+ { name: 'from', type: 'text', required: true, unique: true },
+ { name: 'to', type: 'text', required: true },
+ ],
+ ...options.overrides,
+ };
+
+ return {
+ ...config,
+ collections: [...(config.collections || []), redirectsCollection],
+ };
+ };
+```
+
+### Adding Hooks
+
+```ts
+import type { CollectionAfterChangeHook, Config, Plugin } from 'payload';
+
+const resaveChildrenHook: CollectionAfterChangeHook = async ({
+ doc,
+ req,
+ operation,
+}) => {
+ if (operation === 'update') {
+ // Resave child documents
+ const children = await req.payload.find({
+ collection: 'pages',
+ where: { parent: { equals: doc.id } },
+ });
+
+ for (const child of children.docs) {
+ await req.payload.update({
+ collection: 'pages',
+ id: child.id,
+ data: child,
+ });
+ }
+ }
+ return doc;
+};
+
+export const nestedDocsPlugin =
+ (options: { collections: string[] }): Plugin =>
+ (config: Config): Config => ({
+ ...config,
+ collections: (config.collections || []).map((collection) => {
+ if (options.collections.includes(collection.slug)) {
+ return {
+ ...collection,
+ hooks: {
+ ...(collection.hooks || {}),
+ afterChange: [
+ resaveChildrenHook,
+ ...(collection.hooks?.afterChange || []),
+ ],
+ },
+ };
+ }
+ return collection;
+ }),
+ });
+```
+
+### Adding Root-Level Endpoints
+
+Add endpoints at the root config level (accessible at `/api/`):
+
+```ts
+import type { Config, Endpoint, Plugin } from 'payload';
+
+export const seoPlugin =
+ (options: { generateTitle?: (doc: any) => string }): Plugin =>
+ (config: Config): Config => {
+ const generateTitleEndpoint: Endpoint = {
+ path: '/plugin-seo/generate-title',
+ method: 'post',
+ handler: async (req) => {
+ const data = await req.json?.();
+ const result = options.generateTitle
+ ? options.generateTitle(data.doc)
+ : '';
+ return Response.json({ result });
+ },
+ };
+
+ return {
+ ...config,
+ endpoints: [...(config.endpoints ?? []), generateTitleEndpoint],
+ };
+ };
+```
+
+**Example webhook endpoint:**
+
+```ts
+// Useful for integrations like Stripe
+const webhookEndpoint: Endpoint = {
+ path: '/stripe/webhook',
+ method: 'post',
+ handler: async (req) => {
+ const signature = req.headers.get('stripe-signature');
+ const event = stripe.webhooks.constructEvent(
+ await req.text(),
+ signature,
+ process.env.STRIPE_WEBHOOK_SECRET,
+ );
+ // Handle webhook
+ return Response.json({ received: true });
+ },
+};
+```
+
+### Field Overrides with Defaults
+
+```ts
+import type { Config, Field, Plugin } from 'payload';
+
+type FieldsOverride = (args: { defaultFields: Field[] }) => Field[];
+
+interface PluginConfig {
+ collections?: string[];
+ fields?: FieldsOverride;
+}
+
+export const myPlugin =
+ (options: PluginConfig): Plugin =>
+ (config: Config): Config => {
+ const defaultFields: Field[] = [
+ { name: 'title', type: 'text' },
+ { name: 'description', type: 'textarea' },
+ ];
+
+ const fields =
+ options.fields && typeof options.fields === 'function'
+ ? options.fields({ defaultFields })
+ : defaultFields;
+
+ return {
+ ...config,
+ collections: config.collections?.map((collection) => {
+ if (options.collections?.includes(collection.slug)) {
+ return {
+ ...collection,
+ fields: [...(collection.fields || []), ...fields],
+ };
+ }
+ return collection;
+ }),
+ };
+ };
+```
+
+### Tabs UI Pattern
+
+```ts
+import type { Config, GroupField, Plugin, TabsField } from 'payload';
+
+export const seoPlugin =
+ (options: { tabbedUI?: boolean }): Plugin =>
+ (config: Config): Config => {
+ const seoFields: GroupField[] = [
+ {
+ name: 'meta',
+ type: 'group',
+ fields: [{ name: 'title', type: 'text' }],
+ },
+ ];
+
+ return {
+ ...config,
+ collections: config.collections?.map((collection) => {
+ if (options.tabbedUI) {
+ const seoTabs: TabsField[] = [
+ {
+ type: 'tabs',
+ tabs: [
+ // If existing tabs, preserve them
+ ...(collection.fields?.[0]?.type === 'tabs'
+ ? collection.fields[0].tabs
+ : [
+ {
+ label: 'Content',
+ fields: collection.fields || [],
+ },
+ ]),
+ // Add SEO tab
+ {
+ label: 'SEO',
+ fields: seoFields,
+ },
+ ],
+ },
+ ];
+
+ return {
+ ...collection,
+ fields: [
+ ...seoTabs,
+ ...(collection.fields?.[0]?.type === 'tabs'
+ ? collection.fields.slice(1)
+ : []),
+ ],
+ };
+ }
+
+ return {
+ ...collection,
+ fields: [...(collection.fields || []), ...seoFields],
+ };
+ }),
+ };
+ };
+```
+
+### Disable Plugin Pattern
+
+Allow users to disable plugin without removing it (important for database schema consistency):
+
+```ts
+import type { Config, Plugin } from 'payload';
+
+interface PluginConfig {
+ disabled?: boolean;
+ collections?: string[];
+}
+
+export const myPlugin =
+ (options: PluginConfig): Plugin =>
+ (config: Config): Config => {
+ // Always add collections/fields for database schema consistency
+ if (!config.collections) {
+ config.collections = [];
+ }
+
+ config.collections.push({
+ slug: 'plugin-collection',
+ fields: [{ name: 'title', type: 'text' }],
+ });
+
+ // Add fields to specified collections
+ if (options.collections) {
+ for (const collectionSlug of options.collections) {
+ const collection = config.collections.find(
+ (c) => c.slug === collectionSlug,
+ );
+ if (collection) {
+ collection.fields.push({
+ name: 'addedByPlugin',
+ type: 'text',
+ });
+ }
+ }
+ }
+
+ // If disabled, return early but keep schema changes
+ if (options.disabled) {
+ return config;
+ }
+
+ // Add endpoints, hooks, components only when enabled
+ config.endpoints = [
+ ...(config.endpoints ?? []),
+ {
+ path: '/my-endpoint',
+ method: 'get',
+ handler: async () => Response.json({ message: 'Hello' }),
+ },
+ ];
+
+ return config;
+ };
+```
+
+### Admin Components
+
+Add custom UI components to the admin panel:
+
+```ts
+import type { Config, Plugin } from 'payload';
+
+export const myPlugin =
+ (options: PluginConfig): Plugin =>
+ (config: Config): Config => {
+ if (!config.admin) config.admin = {};
+ if (!config.admin.components) config.admin.components = {};
+ if (!config.admin.components.beforeDashboard) {
+ config.admin.components.beforeDashboard = [];
+ }
+
+ // Add client component
+ config.admin.components.beforeDashboard.push(
+ 'my-plugin-name/client#BeforeDashboardClient',
+ );
+
+ // Add server component (RSC)
+ config.admin.components.beforeDashboard.push(
+ 'my-plugin-name/rsc#BeforeDashboardServer',
+ );
+
+ return config;
+ };
+```
+
+**Component file structure:**
+
+```tsx
+// src/components/BeforeDashboardClient.tsx
+'use client';
+
+import { useEffect, useState } from 'react';
+import { useConfig } from '@payloadcms/ui';
+import { formatAdminURL } from 'payload/shared';
+
+export const BeforeDashboardClient = () => {
+ const { config } = useConfig();
+ const [data, setData] = useState('');
+
+ useEffect(() => {
+ fetch(
+ formatAdminURL({
+ apiRoute: config.routes.api,
+ path: '/my-endpoint',
+ }),
+ )
+ .then((res) => res.json())
+ .then(setData);
+ }, [config.serverURL, config.routes.api]);
+
+ return Client Component: {data}
;
+};
+
+// src/components/BeforeDashboardServer.tsx
+export const BeforeDashboardServer = () => {
+ return Server Component
;
+};
+
+// src/exports/client.ts
+export { BeforeDashboardClient } from '../components/BeforeDashboardClient.js';
+
+// src/exports/rsc.ts
+export { BeforeDashboardServer } from '../components/BeforeDashboardServer.js';
+```
+
+### Translations (i18n)
+
+```ts
+// src/plugin.ts
+import { deepMergeSimple } from 'payload/shared';
+
+import { translations } from './translations/index.js';
+
+// src/translations/index.ts
+export const translations = {
+ en: {
+ 'plugin-name:fieldLabel': 'Field Label',
+ 'plugin-name:fieldDescription': 'Field description',
+ },
+ es: {
+ 'plugin-name:fieldLabel': 'Etiqueta del campo',
+ 'plugin-name:fieldDescription': 'Descripción del campo',
+ },
+};
+
+export const myPlugin =
+ (options: PluginConfig): Plugin =>
+ (config: Config): Config => ({
+ ...config,
+ i18n: {
+ ...config.i18n,
+ translations: deepMergeSimple(
+ translations,
+ config.i18n?.translations ?? {},
+ ),
+ },
+ });
+```
+
+### onInit Hook
+
+```ts
+export const myPlugin =
+ (options: PluginConfig): Plugin =>
+ (config: Config): Config => {
+ const incomingOnInit = config.onInit;
+
+ config.onInit = async (payload) => {
+ // IMPORTANT: Call existing onInit first
+ if (incomingOnInit) await incomingOnInit(payload);
+
+ // Plugin initialization
+ payload.logger.info('Plugin initialized');
+
+ // Example: Seed data
+ const { totalDocs } = await payload.count({
+ collection: 'plugin-collection',
+ where: { id: { equals: 'seeded-by-plugin' } },
+ });
+
+ if (totalDocs === 0) {
+ await payload.create({
+ collection: 'plugin-collection',
+ data: { id: 'seeded-by-plugin' },
+ });
+ }
+ };
+
+ return config;
+ };
+```
+
+## TypeScript Patterns
+
+### Plugin Config Types
+
+```ts
+import type {
+ CollectionConfig,
+ CollectionSlug,
+ Field,
+ GlobalSlug,
+} from 'payload';
+
+export type FieldsOverride = (args: { defaultFields: Field[] }) => Field[];
+
+export interface MyPluginConfig {
+ /**
+ * Collections to enable this plugin for
+ */
+ collections?: CollectionSlug[];
+ /**
+ * Globals to enable this plugin for
+ */
+ globals?: GlobalSlug[];
+ /**
+ * Override default fields
+ */
+ fields?: FieldsOverride;
+ /**
+ * Enable tabbed UI
+ */
+ tabbedUI?: boolean;
+ /**
+ * Override collection config
+ */
+ overrides?: Partial;
+}
+```
+
+### Export Types
+
+```ts
+// Usage
+import type { MyPluginConfig } from '@payloadcms/plugin-example/types';
+
+// src/exports/types.ts
+export type { MyPluginConfig, FieldsOverride } from '../types.js';
+```
+
+## Client Components
+
+### Custom Field Component
+
+```tsx
+// src/fields/CustomField/Component.tsx
+'use client';
+
+import type { TextFieldClientComponent } from 'payload';
+import { useField } from '@payloadcms/ui';
+
+export const CustomFieldComponent: TextFieldClientComponent = ({
+ field,
+ path,
+}) => {
+ const { value, setValue } = useField({ path });
+
+ return (
+
+ {field.label}
+ setValue(e.target.value)} />
+
+ );
+};
+```
+
+```ts
+// src/fields/CustomField/index.ts
+import type { Field } from 'payload';
+
+export const CustomField = (overrides?: Partial): Field => ({
+ name: 'customField',
+ type: 'text',
+ admin: {
+ components: {
+ Field: '/fields/CustomField/Component#CustomFieldComponent',
+ },
+ },
+ ...overrides,
+});
+```
+
+## Best Practices
+
+### Preserve Existing Config
+
+Always spread existing config and add to arrays:
+
+```ts
+// ✅ Good
+collections: [...(config.collections || []), newCollection];
+
+// ❌ Bad
+collections: [newCollection];
+```
+
+### Respect User Overrides
+
+Allow users to override plugin defaults:
+
+```ts
+const collection: CollectionConfig = {
+ slug: 'redirects',
+ fields: defaultFields,
+ ...options.overrides, // User overrides last
+};
+```
+
+### Conditional Logic
+
+Check if collections/globals are enabled:
+
+```ts
+collections: config.collections?.map((collection) => {
+ const isEnabled = options.collections?.includes(collection.slug);
+ if (isEnabled) {
+ // Transform collection
+ }
+ return collection;
+});
+```
+
+### Hook Composition
+
+Preserve existing hooks:
+
+```ts
+hooks: {
+ ...collection.hooks,
+ afterChange: [
+ myHook,
+ ...(collection.hooks?.afterChange || []),
+ ],
+}
+```
+
+### Type Safety
+
+Use Payload's exported types:
+
+```ts
+import type {
+ CollectionConfig,
+ CollectionSlug,
+ Config,
+ Field,
+ GlobalSlug,
+ Plugin,
+} from 'payload';
+```
+
+### Field Path Imports
+
+Use absolute paths for client components:
+
+```ts
+admin: {
+ components: {
+ Field: '/fields/CustomField/Component#CustomFieldComponent',
+ },
+}
+```
+
+### onInit Pattern
+
+Always call existing `onInit` before your initialization. See [onInit Hook](#oninit-hook) pattern for full example.
+
+## Advanced Patterns
+
+These patterns are extracted from official Payload plugins and represent production-ready techniques for complex plugin development.
+
+### Advanced Configuration
+
+#### Async Plugin Function
+
+Allow plugin function to be async for awaiting collection overrides or async operations:
+
+```ts
+export const myPlugin =
+ (pluginConfig?: PluginConfig) =>
+ async (incomingConfig: Config): Promise => {
+ // Can await async operations during initialization
+ const customCollection = await pluginConfig.collectionOverride?.({
+ defaultCollection,
+ });
+
+ return {
+ ...incomingConfig,
+ collections: [...incomingConfig.collections, customCollection],
+ };
+ };
+```
+
+#### Collection Override with Async Support
+
+Allow users to override entire collections with async functions:
+
+```ts
+type CollectionOverride = (args: {
+ defaultCollection: CollectionConfig;
+}) => CollectionConfig | Promise;
+
+interface PluginConfig {
+ products?: {
+ collectionOverride?: CollectionOverride;
+ };
+}
+
+// In plugin
+const defaultCollection = createProductsCollection(config);
+const finalCollection = config.products?.collectionOverride
+ ? await config.products.collectionOverride({ defaultCollection })
+ : defaultCollection;
+```
+
+#### Config Sanitization Pattern
+
+Normalize plugin configuration with defaults:
+
+```ts
+export const sanitizePluginConfig = ({
+ pluginConfig,
+}: Props): SanitizedPluginConfig => {
+ const config = { ...pluginConfig } as Partial;
+
+ // Normalize boolean|object configs
+ if (typeof config.addresses === 'undefined' || config.addresses === true) {
+ config.addresses = { addressFields: defaultAddressFields() };
+ } else if (config.addresses === false) {
+ config.addresses = null;
+ }
+
+ // Validate required fields
+ if (!config.stripeSecretKey) {
+ throw new Error('Stripe secret key is required');
+ }
+
+ return config as SanitizedPluginConfig;
+};
+
+// Use at plugin start
+export const myPlugin =
+ (pluginConfig: PluginConfig): Plugin =>
+ (config) => {
+ const sanitized = sanitizePluginConfig({ pluginConfig });
+ // Use sanitized config throughout
+ };
+```
+
+#### Collection Slug Mapping
+
+Track collection slugs when users can override them:
+
+```ts
+type CollectionSlugMap = {
+ products: string
+ variants: string
+ orders: string
+}
+
+const getCollectionSlugMap = ({ config }: { config: PluginConfig }): CollectionSlugMap => ({
+ products: config.products?.slug || 'products',
+ variants: config.variants?.slug || 'variants',
+ orders: config.orders?.slug || 'orders',
+})
+
+// Use throughout plugin
+const collectionSlugMap = getCollectionSlugMap({ config: pluginConfig })
+
+// When creating relationship fields
+{
+ name: 'product',
+ type: 'relationship',
+ relationTo: collectionSlugMap.products,
+}
+```
+
+#### Multi-Collection Configuration
+
+Plugin operates on multiple collections with collection-specific config:
+
+```ts
+interface PluginConfig {
+ sync: Array<{
+ collection: string;
+ fields?: string[];
+ onSync?: (doc: any) => Promise;
+ }>;
+}
+
+// In plugin
+for (const collection of config.collections!) {
+ const syncConfig = pluginConfig.sync?.find(
+ (s) => s.collection === collection.slug,
+ );
+ if (!syncConfig) continue;
+
+ collection.hooks.afterChange = [
+ ...(collection.hooks?.afterChange || []),
+ async ({ doc, operation }) => {
+ if (operation === 'create' || operation === 'update') {
+ await syncConfig.onSync?.(doc);
+ }
+ },
+ ];
+}
+```
+
+### TypeScript Extensions
+
+#### TypeScript Schema Extension
+
+Add custom properties to generated TypeScript schema:
+
+```ts
+incomingConfig.typescript = incomingConfig.typescript || {};
+incomingConfig.typescript.schema = incomingConfig.typescript.schema || [];
+
+incomingConfig.typescript.schema.push((args) => {
+ const { jsonSchema } = args;
+
+ jsonSchema.properties.ecommerce = {
+ type: 'object',
+ properties: {
+ collections: {
+ type: 'object',
+ properties: {
+ products: { type: 'string' },
+ orders: { type: 'string' },
+ },
+ },
+ },
+ };
+
+ return jsonSchema;
+});
+```
+
+#### Module Declaration Augmentation
+
+Extend Payload types for plugin-specific field properties:
+
+```ts
+// In plugin types file
+declare module 'payload' {
+ export interface FieldCustom {
+ 'plugin-import-export'?: {
+ disabled?: boolean
+ toCSV?: (value: any) => string
+ fromCSV?: (value: string) => any
+ }
+ }
+}
+
+// Usage with TypeScript support
+{
+ name: 'price',
+ type: 'number',
+ custom: {
+ 'plugin-import-export': {
+ toCSV: (value) => `$${value.toFixed(2)}`,
+ fromCSV: (value) => parseFloat(value.replace('$', '')),
+ },
+ },
+}
+```
+
+### Advanced Hooks
+
+#### Global Error Hooks
+
+Add global error handling:
+
+```ts
+return {
+ ...config,
+ hooks: {
+ afterError: [
+ ...(config.hooks?.afterError ?? []),
+ async (args) => {
+ const { error } = args;
+ const status = (error as APIError).status ?? 500;
+
+ if (status >= 500 || captureErrors.includes(status)) {
+ captureException(error, {
+ tags: {
+ collection: args.collection?.slug,
+ operation: args.operation,
+ },
+ user: args.req?.user ? { id: args.req.user.id } : undefined,
+ });
+ }
+ },
+ ],
+ },
+};
+```
+
+#### Multiple Hook Types on Same Collection
+
+Coordinate multiple lifecycle hooks together for complex workflows (e.g., validation → sync → cache → cleanup):
+
+```ts
+collection.hooks = {
+ ...collection.hooks,
+
+ beforeValidate: [
+ ...(collection.hooks?.beforeValidate || []),
+ async ({ data }) => {
+ // Normalize before validation
+ return data;
+ },
+ ],
+
+ beforeChange: [
+ ...(collection.hooks?.beforeChange || []),
+ async ({ data, operation }) => {
+ // Sync to external service
+ if (operation === 'create') {
+ data.externalId = await externalService.create(data);
+ }
+ return data;
+ },
+ ],
+
+ afterChange: [
+ ...(collection.hooks?.afterChange || []),
+ async ({ doc }) => {
+ // Invalidate cache
+ await cache.invalidate(`doc:${doc.id}`);
+ },
+ ],
+
+ afterDelete: [
+ ...(collection.hooks?.afterDelete || []),
+ async ({ doc }) => {
+ // Cleanup external resources
+ await externalService.delete(doc.externalId);
+ },
+ ],
+};
+```
+
+### Access Control & Filtering
+
+#### Access Control Wrapper Pattern
+
+Wrap existing access control with plugin-specific logic:
+
+```ts
+// From plugin-multi-tenant
+export const multiTenantPlugin =
+ (pluginOptions: PluginOptions) =>
+ (config: Config): Config => ({
+ ...config,
+ collections: (config.collections || []).map((collection) => {
+ if (!pluginOptions.collections.includes(collection.slug)) {
+ return collection;
+ }
+
+ return {
+ ...collection,
+ access: {
+ ...collection.access,
+ read: ({ req }) => {
+ // Inject tenant filter
+ return {
+ and: [
+ collection.access?.read ? collection.access.read({ req }) : {},
+ { tenant: { equals: req.user?.tenant } },
+ ],
+ };
+ },
+ },
+ };
+ }),
+ });
+```
+
+#### BaseFilter Composition
+
+Combine plugin filters with existing baseListFilter:
+
+```ts
+// From plugin-multi-tenant
+const existingBaseFilter = collection.admin?.baseListFilter;
+const tenantFilter = { tenant: { equals: req.user?.tenant } };
+
+collection.admin = {
+ ...collection.admin,
+ baseListFilter: existingBaseFilter
+ ? { and: [existingBaseFilter, tenantFilter] }
+ : tenantFilter,
+};
+```
+
+#### Relationship FilterOptions Modification
+
+Add filters to relationship field options:
+
+```ts
+// From plugin-multi-tenant
+collection.fields = collection.fields.map((field) => {
+ if (field.type === 'relationship') {
+ return {
+ ...field,
+ filterOptions: ({ relationTo }) => {
+ return {
+ and: [
+ field.filterOptions?.(relationTo) || {},
+ { tenant: { equals: req.user?.tenant } },
+ ],
+ };
+ },
+ };
+ }
+ return field;
+});
+```
+
+### Admin UI Customization
+
+#### Metadata Storage Pattern
+
+Use admin.meta for plugin-specific UI state without database fields:
+
+```ts
+// From plugin-nested-docs
+export const nestedDocsPlugin =
+ (pluginOptions: PluginOptions) =>
+ (config: Config): Config => ({
+ ...config,
+ collections: config.collections?.map((collection) => ({
+ ...collection,
+ admin: {
+ ...collection.admin,
+ meta: {
+ ...collection.admin?.meta,
+ nestedDocs: {
+ breadcrumbsFieldSlug:
+ pluginOptions.breadcrumbsFieldSlug || 'breadcrumbs',
+ parentFieldSlug: pluginOptions.parentFieldSlug || 'parent',
+ },
+ },
+ },
+ })),
+ });
+```
+
+#### Conditional Component Rendering
+
+Add components based on plugin configuration:
+
+```ts
+// From plugin-seo
+const beforeFields = collection.admin?.components?.beforeFields || [];
+
+if (pluginOptions.uploadsCollection === collection.slug) {
+ beforeFields.push('/path/to/ImagePreview#ImagePreview');
+}
+
+collection.admin = {
+ ...collection.admin,
+ components: {
+ ...collection.admin?.components,
+ beforeFields,
+ },
+};
+```
+
+#### Custom Provider Pattern
+
+Inject context providers for shared state:
+
+```ts
+// From plugin-nested-docs
+collection.admin = {
+ ...collection.admin,
+ components: {
+ ...collection.admin?.components,
+ providers: [
+ ...(collection.admin?.components?.providers || []),
+ '/components/NestedDocsProvider#NestedDocsProvider',
+ ],
+ },
+};
+```
+
+#### Custom Actions
+
+Add collection-level action buttons:
+
+```ts
+// From plugin-import-export
+collection.admin = {
+ ...collection.admin,
+ components: {
+ ...collection.admin?.components,
+ actions: [
+ ...(collection.admin?.components?.actions || []),
+ '/components/ImportButton#ImportButton',
+ '/components/ExportButton#ExportButton',
+ ],
+ },
+};
+```
+
+#### Custom List Item Views
+
+Modify how items appear in collection lists:
+
+```ts
+// From plugin-ecommerce
+collection.admin = {
+ ...collection.admin,
+ components: {
+ ...collection.admin?.components,
+ views: {
+ ...collection.admin?.components?.views,
+ list: {
+ ...collection.admin?.components?.views?.list,
+ Component: '/views/ProductList#ProductList',
+ },
+ },
+ },
+};
+```
+
+#### Custom Collection Endpoints
+
+Add collection-scoped endpoints (accessible at `/api//`):
+
+```ts
+// From plugin-import-export
+collection.endpoints = [
+ ...(collection.endpoints || []),
+ {
+ path: '/import',
+ method: 'post',
+ handler: async (req) => {
+ // Import logic accessible at /api/posts/import
+ return Response.json({ success: true });
+ },
+ },
+ {
+ path: '/export',
+ method: 'get',
+ handler: async (req) => {
+ // Export logic accessible at /api/posts/export
+ return Response.json({ data: exportedData });
+ },
+ },
+];
+```
+
+### Field & Collection Modifications
+
+#### Admin Folders Override
+
+Control admin UI organization:
+
+```ts
+// From plugin-redirects
+collection.admin = {
+ ...collection.admin,
+ group: pluginOptions.group || 'Settings',
+ hidden: pluginOptions.hidden,
+ defaultColumns: pluginOptions.defaultColumns || ['from', 'to', 'updatedAt'],
+};
+```
+
+### Background Jobs & Async Operations
+
+#### Jobs Registration
+
+Register plugin background tasks:
+
+```ts
+// From plugin-stripe
+export const stripePlugin =
+ (pluginOptions: PluginOptions) =>
+ (config: Config): Config => ({
+ ...config,
+ jobs: {
+ ...config.jobs,
+ tasks: [
+ ...(config.jobs?.tasks || []),
+ {
+ slug: 'syncStripeProducts',
+ handler: async ({ req }) => {
+ const products = await stripe.products.list();
+ // Sync to Payload
+ return { output: { synced: products.data.length } };
+ },
+ },
+ ],
+ },
+ });
+```
+
+## Testing Plugins
+
+### Local Development with dev/ Directory (optional)
+
+Include a `dev/` directory with a complete Payload project for local development:
+
+1. Create `dev/.env` from `.env.example`:
+
+```bash
+DATABASE_URL=mongodb://127.0.0.1/plugin-dev
+PAYLOAD_SECRET=your-secret-here
+```
+
+2. Configure `dev/payload.config.ts`:
+
+```ts
+import { mongooseAdapter } from '@payloadcms/db-mongodb';
+import { buildConfig } from 'payload';
+
+import { myPlugin } from '../src/index.js';
+
+export default buildConfig({
+ secret: process.env.PAYLOAD_SECRET!,
+ db: mongooseAdapter({ url: process.env.DATABASE_URL! }),
+ plugins: [
+ myPlugin({
+ collections: ['posts'],
+ }),
+ ],
+ collections: [
+ {
+ slug: 'posts',
+ fields: [{ name: 'title', type: 'text' }],
+ },
+ ],
+});
+```
+
+3. Run development server:
+
+```bash
+npm run dev # Starts Next.js on http://localhost:3000
+```
+
+### Integration Tests (Vitest) (optional)
+
+Create `dev/int.spec.ts`:
+
+```ts
+import type { Payload } from 'payload';
+import config from '@payload-config';
+import { createPayloadRequest, getPayload } from 'payload';
+import { afterAll, beforeAll, describe, expect, test } from 'vitest';
+
+import { customEndpointHandler } from '../src/endpoints/handler.js';
+
+let payload: Payload;
+
+beforeAll(async () => {
+ payload = await getPayload({ config });
+});
+
+afterAll(async () => {
+ await payload.destroy();
+});
+
+describe('Plugin integration tests', () => {
+ test('should add field to collection', async () => {
+ const post = await payload.create({
+ collection: 'posts',
+ data: {
+ title: 'Test',
+ addedByPlugin: 'plugin value',
+ },
+ });
+ expect(post.addedByPlugin).toBe('plugin value');
+ });
+
+ test('should create plugin collection', async () => {
+ expect(payload.collections['plugin-collection']).toBeDefined();
+ const { docs } = await payload.find({ collection: 'plugin-collection' });
+ expect(docs.length).toBeGreaterThan(0);
+ });
+
+ test('should query custom endpoint', async () => {
+ const request = new Request('http://localhost:3000/api/my-endpoint');
+ const payloadRequest = await createPayloadRequest({ config, request });
+ const response = await customEndpointHandler(payloadRequest);
+ const data = await response.json();
+ expect(data).toMatchObject({ message: 'Hello' });
+ });
+});
+```
+
+Run: `npm run test:int`
+
+### End-to-End Tests (Playwright)
+
+Create `dev/e2e.spec.ts`:
+
+```ts
+import { expect, test } from '@playwright/test';
+
+test.describe('Plugin e2e tests', () => {
+ test('should render custom admin component', async ({ page }) => {
+ await page.goto('http://localhost:3000/admin');
+ await expect(page.getByText('Added by the plugin')).toBeVisible();
+ });
+});
+```
+
+Run: `npm run test:e2e`
+
+## Common Plugin Types
+
+### Field Enhancer
+
+Adds fields to existing collections (SEO, timestamps, audit logs)
+
+### Collection Provider
+
+Adds new collections (redirects, forms, logs)
+
+### Hook Injector
+
+Adds hooks to collections (nested docs, cache invalidation)
+
+### UI Enhancer
+
+Adds custom components (dashboards, field types)
+
+### Integration
+
+Connects external services (Stripe, Sentry, storage adapters)
+
+### Adapter
+
+Provides infrastructure (database, storage, email)
+
+## Resources
+
+- [Plugin Examples](https://github.com/payloadcms/payload/tree/main/packages/) - Official plugins source code, payload-\* prefix
+- [Plugin Template](https://github.com/payloadcms/payload/tree/main/templates/plugin) - Starter template for new plugins
diff --git a/.claude/skills/payload/reference/QUERIES.md b/.claude/skills/payload/reference/QUERIES.md
new file mode 100644
index 0000000..5e46811
--- /dev/null
+++ b/.claude/skills/payload/reference/QUERIES.md
@@ -0,0 +1,278 @@
+# Payload CMS Querying Reference
+
+Complete reference for querying data across Local API, REST, and GraphQL.
+
+## Query Operators
+
+```ts
+import type { Where } from 'payload';
+
+// Equals
+const equalsQuery: Where = { color: { equals: 'blue' } };
+
+// Not equals
+const notEqualsQuery: Where = { status: { not_equals: 'draft' } };
+
+// Greater/less than
+const greaterThanQuery: Where = { price: { greater_than: 100 } };
+const lessThanEqualQuery: Where = { age: { less_than_equal: 65 } };
+
+// Contains (case-insensitive)
+const containsQuery: Where = { title: { contains: 'payload' } };
+
+// Like (all words present)
+const likeQuery: Where = { description: { like: 'cms headless' } };
+
+// In/not in
+const inQuery: Where = { category: { in: ['tech', 'news'] } };
+
+// Exists
+const existsQuery: Where = { image: { exists: true } };
+
+// Near (point fields)
+const nearQuery: Where = { location: { near: '-122.4194,37.7749,10000' } };
+```
+
+## AND/OR Logic
+
+```ts
+import type { Where } from 'payload';
+
+const complexQuery: Where = {
+ or: [
+ { color: { equals: 'mint' } },
+ {
+ and: [{ color: { equals: 'white' } }, { featured: { equals: false } }],
+ },
+ ],
+};
+```
+
+## Nested Properties
+
+```ts
+import type { Where } from 'payload';
+
+const nestedQuery: Where = {
+ 'author.role': { equals: 'editor' },
+ 'meta.featured': { exists: true },
+};
+```
+
+## Local API
+
+```ts
+// Find documents
+const posts = await payload.find({
+ collection: 'posts',
+ where: {
+ status: { equals: 'published' },
+ 'author.name': { contains: 'john' },
+ },
+ depth: 2,
+ limit: 10,
+ page: 1,
+ sort: '-createdAt',
+ locale: 'en',
+ select: {
+ title: true,
+ author: true,
+ },
+});
+
+// Find by ID
+const post = await payload.findByID({
+ collection: 'posts',
+ id: '123',
+ depth: 2,
+});
+
+// Create
+const post = await payload.create({
+ collection: 'posts',
+ data: {
+ title: 'New Post',
+ status: 'draft',
+ },
+});
+
+// Update
+await payload.update({
+ collection: 'posts',
+ id: '123',
+ data: {
+ status: 'published',
+ },
+});
+
+// Delete
+await payload.delete({
+ collection: 'posts',
+ id: '123',
+});
+
+// Count
+const count = await payload.count({
+ collection: 'posts',
+ where: {
+ status: { equals: 'published' },
+ },
+});
+```
+
+### Threading req Parameter
+
+When performing operations in hooks or nested operations, pass the `req` parameter to maintain transaction context:
+
+```ts
+// ✅ CORRECT: Pass req for transaction safety
+const afterChange: CollectionAfterChangeHook = async ({ doc, req }) => {
+ await req.payload.create({
+ collection: 'audit-log',
+ data: { action: 'created', docId: doc.id },
+ req, // Maintains transaction atomicity
+ });
+};
+
+// ❌ WRONG: Missing req breaks transaction
+const afterChange: CollectionAfterChangeHook = async ({ doc, req }) => {
+ await req.payload.create({
+ collection: 'audit-log',
+ data: { action: 'created', docId: doc.id },
+ // Missing req - runs in separate transaction
+ });
+};
+```
+
+This is critical for MongoDB replica sets and Postgres. See [ADAPTERS.md#threading-req-through-operations](ADAPTERS.md#threading-req-through-operations) for details.
+
+### Access Control in Local API
+
+**Important**: Local API bypasses access control by default (`overrideAccess: true`). When passing a `user` parameter, you must explicitly set `overrideAccess: false` to respect that user's permissions.
+
+```ts
+// ❌ WRONG: User is passed but access control is bypassed
+const posts = await payload.find({
+ collection: 'posts',
+ user: currentUser,
+ // Missing: overrideAccess: false
+ // Result: Operation runs with ADMIN privileges, ignoring user's permissions
+});
+
+// ✅ CORRECT: Respects user's access control permissions
+const posts = await payload.find({
+ collection: 'posts',
+ user: currentUser,
+ overrideAccess: false, // Required to enforce access control
+ // Result: User only sees posts they have permission to read
+});
+
+// Administrative operation (intentionally bypass access control)
+const allPosts = await payload.find({
+ collection: 'posts',
+ // No user parameter
+ // overrideAccess defaults to true
+ // Result: Returns all posts regardless of access control
+});
+```
+
+**When to use `overrideAccess: false`:**
+
+- Performing operations on behalf of a user
+- Testing access control logic
+- API routes that should respect user permissions
+- Any operation where `user` parameter is provided
+
+**When `overrideAccess: true` is appropriate:**
+
+- Administrative operations (migrations, seeds, cron jobs)
+- Internal system operations
+- Operations explicitly intended to bypass access control
+
+See [ACCESS-CONTROL.md#important-notes](ACCESS-CONTROL.md#important-notes) for more details.
+
+## REST API
+
+```ts
+import { stringify } from 'qs-esm';
+
+const query = {
+ status: { equals: 'published' },
+};
+
+const queryString = stringify(
+ {
+ where: query,
+ depth: 2,
+ limit: 10,
+ },
+ { addQueryPrefix: true },
+);
+
+const response = await fetch(`https://api.example.com/api/posts${queryString}`);
+const data = await response.json();
+```
+
+### REST Endpoints
+
+```txt
+GET /api/{collection} - Find documents
+GET /api/{collection}/{id} - Find by ID
+POST /api/{collection} - Create
+PATCH /api/{collection}/{id} - Update
+DELETE /api/{collection}/{id} - Delete
+GET /api/{collection}/count - Count documents
+
+GET /api/globals/{slug} - Get global
+POST /api/globals/{slug} - Update global
+```
+
+## GraphQL
+
+```graphql
+query {
+ Posts(
+ where: { status: { equals: published } }
+ limit: 10
+ sort: "-createdAt"
+ ) {
+ docs {
+ id
+ title
+ author {
+ name
+ }
+ }
+ totalDocs
+ hasNextPage
+ }
+}
+
+mutation {
+ createPost(data: { title: "New Post", status: draft }) {
+ id
+ title
+ }
+}
+
+mutation {
+ updatePost(id: "123", data: { status: published }) {
+ id
+ status
+ }
+}
+
+mutation {
+ deletePost(id: "123") {
+ id
+ }
+}
+```
+
+## Performance Best Practices
+
+- Set `maxDepth` on relationships to prevent over-fetching
+- Use `select` to limit returned fields
+- Index frequently queried fields
+- Use `virtual` fields for computed data
+- Cache expensive operations in hook `context`
diff --git a/.dockerignore b/.dockerignore
index fc1f90f..7792e38 100644
--- a/.dockerignore
+++ b/.dockerignore
@@ -18,9 +18,10 @@ out
.git
.gitignore
*.log
-#.env
-#.env.*
-!.env.example
+.env
+.env.*
+.local
+**/.local
.vscode
.idea
@@ -47,3 +48,12 @@ Thumbs.db
docker
Dockerfile
.dockerignore
+
+# Docs
+docs
+README.md
+
+# AI Stuff
+.claude
+AGENTS.md
+CLAUDE.md
diff --git a/.env.example b/.env.example
deleted file mode 100644
index 4299377..0000000
--- a/.env.example
+++ /dev/null
@@ -1,26 +0,0 @@
-# Since .env is gitignored, you can use .env.example to build a new `.env` file when you clone the repo.
-# Keep this file up-to-date when you add new variables to \`.env\`.
-# This file will be committed to version control, so make sure not to have any secrets in it.
-# If you are cloning this repo, create a copy of this file named `.env` and populate it with your secrets.
-## Next.js ##
-NODE_ENV=
-SENTRY_AUTH_TOKEN=
-NEXT_PUBLIC_SITE_URL=https://example.com
-NEXT_PUBLIC_CONVEX_URL=https://api.convex.example.com # convex-backend:3210
-NEXT_PUBLIC_PLAUSIBLE_URL=https://plausible.example.com
-NEXT_PUBLIC_SENTRY_DSN=
-NEXT_PUBLIC_SENTRY_URL=https://sentry.example.com
-NEXT_PUBLIC_SENTRY_ORG=sentry
-NEXT_PUBLIC_SENTRY_PROJECT_NAME=example
-
-## Convex ##
-CONVEX_SELF_HOSTED_URL=https://api.convex.example.com # convex-backend:3210
-CONVEX_SELF_HOSTED_ADMIN_KEY= # Generate after hosted on docker
-# Convex Auth
-CONVEX_SITE_URL=http://localhost:3000 # Always localhost:3000 for local dev; update in Convex Dashboard for production
-USESEND_API_KEY=
-USESEND_URL=https://usesend.example.com
-USESEND_FROM_EMAIL=My App
-AUTH_AUTHENTIK_ID=
-AUTH_AUTHENTIK_SECRET=
-AUTH_AUTHENTIK_ISSUER=
diff --git a/.gitea/workflows/build-next.yml b/.gitea/workflows/build-next.yml
new file mode 100644
index 0000000..e918a0e
--- /dev/null
+++ b/.gitea/workflows/build-next.yml
@@ -0,0 +1,56 @@
+name: Build and Push Next App
+
+on:
+ push:
+ branches: [main]
+ paths:
+ - 'apps/**'
+ - 'packages/**'
+ - 'tools/**'
+ - 'scripts/**'
+ - 'docker/**'
+ - '.gitea/workflows/build-next.yml'
+ - '.infisical.json'
+ - 'package.json'
+ - 'bun.lock'
+ - 'turbo.json'
+
+jobs:
+ quality:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v4
+ - uses: oven-sh/setup-bun@v2
+ with:
+ bun-version: 1.3.10
+ - run: bun install --frozen-lockfile
+ - name: Lint, typecheck, and test
+ env:
+ DOTENV_PROD: ${{ secrets.DOTENV_PROD }}
+ run: |
+ env_file="$(mktemp)"
+ trap 'rm -f "$env_file"' EXIT
+ printf '%s\n' "$DOTENV_PROD" > "$env_file"
+ bunx dotenv -e "$env_file" -- env NODE_ENV=test SKIP_E2E=1 bun run ci:check
+
+ build-next:
+ needs: [quality]
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v4
+ - name: Log in to container registry
+ run: echo "${{ secrets.REGISTRY_PASSWORD }}" | docker login git.gbrown.org -u "${{ secrets.REGISTRY_USER }}" --password-stdin
+ - name: Build image
+ env:
+ DOTENV_PROD: ${{ secrets.DOTENV_PROD }}
+ run: |
+ env_file="$(mktemp)"
+ trap 'rm -f "$env_file"' EXIT
+ printf '%s\n' "$DOTENV_PROD" > "$env_file"
+ CI_ENV_FILE="$env_file" ./scripts/build-next-app staging
+ - name: Tag and push image
+ run: |
+ docker tag convexmonorepo-next:latest git.gbrown.org/gib/convexmonorepo-next:${{ gitea.sha }}
+ docker tag convexmonorepo-next:latest git.gbrown.org/gib/convexmonorepo-next:latest
+ docker push git.gbrown.org/gib/convexmonorepo-next:${{ gitea.sha }}
+ docker push git.gbrown.org/gib/convexmonorepo-next:latest
diff --git a/.gitignore b/.gitignore
index d1e9ff6..71c6ac5 100644
--- a/.gitignore
+++ b/.gitignore
@@ -10,6 +10,10 @@ node_modules
# testing
coverage
+**/.cache/
+
+# generated Convex client/server bindings (tracked, but not linted/formatted)
+packages/backend/convex/_generated/
# next.js
.next/
@@ -48,9 +52,17 @@ yarn-error.log*
.env.test.local
.env.production.local
.env
+.env.staging
+.local/
# turbo
-.turbo
+.turbo/
+**/.turbo/
+
+# playwright e2e
+apps/next/tests/e2e/.auth/
+apps/next/test-results/
+apps/next/playwright-report/
# tanstack
.tanstack
diff --git a/.husky/pre-commit b/.husky/pre-commit
new file mode 100755
index 0000000..8db4926
--- /dev/null
+++ b/.husky/pre-commit
@@ -0,0 +1 @@
+bunx lint-staged --concurrent 1
diff --git a/.husky/pre-push b/.husky/pre-push
new file mode 100755
index 0000000..1e6a745
--- /dev/null
+++ b/.husky/pre-push
@@ -0,0 +1 @@
+bun run ci:check
diff --git a/.infisical.json b/.infisical.json
new file mode 100644
index 0000000..96c2371
--- /dev/null
+++ b/.infisical.json
@@ -0,0 +1,5 @@
+{
+ "workspaceId": "b2760150-c581-4e0d-acb5-b4da51cee58d",
+ "defaultEnvironment": "",
+ "gitBranchToEnvironmentMapping": null
+}
diff --git a/AGENTS.md b/AGENTS.md
index e34b2e6..7effe7c 100644
--- a/AGENTS.md
+++ b/AGENTS.md
@@ -1,1411 +1,64 @@
-# AGENTS.md — Convex Turbo Monorepo
+# AGENTS.md
-This is the definitive onboarding guide for AI agents (and humans) working in this
-repository. Read it fully before making any changes. It covers architecture, patterns,
-constraints, and known issues — everything you need to work effectively without
-breaking things or introducing inconsistencies.
+## Architecture
----
+- `apps/next`: Next.js 16 frontend.
+- `apps/expo`: Expo scaffold; only work here when explicitly requested.
+- `packages/backend/convex`: self-hosted Convex functions, schema, and auth.
+- `packages/ui`: shared shadcn-based UI components.
+- `tools`: shared ESLint, Prettier, Tailwind, TypeScript, and Vitest config.
+- Local development uses host-run apps, local Convex on ports 3210/3211, and
+ its own data volume. Convex does not use Postgres unless a cloned project
+ explicitly enables the commented optional `POSTGRES_URL` example.
-## Table of Contents
+## Protected and generated files
-1. [What This Repo Is](#1-what-this-repo-is)
-2. [Critical Rules — Read First](#2-critical-rules--read-first)
-3. [Monorepo Architecture Overview](#3-monorepo-architecture-overview)
-4. [Self-Hosted Stack & Runtime Requirements](#4-self-hosted-stack--runtime-requirements)
-5. [Environment Variables — Complete Reference](#5-environment-variables--complete-reference)
-6. [Dependency Management — The Catalog System](#6-dependency-management--the-catalog-system)
-7. [Convex Backend Deep Dive](#7-convex-backend-deep-dive)
-8. [Next.js App Deep Dive](#8-nextjs-app-deep-dive)
-9. [UI Package (`@gib/ui`)](#9-ui-package-gibui)
-10. [Tools — Shared Configuration Packages](#10-tools--shared-configuration-packages)
-11. [Docker & Deployment](#11-docker--deployment)
-12. [Code Style Reference](#12-code-style-reference)
-13. [Adding New Features — Checklists](#13-adding-new-features--checklists)
-14. [Expo App — Known Issues, Do Not Touch](#14-expo-app--known-issues-do-not-touch)
-15. [Known Issues & Technical Debt](#15-known-issues--technical-debt)
-16. [Quick Command Reference](#16-quick-command-reference)
+- Never edit `packages/backend/convex/_generated/**` or
+ `packages/backend/convex/http.ts`.
+- Do not rename `apps/next/next.config.js` or `apps/next/src/proxy.ts`.
+- Preserve `typescript.ignoreBuildErrors` in Next config.
+- Do not modify Sentry config or `tools/tailwind/theme.css` unless requested.
+- Generated `.cache`, `.turbo`, `.local`, and environment files are ignored.
----
+## Environment rules
-## 1. What This Repo Is
+- Local `dev` and `staging` come only from Infisical via
+ `scripts/with-env`; it never falls back to `.env*`.
+- Run `infisical login` and `infisical init` before local development.
+- Machine-generated values belong in `.local/.generated.env`; never put
+ the generated Convex admin key in shared Infisical.
+- CI uses Gitea-injected secrets or `CI_ENV_FILE` and must not call Infisical.
+- App code imports validated variables from `@/env`, never `process.env`.
+- Add cache-relevant variables to `turbo.json` `globalEnv`.
-This is a personal full-stack monorepo template for spinning up self-hosted web
-applications quickly. The core idea: clone the repo, configure the environment
-variables, stand up two Docker containers for Convex, reverse-proxy them through
-nginx-proxy-manager, and you have a production-ready Next.js website with:
+## Code and dependency rules
-- **Self-hosted Convex** as the backend/database (not Convex Cloud)
-- **Convex Auth** with two providers: Authentik (OAuth SSO) and a custom Password
- provider with email OTP via a self-hosted UseSend instance
-- **Sentry** for error tracking and performance monitoring
-- **Plausible** for privacy-focused analytics
-- A **stubbed Expo app** that is present for future mobile work but is not the focus
+- Use `const` arrow functions instead of function declarations.
+- Add `.js` extensions to Convex generated-file imports.
+- Put custom frontend routes directly in `apps/next/src/app` or normal route
+ groups such as `apps/next/src/app/(auth)`.
+- Extend the Convex `users` table for application user data; do not add a
+ profile table by default. Authenticate protected functions.
+- Manage shared versions in root catalogs. Never run `bun update` in a package.
+- Run root `bun install` and verify with `bun lint:ws`.
+- Update this guide when architecture or workflows change.
-The primary deliverable from this template is the **Next.js web app**. Every project
-built from this template has been entirely focused on `apps/next/` and
-`packages/backend/`. The Expo app exists structurally but is non-functional and
-should be ignored unless explicitly asked to work on it.
+## Local stack
-When working in this repo as an AI agent, you are almost certainly working on an
-existing running instance of this template — the Convex backend is already deployed,
-auth is already configured, and your job is to build features on top of the
-established foundation.
-
----
-
-## 2. Critical Rules — Read First
-
-These are hard constraints. Violating them will break things that are intentionally
-configured and difficult to re-stabilize.
-
-### Never do these without explicit instruction:
-
-- **NEVER modify anything inside `packages/backend/convex/_generated/`** — these
- files are auto-generated by the Convex CLI and will be overwritten. Read them for
- type information, never edit them.
-
-- **NEVER rename `apps/next/next.config.js` to `next.config.ts`** — the config uses
- `jiti` to import `./src/env.ts` (a TypeScript file) at build time. This pattern
- only works when the config itself is a `.js` file. Renaming it to `.ts` will break
- the build.
-
-- **NEVER rename `apps/next/src/proxy.ts` to `middleware.ts`** — `proxy.ts` is the
- correct and intentional name for the Next.js route handler file in Next.js 16+.
- This was an official rename from the Next.js team to reduce confusion. The file
- works exactly as middleware did; it's just named differently now.
-
-- **NEVER modify the Sentry configuration files without explicit instruction** — these
- took significant effort to get working correctly with the standalone Docker build,
- Plausible proxy, and self-hosted Sentry. The files to leave alone are:
- - `apps/next/next.config.js`
- - `apps/next/src/instrumentation.ts`
- - `apps/next/src/instrumentation-client.ts`
- - `apps/next/src/sentry.server.config.ts`
-
-- **NEVER remove `typescript.ignoreBuildErrors: true` from `next.config.js`** — some
- shadcn/ui components produce spurious TypeScript build errors. This flag keeps the
- build working. It's intentional and should stay until explicitly removed.
-
-- **NEVER modify `tools/tailwind/theme.css` without explicit instruction** — this file
- contains the entire OKLCH-based design system. When a theme change is needed, the
- file is replaced wholesale with a new theme generated from a shadcn theme generator.
- Don't tweak individual values without being asked.
-
-- **NEVER touch `packages/backend/convex/http.ts`** — this file only calls
- `auth.addHttpRoutes(http)` and must stay exactly as it is for Convex Auth to work.
-
-### Always do these:
-
-- **ALWAYS use `bun typecheck` to validate your work**, never `bun build`. Typecheck
- is fast and sufficient. Build is slow and for production deployments only.
-
-- **ALWAYS use `const` arrow functions over `function` declarations** — this is a
- strong style preference throughout the codebase:
-
- ```typescript
- // ✅ Correct
- const handleSubmit = async (data: FormData) => { ... };
- const MyComponent = () => { ... };
-
- // ❌ Wrong
- function handleSubmit(data: FormData) { ... }
- function MyComponent() { ... }
- ```
-
- Note: exported Convex functions (`query`, `mutation`, `action`) are already defined
- using the Convex builder pattern and are fine as-is.
-
-- **ALWAYS import env vars from `@/env`**, never from `process.env` directly. The
- ESLint `restrictEnvAccess` rule will error if you use `process.env` anywhere outside
- of `apps/next/src/env.ts`.
-
-- **ALWAYS add `.js` extensions** when importing from Convex-generated files:
-
- ```typescript
- // ✅ Correct
- import type { Id } from '@gib/backend/convex/_generated/dataModel.js';
- // ❌ Wrong — will fail at runtime
- import { api } from '@gib/backend/convex/_generated/api';
- import { api } from '@gib/backend/convex/_generated/api.js';
- ```
-
- The project uses `"type": "module"` in all `package.json` files, which requires
- explicit file extensions for ESM imports. The `.js` extension is required even
- though the source files are `.ts`.
-
----
-
-## 3. Monorepo Architecture Overview
-
-This is a Turborepo monorepo with three top-level categories of packages:
-
-```
-convex-monorepo/
-├── apps/
-│ ├── next/ # @gib/next — Next.js 16 web application
-│ └── expo/ # @gib/expo — Expo 54 mobile app (WIP, broken)
-├── packages/
-│ ├── backend/ # @gib/backend — Self-hosted Convex backend
-│ └── ui/ # @gib/ui — Shared shadcn/ui component library
-├── tools/
-│ ├── eslint/ # @gib/eslint-config — ESLint configuration
-│ ├── prettier/ # @gib/prettier-config — Prettier + import sorting
-│ ├── tailwind/ # @gib/tailwind-config — Tailwind v4 + theme
-│ └── typescript/ # @gib/tsconfig — Shared TypeScript configs
-├── docker/ # Docker Compose for self-hosted deployment
-├── turbo/ # Turborepo generators (scaffolding)
-├── turbo.json # Turborepo pipeline configuration
-├── package.json # Root workspace + dependency catalogs
-└── .env # Central environment variables (gitignored)
+```sh
+bun db:up # start Convex and dashboard
+bun dev:next # host Next + deploy/watch local Convex functions
+bun db:down # stop and preserve Convex data
+bun db:down:wipe # remove Convex volume and generated admin key
```
-### How the pieces connect
+Local URLs: app `http://localhost:3000`, Convex `http://localhost:3210`,
+dashboard `http://localhost:6791`.
+Use `INFISICAL_ENV=staging bun dev:next` for staging services. Normal `db:up`
+never connects to staging and does not start Postgres.
-The dependency graph flows like this:
+## Validation
-```
-@gib/tsconfig
- └── @gib/eslint-config
- └── @gib/tailwind-config
- └── @gib/prettier-config
- └── @gib/ui (components + shared styles)
- └── @gib/backend (Convex functions + types)
- └── @gib/next (consumes everything)
-```
-
-`tools/` packages are pure configuration — they export ESLint rules, TypeScript
-compiler options, Tailwind PostCSS config, and Prettier options. Every app and package
-extends them; you should rarely need to modify them.
-
-`packages/ui` contains every shadcn/ui component plus a few custom additions.
-Everything is re-exported from a single `@gib/ui` barrel — no package-specific deep
-imports needed.
-
-`packages/backend` is the Convex backend. Only the `convex/` subdirectory is synced
-to the Convex deployment. The `scripts/` and `types/` directories sit outside
-`convex/` intentionally so they're not uploaded to Convex cloud.
-
-### Turborepo pipeline
-
-`turbo.json` defines the task pipeline. Key points for agents:
-
-- **`globalEnv`** — all environment variables that affect builds must be listed here,
- or Turborepo won't include them in cache keys and cached outputs may be stale.
- Whenever you add a new env var, add it to `globalEnv`.
-- **`globalDependencies`** — `**/.env.*local` is tracked, so changes to
- `.env.local` files invalidate the cache.
-- The `build` task runs `^build` (dependencies first), then emits to `dist/`.
-- The `dev` task is not cached and not persistent (`persistent: false` means
- Turborepo considers it non-blocking).
-- `typecheck` and `lint` both depend on `^topo` and `^build`, meaning they wait for
- dependency packages to build first.
-
----
-
-## 4. Self-Hosted Stack & Runtime Requirements
-
-### Before any development work can start
-
-The Convex backend must be running and reachable. `bun dev:next` will fail or behave
-unexpectedly if it cannot connect to Convex. In practice, when you are working in this
-repo on an active project, the Convex containers are already running on the server and
-have been configured. If you are starting fresh from the template, see the README for
-the full setup walkthrough.
-
-The two Convex-related Docker containers are:
-
-- **`convex-backend`** — the actual Convex runtime (default: `https://api.convexmonorepo.gbrown.org`)
-- **`convex-dashboard`** — the admin UI (default: `https://dashboard.convexmonorepo.gbrown.org`)
-
-### The `packages/backend/.env.local` file
-
-You may notice a `.env.local` file in `packages/backend/`. This file is
-auto-generated by the `convex dev` command and is not something agents need to create
-or manage. It contains `CONVEX_URL` and `CONVEX_SITE_URL` values that Convex uses
-internally when running `bun dev:backend`. It is gitignored and can be safely ignored.
-
-### `CONVEX_SITE_URL` — a nuance worth understanding
-
-`CONVEX_SITE_URL` is used by `packages/backend/convex/auth.config.ts` as the CORS
-domain that Convex Auth trusts for token exchange. For **local development**, this
-should always be `http://localhost:3000` (the Next.js dev server). For **production**,
-this needs to match your public domain — but this value must be updated directly in
-the **Convex Dashboard** (environment variables section), not just in the root `.env`.
-
-The value in `.env` is always `http://localhost:3000` for dev. When you need Convex
-Auth to work on your production domain, go to the Convex Dashboard at
-`https://dashboard.convexmonorepo.gbrown.org` and update `CONVEX_SITE_URL` there.
-
----
-
-## 5. Environment Variables — Complete Reference
-
-### The single source of truth: `/.env`
-
-All environment variables live in the root `.env` file. Every app and package loads
-them via `dotenv-cli` using the `with-env` script pattern:
-
-```json
-"with-env": "dotenv -e ../../.env --"
-```
-
-The root `.env` is gitignored. The root `.env.example` is the committed template that
-shows all required variable names without real values. **Keep `.env.example` up to
-date whenever you add a new env var.**
-
-### Complete variable reference
-
-| Variable | Used By | Purpose | Sync to Convex? |
-| --------------------------------- | -------------- | ------------------------------------------------------------------------ | --------------- |
-| `NODE_ENV` | Next.js | `development` / `production` | No |
-| `SENTRY_AUTH_TOKEN` | Next.js build | Source map upload to Sentry | No |
-| `NEXT_PUBLIC_SITE_URL` | Next.js | Public URL of the Next.js app | No |
-| `NEXT_PUBLIC_CONVEX_URL` | Next.js | Convex backend API URL | No |
-| `NEXT_PUBLIC_PLAUSIBLE_URL` | Next.js | Self-hosted Plausible instance URL | No |
-| `NEXT_PUBLIC_SENTRY_DSN` | Next.js | Sentry DSN for error reporting | No |
-| `NEXT_PUBLIC_SENTRY_URL` | Next.js build | Self-hosted Sentry URL | No |
-| `NEXT_PUBLIC_SENTRY_ORG` | Next.js build | Sentry organization slug | No |
-| `NEXT_PUBLIC_SENTRY_PROJECT_NAME` | Next.js build | Sentry project name | No |
-| `CONVEX_SELF_HOSTED_URL` | Convex CLI | URL of the self-hosted Convex backend | No |
-| `CONVEX_SELF_HOSTED_ADMIN_KEY` | Convex CLI | Admin key for the self-hosted backend | No |
-| `CONVEX_SITE_URL` | Convex Auth | CORS domain for token exchange (localhost:3000 for dev) | Yes (Dashboard) |
-| `USESEND_API_KEY` | Convex backend | API key for the self-hosted UseSend instance | Yes |
-| `USESEND_URL` | Convex backend | URL of the self-hosted UseSend instance | Yes |
-| `USESEND_FROM_EMAIL` | Convex backend | From address for transactional emails (e.g. `App `) | Yes |
-| `AUTH_AUTHENTIK_ID` | Convex backend | Authentik OAuth client ID | Yes |
-| `AUTH_AUTHENTIK_SECRET` | Convex backend | Authentik OAuth client secret | Yes |
-| `AUTH_AUTHENTIK_ISSUER` | Convex backend | Authentik issuer URL | Yes |
-
-### Typesafe env vars — `apps/next/src/env.ts`
-
-The Next.js app uses `@t3-oss/env-nextjs` with Zod to validate all environment
-variables at build time. This file is the contract between the `.env` file and the
-application code.
-
-The ESLint `restrictEnvAccess` rule in `@gib/eslint-config` blocks direct
-`process.env` access everywhere except in `env.ts`. All app code must import the
-validated `env` object:
-
-```typescript
-import { env } from '@/env';
-
-// ✅ Correct — validated and typed
-const url = env.NEXT_PUBLIC_CONVEX_URL;
-
-// ❌ Will trigger ESLint error
-const url = process.env.NEXT_PUBLIC_CONVEX_URL;
-```
-
-### Adding a new environment variable — the 4-step checklist
-
-Every time you introduce a new env var, all four of these steps are required:
-
-**Step 1: Add to `/.env`**
-
-```bash
-MY_NEW_VAR=value
-```
-
-**Step 2: Add to `apps/next/src/env.ts`**
-
-```typescript
-// In the server{} block for server-only vars:
-MY_NEW_VAR: z.string(),
-
-// In the client{} block for NEXT_PUBLIC_ vars:
-NEXT_PUBLIC_MY_VAR: z.url(),
-
-// And in the runtimeEnv{} block:
-MY_NEW_VAR: process.env.MY_NEW_VAR,
-```
-
-**Step 3: Add to `turbo.json` `globalEnv` array**
-
-```json
-"globalEnv": [
- ...,
- "MY_NEW_VAR"
-]
-```
-
-Skipping this means Turborepo won't bust its cache when the variable changes.
-
-**Step 4 (if the backend needs it): Sync to Convex**
-
-```bash
-# From packages/backend/
-bun with-env npx convex env set MY_NEW_VAR "value"
-```
-
-Or set it directly in the Convex Dashboard.
-
-Also update `/.env.example` with the new variable (empty value or a placeholder).
-
----
-
-## 6. Dependency Management — The Catalog System
-
-### What catalogs are
-
-The root `package.json` uses Bun workspaces with a catalog system — a single source
-of truth for shared dependency versions. When a package declares `"react": "catalog:react19"`,
-it means "use whatever version is defined in the `react19` catalog in the root
-`package.json`". This prevents version drift across packages.
-
-The current catalogs:
-
-```json
-"catalog": {
- "@eslint/js": "^9.38.0",
- "@tailwindcss/postcss": "^4.1.16",
- "@types/node": "^22.19.15",
- "eslint": "^9.39.4",
- "prettier": "^3.8.1",
- "tailwindcss": "^4.1.16",
- "typescript": "^5.9.3",
- "zod": "^4.3.6"
-},
-"catalogs": {
- "convex": {
- "convex": "^1.33.1",
- "@convex-dev/auth": "^0.0.81"
- },
- "react19": {
- "@types/react": "~19.1.0",
- "@types/react-dom": "~19.1.0",
- "react": "19.1.4",
- "react-dom": "19.1.4"
- }
-}
-```
-
-Usage in package `package.json` files:
-
-```json
-"dependencies": {
- "convex": "catalog:convex",
- "react": "catalog:react19",
- "typescript": "catalog:",
- "zod": "catalog:"
-},
-"devDependencies": {
- "@gib/eslint-config": "workspace:*",
- "@gib/ui": "workspace:*"
-}
-```
-
-The `catalog:` syntax (no name) refers to the default catalog. `catalog:convex` and
-`catalog:react19` refer to named catalogs.
-
-### The update regression — how to safely update dependencies
-
-**Do NOT run `bun update` directly inside individual package directories.** This is a
-known issue: running `bun update` in a package directory will replace `catalog:`
-references with explicit hardcoded version strings, breaking the single-source-of-truth
-system.
-
-The correct dependency update workflow:
-
-1. Edit the version in the **root `package.json`** catalog section
-2. Run `bun install` from the root
-3. Verify with `bun lint:ws` (which runs `sherif` to check workspace consistency)
-
-### sherif runs on `postinstall`
-
-The root `package.json` has `"postinstall": "sherif"`. This means every time you run
-`bun install`, `sherif` runs automatically and will **fail the install** if any
-`catalog:` references are broken or if package versions are inconsistent. This is a
-feature, not a bug — it catches the regression described above immediately.
-
-If you see `sherif` errors after running `bun install`, it usually means a
-`catalog:` reference was accidentally replaced with a hardcoded version. Fix it by
-restoring the `catalog:` syntax in the affected `package.json`.
-
-### Adding new packages to the monorepo
-
-Use the Turborepo generator to scaffold a new package:
-
-```bash
-bun turbo gen init
-```
-
-This will prompt you for:
-
-1. **Package name** — enter with or without the `@gib/` prefix (it's stripped automatically)
-2. **Dependencies** — space-separated list of npm packages to install
-
-The generator creates:
-
-- `packages//eslint.config.ts`
-- `packages//package.json` (with workspace devDeps and latest versions for any
- specified deps)
-- `packages//tsconfig.json`
-- `packages//src/index.ts`
-
-After scaffolding it runs `bun install` and formats the new files.
-
----
-
-## 7. Convex Backend Deep Dive
-
-### Package structure
-
-```
-packages/backend/
-├── convex/ # ← Only this directory is synced to Convex
-│ ├── _generated/ # Auto-generated — NEVER edit
-│ ├── custom/
-│ │ └── auth/
-│ │ ├── index.ts # Barrel: Password + validatePassword exports
-│ │ └── providers/
-│ │ ├── password.ts # Custom Password provider
-│ │ └── usesend.ts # UseSend email OTP provider
-│ ├── auth.config.ts # CORS domain configuration
-│ ├── auth.ts # Auth setup + all user-related functions
-│ ├── crons.ts # Cron jobs (commented examples)
-│ ├── files.ts # File upload/storage
-│ ├── http.ts # HTTP routes (auth only) — DO NOT TOUCH
-│ ├── schema.ts # Database schema — the source of truth
-│ └── tsconfig.json # Convex-required TS config
-├── scripts/
-│ └── generateKeys.mjs # RS256 JWT keypair generator for Convex Auth
-└── types/
- ├── auth.ts # Password validation constants
- └── index.ts # Barrel export
-```
-
-**Important:** The backend package has no root `tsconfig.json` — only
-`convex/tsconfig.json`. This is intentional and follows Convex's recommended
-structure. When `bun typecheck` runs from the repo root, it will print TypeScript help
-output for `@gib/backend` (because there's no valid project to check). This is
-expected and not an error.
-
-### Schema design — always extend `users` directly
-
-The preferred and enforced approach in this repo is to **extend the `users` table
-directly** for all application data. Do not create a separate `profiles` table.
-
-The Convex Auth library (`@convex-dev/auth`) provides base fields via `authTables`
-(name, image, email, emailVerificationTime, phone, phoneVerificationTime, isAnonymous).
-Custom fields are added directly to the `users` table definition in `schema.ts`:
-
-```typescript
-// packages/backend/convex/schema.ts
-const applicationTables = {
- users: defineTable({
- name: v.optional(v.string()),
- image: v.optional(v.string()), // stores Convex storage ID as string
- email: v.optional(v.string()),
- emailVerificationTime: v.optional(v.number()),
- phone: v.optional(v.string()),
- phoneVerificationTime: v.optional(v.number()),
- isAnonymous: v.optional(v.boolean()),
- /* Custom fields below */
- themePreference: v.optional(
- v.union(v.literal('light'), v.literal('dark'), v.literal('system')),
- ),
- })
- .index('email', ['email'])
- .index('phone', ['phone'])
- .index('name', ['name']),
-};
-
-export default defineSchema({
- ...authTables,
- ...applicationTables,
-});
-```
-
-The `themePreference` field demonstrates the pattern. When your app needs to store
-user-specific data (preferences, profile info, settings), add a field here.
-
-**Note on `image`:** The `image` field is typed as `v.string()` because `authTables`
-defines it that way. In practice it stores a Convex storage ID (which is a string at
-runtime). The `updateUser` mutation accepts `v.id('_storage')` and casts it when
-writing. This is a known, harmless type mismatch — leave it as `v.string()` in the
-schema for now.
-
-### Writing backend functions
-
-The three Convex function types:
-
-- **`query`** — read-only, reactive, called from client with `useQuery` or server with
- `preloadQuery`. Always check auth if the data should be protected.
-- **`mutation`** — write operations (database inserts, patches, deletes). Runs
- transactionally. Cannot make external HTTP calls.
-- **`action`** — for side effects: calling external APIs, Convex storage operations,
- or certain `@convex-dev/auth` operations. Can call `ctx.runQuery` and
- `ctx.runMutation` internally.
-
-Always authenticate inside protected functions:
-
-```typescript
-import { getAuthUserId } from '@convex-dev/auth/server';
-import { ConvexError, v } from 'convex/values';
-
-import { mutation, query } from './_generated/server';
-
-export const getMyData = query({
- args: {},
- handler: async (ctx) => {
- const userId = await getAuthUserId(ctx);
- if (!userId) return null; // or throw if auth is truly required
- return ctx.db.get(userId);
- },
-});
-
-export const updateMyData = mutation({
- args: { value: v.string() },
- handler: async (ctx, args) => {
- const userId = await getAuthUserId(ctx);
- if (!userId) throw new ConvexError('Not authenticated.');
- await ctx.db.patch(userId, { someField: args.value });
- },
-});
-```
-
-### Why `updateUserPassword` is an `action`, not a `mutation`
-
-`@convex-dev/auth`'s `modifyAccountCredentials` function makes internal HTTP calls
-under the hood. Convex mutations cannot make external/internal HTTP calls — only
-actions can. That's why any password change operation must be an `action`:
-
-```typescript
-export const updateUserPassword = action({
- args: { currentPassword: v.string(), newPassword: v.string() },
- handler: async (ctx, { currentPassword, newPassword }) => {
- const userId = await getAuthUserId(ctx);
- if (!userId) throw new ConvexError('Not authenticated.');
- // retrieveAccount and modifyAccountCredentials both require action context
- const verified = await retrieveAccount(ctx, {
- provider: 'password',
- account: { id: user.email, secret: currentPassword },
- });
- if (!verified) throw new ConvexError('Current password is incorrect.');
- await modifyAccountCredentials(ctx, {
- provider: 'password',
- account: { id: user.email, secret: newPassword },
- });
- },
-});
-```
-
-Similarly, any auth function that needs to call into Convex Auth internals
-(`retrieveAccount`, `modifyAccountCredentials`, `createAccount`, etc.) must be an
-action.
-
-### Authentication setup
-
-```typescript
-// convex/auth.ts
-export const { auth, signIn, signOut, store, isAuthenticated } = convexAuth({
- providers: [Authentik({ allowDangerousEmailAccountLinking: true }), Password],
-});
-```
-
-Two providers are configured:
-
-1. **Authentik** — OAuth SSO. The `allowDangerousEmailAccountLinking: true` flag
- allows users who previously registered with the Password provider to link their
- Authentik account if it shares the same email address.
-
-2. **Password** — custom provider in `convex/custom/auth/providers/password.ts`.
- Uses `UseSendOTP` for email verification during sign-up and `UseSendOTPPasswordReset`
- for password reset flows.
-
-### The UseSend email provider
-
-`convex/custom/auth/providers/usesend.ts` is the custom email OTP provider. It reads
-configuration from environment variables:
-
-- `USESEND_API_KEY` — the API key for your UseSend instance
-- `USESEND_URL` — the base URL of your self-hosted UseSend instance
-- `USESEND_FROM_EMAIL` — the from address for emails (e.g. `My App `)
-
-The provider creates two exports used in `password.ts`:
-
-- `UseSendOTP` — 20-minute OTP for sign-up email verification
-- `UseSendOTPPasswordReset` — 1-hour OTP for password reset
-
-Email templates are currently inline HTML strings in `usesend.ts`. The
-`@react-email/components` and `react-email` packages are in `package.json` as planned
-dependencies — React Email templates will eventually replace the inline HTML.
-
-### File uploads
-
-`convex/files.ts` provides two functions:
-
-```typescript
-// Get a signed upload URL (call this first)
-const uploadUrl = await generateUploadUrl();
-
-// POST your file to the URL, get back a storage ID
-// Then store the ID:
-await updateUser({ image: storageId });
-
-// Get a temporary signed URL to display the image:
-const imageUrl = await getImageUrl({ storageId });
-```
-
-The profile avatar upload in `apps/next/src/components/layout/auth/profile/avatar-upload.tsx`
-demonstrates the complete flow: crop the image client-side → get an upload URL →
-POST to Convex storage → save the storage ID to the user record.
-
-### Cron jobs
-
-`convex/crons.ts` is the place for scheduled jobs. The file currently contains
-commented-out examples. When you need to add a cron job, add it to this file following
-the pattern in the comments.
-
-### Generating JWT keys for Convex Auth
-
-When setting up a new deployment, you need to generate RS256 JWT keys for Convex Auth
-to work:
-
-```bash
-# From packages/backend/
-bun run scripts/generateKeys.mjs
-```
-
-This outputs `JWT_PRIVATE_KEY` and `JWKS` values that must be synced to Convex:
-
-```bash
-bun with-env npx convex env set JWT_PRIVATE_KEY "..."
-bun with-env npx convex env set JWKS "..."
-```
-
----
-
-## 8. Next.js App Deep Dive
-
-### Files you should not casually modify
-
-| File | Why |
-| ------------------------------- | ---------------------------------------------------------- |
-| `next.config.js` | Sentry, Plausible, standalone build — carefully configured |
-| `src/proxy.ts` | Auth routing + IP banning — the project's middleware |
-| `src/env.ts` | The env contract — add to it, don't restructure it |
-| `src/instrumentation.ts` | Sentry server setup — don't touch |
-| `src/instrumentation-client.ts` | Sentry client setup — don't touch |
-| `src/sentry.server.config.ts` | Sentry server config — don't touch |
-| `src/app/styles.css` | Tailwind setup + theme import — don't touch |
-
-### Route structure
-
-The app uses the Next.js App Router. All authenticated routes live in the `(auth)`
-route group (which doesn't create a URL segment — it's just for organization):
-
-| Route | File | Rendering | Purpose |
-| ------------------ | ------------------------------------- | ---------------- | ---------------------------------------------- |
-| `/` | `app/page.tsx` | Server Component | Landing page (hero, features, tech stack, CTA) |
-| `/sign-in` | `app/(auth)/sign-in/page.tsx` | Client Component | Sign in, sign up, email OTP — all in one |
-| `/profile` | `app/(auth)/profile/page.tsx` | Server Component | User profile management |
-| `/forgot-password` | `app/(auth)/forgot-password/page.tsx` | Client Component | Password reset flow |
-
-The `/profile` route is protected — `src/proxy.ts` redirects unauthenticated users to
-`/sign-in`. The `/sign-in` route redirects already-authenticated users to `/`.
-
-To protect a new route, add its pattern to `isProtectedRoute` in `src/proxy.ts`:
-
-```typescript
-const isProtectedRoute = createRouteMatcher([
- '/profile',
- '/dashboard',
- '/settings',
-]);
-```
-
-### The dual Convex provider setup
-
-Two providers are required and both must be present:
-
-**1. `ConvexAuthNextjsServerProvider`** — wraps the root `` element in
-`app/layout.tsx`. This is the server-side half that handles cookie reading and
-initial token passing. It has no visible UI.
-
-**2. `ConvexClientProvider`** — a `'use client'` component in
-`components/providers/ConvexClientProvider.tsx`. This wraps `ConvexAuthNextjsProvider`
-and initializes the `ConvexReactClient`. All client-side reactive queries and
-mutations flow through this.
-
-```tsx
-// app/layout.tsx (server)
-
-
-
- {children}
-
-
-
-```
-
-Removing either provider breaks auth. The server provider is needed for SSR token
-hydration; the client provider is needed for reactive updates.
-
-### SSR data preloading — the preferred pattern for new pages
-
-For any page that needs Convex data, use `preloadQuery` on the server and
-`usePreloadedQuery` on the client. This avoids a loading flash and gives you
-SSR-rendered content.
-
-**Server component (the page file):**
-
-```tsx
-// app/(auth)/some-page/page.tsx
-import { SomeComponent } from '@/components/some-component';
-import { preloadQuery } from 'convex/nextjs';
-
-import { api } from '@gib/backend/convex/_generated/api.js';
-
-const SomePage = async () => {
- const preloadedData = await preloadQuery(api.someModule.someQuery);
-
- return ;
-};
-
-export default SomePage;
-```
-
-**Client component (the interactive part):**
-
-```tsx
-// components/some-component.tsx
-'use client';
-
-import type { Preloaded } from 'convex/react';
-import { usePreloadedQuery } from 'convex/react';
-
-import type { api } from '@gib/backend/convex/_generated/api.js';
-
-interface Props {
- preloadedData: Preloaded;
-}
-
-export const SomeComponent = ({ preloadedData }: Props) => {
- const data = usePreloadedQuery(preloadedData);
- // data is immediately available with SSR value, then stays reactive
- return {data.name}
;
-};
-```
-
-This is the pattern used on the `/profile` page and should be used for all new
-data-fetching pages.
-
-### Auth-conditional UI — always use a loading skeleton
-
-Any component that renders differently based on whether the user is authenticated
-**must** show a loading skeleton while auth resolves. Never render a "signed in" state
-optimistically or flash from "not logged in" to "logged in".
-
-The `AvatarDropdown` component in
-`src/components/layout/header/controls/AvatarDropdown.tsx` is the canonical example:
-
-```tsx
-'use client';
-
-import { useAuthActions } from '@convex-dev/auth/react';
-import { useConvexAuth } from 'convex/react';
-
-export const AvatarDropdown = () => {
- const { isLoading, isAuthenticated } = useConvexAuth();
-
- if (isLoading) {
- // Always show a skeleton while auth state is resolving
- return ;
- }
-
- if (!isAuthenticated) {
- return ;
- }
-
- return ;
-};
-```
-
-### `src/proxy.ts` — route protection and IP banning
-
-This file is the Next.js proxy/middleware. It does two things in sequence:
-
-1. **IP banning** — `banSuspiciousIPs(request)` runs first. It checks the incoming
- request against known malicious patterns (path traversal, PHP probes, etc.) and
- rate-limits suspicious IPs. If a ban is triggered, a 403 is returned immediately
- before auth runs.
-
-2. **Auth routing** — `convexAuthNextjsMiddleware` handles authentication:
- - Unauthenticated users hitting `/profile` are redirected to `/sign-in`
- - Authenticated users hitting `/sign-in` are redirected to `/`
-
-Session cookies are configured with a 30-day max age.
-
-### The IP banning system (`src/lib/proxy/ban-sus-ips.ts`)
-
-This is an in-memory security layer. Key behaviors:
-
-- Tracks request counts per IP using an in-memory Map
-- 10 requests matching malicious patterns within 1 minute → 30-minute ban
-- 10 404 responses within 2 minutes → ban
-- Detects and bans suspicious HTTP methods (TRACE, PUT, DELETE, PATCH)
-- The ban response message is deliberately direct — consider softening it for
- professional/client-facing deployments
-- **Bans reset on server restart** (in-memory). This is a known limitation; a future
- enhancement would persist bans to Convex or Redis.
-
-Agents can extend the suspicious patterns by adding to the arrays at the top of the
-file if new attack vectors are observed.
-
-IP detection order: `x-forwarded-for` → `x-real-ip` → `cf-connecting-ip` → host.
-This handles the nginx-proxy-manager reverse proxy setup correctly.
-
-### `next.config.js` — key behaviors
-
-- **`output: 'standalone'`** — generates a self-contained build for Docker deployment
-- **`typescript.ignoreBuildErrors: true`** — suppresses TypeScript errors during build
- (shadcn components can produce spurious errors)
-- **`serverExternalPackages: ['require-in-the-middle']`** — Sentry compatibility
-- **`transpilePackages: ['@gib/backend', '@gib/ui']`** — workspace packages need
- transpilation since Next.js doesn't transpile `node_modules` by default
-- **`images.remotePatterns`** — currently only allows `*.gbrown.org`. If you're
- deploying for a different domain, update this or profile pictures won't load.
-- **`serverActions.bodySizeLimit: '10mb'`** — allows large file uploads for avatar
-- The config is wrapped with `withPlausibleProxy` then `withSentryConfig`
-
-### Fonts
-
-Fonts are configured in `apps/next/src/app/layout.tsx` using `next/font`. The current
-typeface system:
-
-- **Kanit** — display font used in the header logo and CTA (loaded via `next/font/google`)
-- **Poppins** — primary sans-serif body font
-- **Libre Baskerville** — serif font (available for editorial use)
-- **Victor Mono** — monospace font (available for code blocks)
-
-The fonts are injected as CSS variables and mapped in `tools/tailwind/theme.css`.
-To change fonts, update the `next/font` imports in `layout.tsx` and update the
-corresponding CSS variable assignments in `theme.css`.
-
-### Analytics and monitoring
-
-**Plausible** is injected via `next-plausible` and proxied through the Next.js app
-itself via `withPlausibleProxy` in `next.config.js`. This means analytics requests go
-to `/` (the Next.js server) first, which then forwards them to the Plausible instance.
-Ad blockers that block `plausible.io` directly cannot block this setup.
-
-**Sentry** is configured with `tracesSampleRate: 1.0` (100% trace sampling) on both
-client and server. This is appropriate for development and low-traffic deployments. For
-high-traffic production sites, reduce this to `0.1`–`0.2` in
-`instrumentation-client.ts` and `sentry.server.config.ts`.
-
----
-
-## 9. UI Package (`@gib/ui`)
-
-### The single-import rule
-
-**Everything** from the UI package is importable from the single `@gib/ui` entry
-point. Never import from specific component file paths:
-
-```typescript
-// ✅ Correct — single import from @gib/ui
-import { Button, Card, CardContent, cn, useIsMobile } from '@gib/ui';
-// ❌ Wrong — never import from subpaths like this
-import { Button } from '@gib/ui/src/button';
-```
-
-This includes utility functions (`cn`, `ccn`), all components, and all hooks.
-
-### Available components
-
-The UI package contains the complete shadcn/ui component set (new-york style) plus
-custom additions. Key custom components:
-
-- **`BasedAvatar`** — shows user initials or a user icon when no image is set; use
- this instead of the base `Avatar` for user avatars
-- **`BasedProgress`** — progress bar variant
-- **`ImageCrop`** — image cropping UI built on `react-image-crop`; used in the profile
- avatar upload flow
-- **`SubmitButton`** — button with built-in loading state for form submissions
-- **`StatusMessage`** — standardized success/error message display
-- **`Spinner`** — loading spinner
-
-Full component list: Accordion, Alert, AlertDialog, AspectRatio, Avatar, Badge,
-BasedAvatar, BasedProgress, Breadcrumb, Button, ButtonGroup, Calendar, Card, Carousel,
-Chart, Checkbox, Collapsible, Combobox, Command, ContextMenu, Dialog, Drawer,
-DropdownMenu, Empty, Field, Form, HoverCard, ImageCrop, Input, InputGroup, InputOTP,
-Item, Kbd, Label, NavigationMenu, NativeSelect, Pagination, Popover, Progress,
-RadioGroup, Resizable, ScrollArea, Select, Separator, Sheet, Sidebar, Skeleton, Slider,
-Sonner (Toaster), Spinner, StatusMessage, SubmitButton, Switch, Table, Tabs, Textarea,
-ThemeProvider, ThemeToggle, Toggle, ToggleGroup, Tooltip.
-
-### Available hooks (also from `@gib/ui`)
-
-- `useIsMobile` — returns `true` when viewport width is below 768px
-- `useOnClickOutside` — fires a callback when a click occurs outside a ref element
-
-### Adding a new component via `bun ui-add`
-
-```bash
-# From the repo root
-bun ui-add
-```
-
-This runs `bunx shadcn@latest add` interactively. After adding a new component:
-
-1. Any internal imports the component makes (to other shadcn components, `cn`, hooks)
- **must be updated** to come from `@gib/ui` instead of relative paths
-2. Export the new component(s) from `packages/ui/src/index.tsx`
-
-If you add a new hook, add it to `packages/ui/src/hooks/` and export it from both
-`packages/ui/src/hooks/index.tsx` and the main `packages/ui/src/index.tsx`.
-
-### `components.json` note
-
-The shadcn `components.json` file specifies `style: "new-york"` and `baseColor: "zinc"`.
-The `zinc` base color is irrelevant — the actual visual theme is entirely determined by
-`tools/tailwind/theme.css` which overrides all color tokens with OKLCH values. The
-`zinc` setting only affects how `bunx shadcn` generates new component defaults; the
-runtime appearance is controlled by the theme.
-
----
-
-## 10. Tools — Shared Configuration Packages
-
-### `@gib/eslint-config`
-
-Three exported configs used across the monorepo:
-
-- **`baseConfig`** — TypeScript-aware ESLint with `recommended`, `recommendedTypeChecked`,
- and `stylisticTypeChecked` rules. Used by all packages.
-- **`reactConfig`** — adds `eslint-plugin-react` and `react-hooks` rules.
-- **`nextjsConfig`** — adds `@next/eslint-plugin-next` rules including core-web-vitals.
-- **`restrictEnvAccess`** — blocks direct `process.env` access outside `env.ts`.
-
-Key enforced rules:
-
-- `@typescript-eslint/consistent-type-imports` — type imports must be separate (`import type`)
-- `@typescript-eslint/no-non-null-assertion` — non-null assertions (`!`) are errors
-- `@typescript-eslint/no-unused-vars` — unused vars are warnings; prefix with `_` to suppress
-- `import/consistent-type-specifier-style` — prefer top-level `import type` over inline `type`
-
-Note: the `consistent-type-imports` enforcement is a known item to potentially relax
-in the future (see Known Issues).
-
-### `@gib/prettier-config`
-
-Key settings:
-
-- `singleQuote: true`, `jsxSingleQuote: true` — single quotes throughout
-- `trailingComma: 'all'` — trailing commas on all multi-line structures
-- `printWidth: 80`, `tabWidth: 2`
-- `tailwindFunctions: ['cn', 'cva']` — Tailwind class sorting in these functions
-
-Import order (enforced automatically by `@ianvs/prettier-plugin-sort-imports`):
-
-```
-1. Type imports (all)
-2. react / react-native
-3. next / expo
-4. Third-party packages
-5. @gib/* type imports, then @gib/* value imports
-6. Local type imports, then local relative imports
-```
-
-You do not need to manually order imports — Prettier handles it on format. Run
-`bun format:fix` to apply.
-
-### `@gib/tailwind-config`
-
-- **`theme.css`** — the complete OKLCH-based design system. Light mode: warm cream
- background with reddish-brown primary. Dark mode: warm dark background with
- orange-warm primary. Do not modify without explicit instruction. When the theme
- needs to change, the entire file is replaced with a new theme generated from a
- shadcn theme generator.
-- **`postcss-config.js`** — re-exports `{ plugins: { '@tailwindcss/postcss': {} } }`.
- Used by all apps via `postcss.config.js`.
-
-### `@gib/tsconfig`
-
-- **`base.json`** — strict TypeScript config for all packages. Notable settings:
- `noUncheckedIndexedAccess: true` (array/object access returns `T | undefined`),
- `moduleResolution: "Bundler"`, `module: "Preserve"`, `isolatedModules: true`.
- Uses `tsBuildInfoFile` for incremental caching in `.cache/`.
-- **`compiled-package.json`** — extends base with declaration emit settings for
- packages that need to output `.d.ts` files.
-
----
-
-## 11. Docker & Deployment
-
-### Container overview
-
-Three Docker services are defined in `docker/compose.yml`:
-
-**`convex-backend`** (`ghcr.io/get-convex/convex-backend`)
-
-- The self-hosted Convex runtime
-- Data persists in `docker/data/` (gitignored, must be backed up)
-- Health check via `curl http://localhost:3210/version`
-- Watchtower-enabled for automatic image updates
-- `stop_signal: SIGINT` + 10s grace period for clean shutdown
-
-**`convex-dashboard`** (`ghcr.io/get-convex/convex-dashboard`)
-
-- Admin UI for the Convex backend
-- Starts only after `convex-backend` is healthy
-
-**`next-app`** (built from `docker/Dockerfile`)
-
-- Multi-stage build: `oven/bun:alpine` builder → `node:20-alpine` runner
-- Standalone Next.js output (`CMD ["node", "apps/next/server.js"]`)
-- Reverse-proxied by nginx — ports are not directly exposed
-
-All services share the external `nginx-bridge` Docker network.
-
-### Typical production deployment workflow
-
-The Convex backend and dashboard are long-running and rarely need to be rebuilt.
-The typical workflow when you've made changes to the Next.js app:
-
-```bash
-# On the production server (via SSH)
-cd docker/
-
-# Build the Next.js app with current source
-sudo docker compose build next-app
-
-# Once build succeeds, bring up the new container
-sudo docker compose up -d next-app
-```
-
-If you need to start everything from scratch:
-
-```bash
-sudo docker compose up -d convex-backend convex-dashboard
-# Wait for backend to be healthy, then:
-sudo docker compose up -d next-app
-```
-
-### The `.dockerignore` situation (known issue)
-
-There is one `.dockerignore` file at the repo root: `/.dockerignore`. Docker always
-reads the `.dockerignore` from the root of the build context, which is set to `../`
-(the repo root) in `compose.yml` — so the root file is the only one that ever applies.
-
-The `.env` file is intentionally included in the build context (the `.env` lines are
-commented out in `/.dockerignore`). This is how `SENTRY_AUTH_TOKEN` and `NEXT_PUBLIC_*`
-variables reach the Next.js build step inside the container.
-
-Do not un-comment those lines without understanding the full implications — removing
-`.env` from the build context would break Sentry source map uploads and
-`NEXT_PUBLIC_*` variable baking into the client bundle.
-
-**Note on `docker/.env`:** This file is entirely separate and serves a different
-purpose. It is read by Docker Compose itself (not the build) to interpolate the
-`${VARIABLE}` placeholders in `compose.yml` — things like container names, network
-names, and Convex origin URLs. It is not the same as the root `/.env` and the two
-are not interchangeable.
-
-### Convex data persistence
-
-`docker/data/` is mounted as a Docker volume and contains all Convex database data.
-This directory is gitignored. Back it up before any server migrations, restarts, or
-image updates.
-
-### `generate_convex_admin_key`
-
-A bash script in `docker/` that generates the admin key from a running Convex backend:
-
-```bash
-cd docker/
-./generate_convex_admin_key
-```
-
-This runs the key generation script inside the `convex-backend` container and prints
-the `CONVEX_SELF_HOSTED_ADMIN_KEY` value to stdout.
-
----
-
-## 12. Code Style Reference
-
-### Functions — always `const` arrow syntax
-
-```typescript
-// ✅ Correct — use const for all functions
-const fetchUser = async (userId: string) => {
- return await db.get(userId);
-};
-
-const MyComponent = ({ name }: { name: string }) => {
- return {name}
;
-};
-
-// ❌ Wrong — function declarations
-function fetchUser(userId: string) { ... }
-function MyComponent({ name }: { name: string }) { ... }
-```
-
-### Naming conventions
-
-| Thing | Convention | Example |
-| --------------------------- | ---------------------- | ------------------- |
-| React components | `PascalCase` | `UserProfile.tsx` |
-| Non-component files | `kebab-case.ts` | `ban-sus-ips.ts` |
-| Functions and variables | `camelCase` | `const getUserById` |
-| Constants | `SCREAMING_SNAKE_CASE` | `PASSWORD_MIN` |
-| TypeScript types/interfaces | `PascalCase` | `type UserDoc` |
-| Unused vars/params | prefix with `_` | `const _unused` |
-
-### Imports
-
-- Use `import type` for type-only imports (enforced by ESLint)
-- Import order is handled automatically by Prettier on format — don't manually sort
-- Always use `.js` extension for Convex-generated file imports
-- All UI components and utilities come from `@gib/ui`
-- All env vars come from `@/env`
-
-### Error handling
-
-```typescript
-// Backend — throw ConvexError with a user-readable message
-import { ConvexError } from 'convex/values';
-
-throw new ConvexError('User not found.');
-
-// Frontend — catch ConvexError and display with toast
-try {
- await someConvexMutation(args);
-} catch (e) {
- if (e instanceof ConvexError) {
- toast.error(e.message);
- }
-}
-```
-
-### TypeScript
-
-- Strict mode is on everywhere (`strict: true`, `noUncheckedIndexedAccess: true`)
-- Array/object index access returns `T | undefined` — always handle the undefined case
-- Avoid `any` — use `unknown` with type guards or proper generics
-- Non-null assertions (`!`) are ESLint errors — prove your types instead
-
-### Template customization points
-
-When using this repo as a template for a **new project** (not working on the existing
-deployment), these things should be updated:
-
-- `apps/next/src/lib/metadata.ts` — update the title template and metadata
-- `apps/next/next.config.js` — update `images.remotePatterns` for your domain
-- `apps/next/src/app/layout.tsx` — update the root ``, site title, etc.
-- Root `package.json` — update the workspace `name` field to fit the new project
-- `/.env` — fill out all values for the new deployment
-- `docker/.env` — fill out container names and domain URLs
-
----
-
-## 13. Adding New Features — Checklists
-
-### Adding a new field to the users table
-
-1. Add the field to `users` in `packages/backend/convex/schema.ts`
-2. Add or update the relevant `mutation` in `packages/backend/convex/auth.ts`
-3. Run `bun dev:backend` to let `convex dev` regenerate `_generated/` types
-4. Add the corresponding UI in the profile page or wherever the field is managed
-5. Update `packages/backend/types/auth.ts` if the field has shared validation constants
-
-### Adding a new Convex function
-
-1. Write the function in the appropriate `.ts` file in `packages/backend/convex/`
-2. Run `bun dev:backend` — `convex dev --until-success` will push it and regenerate
- `_generated/api.ts` with the new export
-3. Import using `api.moduleName.functionName` with the `.js` extension:
- ```typescript
- import { api } from '@gib/backend/convex/_generated/api.js';
- ```
-
-### Adding a new page
-
-1. Create `apps/next/src/app//page.tsx`
-2. If the page needs data: use the `preloadQuery` + `usePreloadedQuery` SSR pattern
-3. If the page should be protected: add its path to `isProtectedRoute` in `src/proxy.ts`
-4. Add a layout file if you need a custom ``:
- ```typescript
- export const metadata = { title: 'Page Name' };
- ```
-5. Run `bun typecheck` to validate
-
-### Adding a new environment variable
-
-See the 4-step checklist in [Section 5](#5-environment-variables--complete-reference).
-
-### Adding a new UI component via shadcn
-
-1. Run `bun ui-add` from the repo root
-2. Select the component(s) to add
-3. Update any internal imports in the new files to use `@gib/ui` instead of relative paths
-4. Add exports to `packages/ui/src/index.tsx`
-5. Run `bun typecheck` to validate
-
----
-
-## 14. Expo App — Scaffold Only, Not Production-Ready
-
-The `apps/expo/` directory exists as a placeholder for future mobile development.
-The broken T3 Turbo template code has been cleaned up — all `@acme/*` references,
-tRPC, and `better-auth` have been removed and replaced with the correct Convex patterns.
-The app will now load, but it is still a bare scaffold with no real features.
-
-### Current state
-
-The app is wired up with the correct providers and patterns:
-
-- **`src/app/_layout.tsx`** — `ConvexAuthProvider` wraps the root, initialized with
- a `ConvexReactClient` pointed at the self-hosted backend
-- **`src/utils/convex.ts`** — Convex client setup, derives the backend URL from the
- Expo dev server host in development; reads from `app.config.ts` `extra.convexUrl`
- in production
-- **`src/app/index.tsx`** — A minimal home screen that reads auth state via
- `useConvexAuth()` and queries the current user via `api.auth.getUser`
-- **`src/app/post/[id].tsx`** — A placeholder detail screen (route structure kept intact)
-- **`src/utils/session-store.ts`** — `expo-secure-store` helpers for token storage
-- **`src/utils/base-url.ts`** — Dev server localhost detection
-
-### What still needs to be built
-
-- Sign-in / sign-up screens (mirror the Next.js `(auth)/sign-in` flow, adapted for RN)
-- Authenticated navigation / route protection (check `isAuthenticated` in layout)
-- Any actual app screens and Convex queries for your specific project
-
-### Production URL configuration
-
-For production builds, set `convexUrl` in `app.config.ts` `extra`:
-
-```typescript
-extra: {
- convexUrl: 'https://api.convex.example.com',
-},
-```
-
-The client in `src/utils/convex.ts` will prefer this over the dev-server-derived URL.
-
----
-
-## 15. Known Issues & Technical Debt
-
-A comprehensive list of known issues, organized by priority. Add new issues here as
-they're discovered.
-
----
-
-**1. Catalog update regression** ⚠️ High priority
-
-Running `bun update` inside individual package directories replaces `catalog:`
-references with hard-coded version strings, breaking the single-source-of-truth system.
-The correct update workflow (edit root `package.json` catalog → `bun install` →
-`bun lint:ws`) needs to be better enforced/documented. Investigate whether Bun has a
-native fix for this or if a custom update script is needed.
-
----
-
-**2. Root `.dockerignore` includes `.env` in build context** ℹ️ Known, works intentionally
-
-The root `.dockerignore` has `.env` commented out, meaning the `.env` file is sent to
-the Docker build context. This is how build-time env vars (Sentry token, `NEXT_PUBLIC_*`)
-reach the Next.js build step. It's a known imperfect approach but fully functional.
-A proper solution would use Docker build args (`ARG`) or multi-stage secrets, but this
-requires careful restructuring to avoid breaking Sentry source map uploads.
-
----
-
-**3. In-memory IP banning resets on restart** ℹ️ Future enhancement
-
-`src/lib/proxy/ban-sus-ips.ts` stores bans in a JavaScript `Map`. Bans reset whenever
-the Next.js server restarts (container restart, redeploy, etc.). A more robust solution
-would persist bans to Convex (using a `bans` table with TTL-based cleanup via a cron
-job) or to Redis.
-
----
-
-**4. `apps/next/src/lib/metadata.ts` has hardcoded branding** ⚠️ Template concern
-
-When using this as a template for a new project, `metadata.ts` must be updated:
-the title template (`'%s | Convex Monorepo'`) and any other project-specific strings.
-Same for `next.config.js` `images.remotePatterns` (currently `*.gbrown.org`).
-
----
-
-**5. No CI/CD** ℹ️ Future enhancement
-
-There is no `.github/workflows/` directory. All deployment is done manually via SSH.
-A future enhancement would add GitHub Actions (or Gitea Actions, since this repo is
-on Gitea) for automated lint and typecheck on pull requests.
-
----
-
-**6. Scripts organization** ℹ️ Future exploration
-
-Currently:
-
-- `packages/backend/scripts/generateKeys.mjs` — generates JWT keys (run manually)
-- `docker/generate_convex_admin_key` — bash script to get the admin key from Docker
-
-These are separate workflows that both need to be run once when setting up a new
-deployment. Explore combining these into a unified setup script — potentially one that
-generates the keys AND automatically syncs them to Convex in one step, possibly
-moving everything to `docker/scripts/`.
-
----
-
-**7. React Email templates not yet implemented** ℹ️ Future enhancement
-
-`@react-email/components` and `react-email` are in `packages/backend/package.json` as
-planned dependencies. The current `usesend.ts` uses inline HTML strings for email
-templates. These will be replaced with proper React Email templates in a future update.
-
----
-
-## 16. Quick Command Reference
-
-```bash
-# ── Development ───────────────────────────────────────────────────────────────
-bun dev # Start all apps (Next.js + Expo + Convex backend)
-bun dev:next # Start Next.js + Convex backend (most common)
-bun dev:backend # Start Convex backend only
-bun dev:expo # Start Expo + Convex backend
-bun dev:expo:tunnel # Expo with tunnel for physical device testing
-
-# ── Quality Checks ────────────────────────────────────────────────────────────
-bun typecheck # ← PREFERRED — TypeScript checking, fast
-bun lint # ESLint all packages
-bun lint:fix # ESLint with auto-fix
-bun lint:ws # Check workspace consistency with sherif
-bun format # Check Prettier formatting
-bun format:fix # Apply Prettier formatting
-
-# ── Build (production only) ───────────────────────────────────────────────────
-bun build # Build all packages
-
-# ── Utilities ─────────────────────────────────────────────────────────────────
-bun ui-add # Add shadcn/ui components interactively
-bun clean # Clean all node_modules (git clean -xdf)
-bun clean:ws # Clean workspace caches only
-
-# ── Single Package (Turborepo filters) ────────────────────────────────────────
-bun turbo run typecheck -F @gib/next # Typecheck Next.js app only
-bun turbo run lint -F @gib/backend # Lint backend only
-bun turbo run dev -F @gib/next # Dev Next.js only (no Convex)
-
-# ── Scaffolding ───────────────────────────────────────────────────────────────
-bun turbo gen init # Scaffold a new package
-
-# ── Convex CLI (run from packages/backend/) ───────────────────────────────────
-bun dev # Runs convex dev (push functions + watch)
-bun setup # Runs convex dev --until-success (push once then exit)
-bun with-env npx convex env set VAR "value" # Sync env var to Convex deployment
-
-# ── Docker (run from docker/) ─────────────────────────────────────────────────
-sudo docker compose up -d convex-backend convex-dashboard # Start Convex
-sudo docker compose build next-app # Build Next.js image
-sudo docker compose up -d next-app # Deploy Next.js
-sudo docker compose logs -f # Stream all logs
-./generate_convex_admin_key # Get admin key
-```
+Use `bun typecheck`, never a production build for routine validation. The full
+gate is `SKIP_E2E=1 bun run ci:check`; local-stack smoke e2e is `bun test:e2e`.
+Pre-commit runs lint-staged serially and pre-push runs the bounded full gate.
diff --git a/README.md b/README.md
index b610f62..ef76e55 100644
--- a/README.md
+++ b/README.md
@@ -1,456 +1,84 @@
# Convex Turbo Monorepo
-A production-ready Turborepo starter with Next.js, Expo, and self-hosted Convex backend. Built with TypeScript, Tailwind CSS, and modern tooling.
+A reusable Bun/Turborepo template with Next.js 16, Expo, self-hosted Convex,
+shared UI/config packages, Vitest, and Docker deployment.
----
+## Local setup
-## What's Inside?
+Requirements: Bun 1.3.10, Docker or Podman, Node 22, and the Infisical CLI.
-### Apps & Packages
-
-- **`apps/next`** - Next.js 16 web application with App Router
-- **`apps/expo`** - Expo 54 mobile application _(in progress)_
-- **`@gib/backend`** - Self-hosted Convex backend with authentication
-- **`@gib/ui`** - Shared shadcn/ui component library
-- **`@gib/eslint-config`** - ESLint configuration
-- **`@gib/prettier-config`** - Prettier configuration with import sorting
-- **`@gib/tailwind-config`** - Tailwind CSS v4 configuration
-- **`@gib/tsconfig`** - Shared TypeScript configurations
-
-### Tech Stack
-
-- **Framework:** Next.js 16 (App Router) + Expo 54
-- **Backend:** Convex (self-hosted)
-- **Auth:** @convex-dev/auth with Authentik OAuth & Password providers
-- **Styling:** Tailwind CSS v4 + shadcn/ui
-- **Language:** TypeScript (strict mode)
-- **Package Manager:** Bun
-- **Monorepo:** Turborepo
-- **Deployment:** Docker (standalone)
-
----
-
-## Getting Started
-
-This is a self-hosted template. The full setup requires a server (home server or VPS)
-to host the Convex backend and dashboard, and a reverse proxy (nginx-proxy-manager is
-recommended) to expose them over HTTPS. The Next.js app can run locally in dev mode
-once the Convex containers are reachable.
-
-### Prerequisites
-
-- [Bun](https://bun.sh) (v1.2+)
-- [Docker](https://www.docker.com/) & Docker Compose (for self-hosted Convex)
-- Node.js 22+ (for compatibility)
-- A running nginx-proxy-manager instance (or similar reverse proxy) to expose Convex over HTTPS
-
----
-
-### Step 1 — Clone & Install
-
-```bash
-git clone https://git.gbrown.org/gib/convex-monorepo
-cd convex-monorepo
-bun install
+```sh
+bun install --frozen-lockfile
+infisical login
+infisical init
+bun db:up
+bun dev:next
```
-If you're using this as a template for a new project, remove the existing remote and
-add your own:
+The committed `.infisical.json` links this repository to its own Infisical
+project. Local commands read `dev` by default and never fall back to `.env`
+files. Select staging with `INFISICAL_ENV=staging bun dev:next`.
-```bash
-git remote remove origin
-git remote add origin https://your-git-host.com/your/new-repo.git
+Local services:
+
+- Next.js: `http://localhost:3000`
+- Convex API: `http://localhost:3210`
+- Convex dashboard: `http://localhost:6791`
+
+Next and Expo run on the host. Convex uses a self-hosted data volume and does
+not use Postgres by default. The commented `POSTGRES_URL` in Compose is an
+opt-in example for cloned projects that explicitly choose Convex-on-Postgres.
+
+```sh
+bun db:down # stop; preserve Convex data
+bun db:down:wipe # remove the Convex volume and generated admin key
```
----
+Normal `bun db:up` never contacts staging and does not start Postgres. It starts
+the local Convex backend and dashboard, generates a machine-local Convex admin
+key in `.local/dev.generated.env` when needed, deploys functions/schema, and
+configures local Convex Auth keys.
-### Step 2 — Configure the Docker Environment
+Physical devices cannot resolve their own `localhost`; override the public
+Convex URL with the development host's LAN address when testing Expo on-device.
-The `docker/` directory contains everything needed to run the Convex backend and the
-Next.js app in production.
+## Environment model
-```bash
-cd docker/
-cp .env.example .env
+- Local `dev` and `staging`: Infisical.
+- Generated local state: `.local/.generated.env`.
+- CI/CD: Gitea `DOTENV_PROD`, materialized only as a temporary runner file.
+- Docker compilation: explicit Compose build args; `.env*` stays outside the
+ image context.
+
+Run `sh scripts/with-env dev -- ` for an environment-aware command or
+`sh scripts/export-env dev` to materialize a temporary merged dotenv stream.
+Do not commit or maintain root `.env` files.
+
+## Development and quality
+
+```sh
+bun dev:next
+bun dev:expo
+bun lint:ws
+bun format
+bun lint
+bun typecheck
+bun test:unit
+bun test:integration
+bun test:component
+SKIP_E2E=1 bun run ci:check
```
-Edit `docker/.env` and fill in your values. The variables below the Next.js app section
-control the Convex containers — you'll need to choose:
+`bun test:e2e` starts the isolated local stack and currently performs generic
+stack smoke checks. It skips in CI and when `SKIP_E2E=1` is set.
-- `INSTANCE_NAME` — a unique name for your Convex instance
-- `INSTANCE_SECRET` — a secret string (generate something random)
-- `CONVEX_CLOUD_ORIGIN` — the public HTTPS URL for your Convex backend API (e.g. `https://api.convex.example.com`)
-- `CONVEX_SITE_ORIGIN` — the public HTTPS URL for Convex Auth HTTP routes (e.g. `https://api.convex.example.com`)
-- `NEXT_PUBLIC_DEPLOYMENT_URL` — the URL for the Convex dashboard (e.g. `https://dashboard.convex.example.com`)
-
----
-
-### Step 3 — Start the Convex Containers
-
-```bash
-cd docker/
-sudo docker compose up -d convex-backend convex-dashboard
-```
-
-Wait a moment for `convex-backend` to pass its health check, then verify both
-containers are running:
-
-```bash
-sudo docker compose ps
-```
-
-Reverse-proxy the two Convex services through nginx-proxy-manager (or your preferred
-proxy) to the URLs you chose in Step 2. Both must be reachable over HTTPS before you
-can proceed.
-
----
-
-### Step 4 — Generate the Convex Admin Key
-
-With the backend container running, generate the admin key:
-
-```bash
-cd docker/
-./generate_convex_admin_key
-```
-
-Copy the printed key — you'll need it as `CONVEX_SELF_HOSTED_ADMIN_KEY` in the root
-`.env` file.
-
----
-
-### Step 5 — Configure Root Environment Variables
-
-Create the root `.env` file:
-
-```bash
-# From the repo root
-cp .env.example .env
-```
-
-Fill out all values in `/.env`:
-
-```bash
-# Next.js
-NODE_ENV=development
-SENTRY_AUTH_TOKEN= # From your self-hosted Sentry
-NEXT_PUBLIC_SITE_URL=https://example.com
-NEXT_PUBLIC_CONVEX_URL=https://api.convex.example.com
-NEXT_PUBLIC_PLAUSIBLE_URL=https://plausible.example.com
-NEXT_PUBLIC_SENTRY_DSN=
-NEXT_PUBLIC_SENTRY_URL=https://sentry.example.com
-NEXT_PUBLIC_SENTRY_ORG=sentry
-NEXT_PUBLIC_SENTRY_PROJECT_NAME=my-project
-
-# Convex
-CONVEX_SELF_HOSTED_URL=https://api.convex.example.com
-CONVEX_SELF_HOSTED_ADMIN_KEY= # From Step 4
-CONVEX_SITE_URL=http://localhost:3000 # Always localhost:3000 for local dev
-
-# Auth (synced to Convex in Step 6)
-USESEND_API_KEY=
-USESEND_URL=https://usesend.example.com
-USESEND_FROM_EMAIL=My App
-AUTH_AUTHENTIK_ID=
-AUTH_AUTHENTIK_SECRET=
-AUTH_AUTHENTIK_ISSUER=https://auth.example.com/application/o/my-app/
-```
-
----
-
-### Step 6 — Generate JWT Keys & Sync Environment Variables to Convex
-
-Generate the RS256 JWT keypair needed for Convex Auth:
-
-```bash
-cd packages/backend
-bun run scripts/generateKeys.mjs
-```
-
-This prints `JWT_PRIVATE_KEY` and `JWKS` values. Sync them to your Convex deployment
-along with all other backend environment variables:
-
-```bash
-# From packages/backend/
-bun with-env npx convex env set JWT_PRIVATE_KEY "your-private-key"
-bun with-env npx convex env set JWKS "your-jwks"
-bun with-env npx convex env set AUTH_AUTHENTIK_ID "your-client-id"
-bun with-env npx convex env set AUTH_AUTHENTIK_SECRET "your-client-secret"
-bun with-env npx convex env set AUTH_AUTHENTIK_ISSUER "your-issuer-url"
-bun with-env npx convex env set USESEND_API_KEY "your-api-key"
-bun with-env npx convex env set USESEND_URL "https://usesend.example.com"
-bun with-env npx convex env set USESEND_FROM_EMAIL "My App "
-```
-
-**For production auth to work**, you must also update `CONVEX_SITE_URL` in the Convex
-Dashboard to your production Next.js URL. Go to
-`https://dashboard.convex.example.com` → Settings → Environment Variables and set:
-
-```
-CONVEX_SITE_URL = https://example.com
-```
-
-The root `.env` value of `http://localhost:3000` is correct for local dev and should
-not be changed — only update it in the Dashboard for production.
-
----
-
-### Step 7 — Start the Development Server
-
-```bash
-# From project root
-bun dev:next # Next.js app + Convex backend (most common)
-# or
-bun dev # All apps (Next.js + Expo + Backend)
-```
-
-**App URLs:**
-
-- **Next.js:** http://localhost:3000
-- **Convex Dashboard:** https://dashboard.convex.example.com
-
----
-
-## Development Commands
-
-```bash
-# Development
-bun dev # Run all apps
-bun dev:next # Next.js + Convex backend
-bun dev:expo # Expo + Convex backend
-bun dev:backend # Convex backend only
-
-# Quality Checks
-bun typecheck # Type checking (recommended for testing)
-bun lint # Lint all packages
-bun lint:fix # Lint and auto-fix
-bun format # Check formatting
-bun format:fix # Fix formatting
-
-# Build
-bun build # Build all packages (production)
-
-# Utilities
-bun ui-add # Add shadcn/ui components
-bun clean # Clean node_modules
-bun clean:ws # Clean workspace caches
-```
-
-### Single Package Commands
-
-Use Turborepo filters to target specific packages:
-
-```bash
-bun turbo run dev -F @gib/next # Run Next.js only
-bun turbo run typecheck -F @gib/backend # Typecheck backend
-bun turbo run lint -F @gib/ui # Lint UI package
-```
-
----
-
-## Project Structure
-
-```
-convex-monorepo/
-├── apps/
-│ ├── next/ # Next.js web app
-│ │ ├── src/
-│ │ │ ├── app/ # App Router pages
-│ │ │ ├── components/ # React components
-│ │ │ └── lib/ # Utilities
-│ │ └── package.json
-│ └── expo/ # Expo mobile app (WIP)
-│
-├── packages/
-│ ├── backend/ # Convex backend
-│ │ ├── convex/ # Convex functions (synced to deployment)
-│ │ ├── scripts/ # Utilities (generateKeys.mjs)
-│ │ └── types/ # Shared types
-│ └── ui/ # shadcn/ui components
-│ └── src/ # Component source files
-│
-├── tools/ # Shared configurations
-│ ├── eslint/
-│ ├── prettier/
-│ ├── tailwind/
-│ └── typescript/
-│
-├── docker/ # Self-hosted deployment
-│ ├── compose.yml
-│ ├── Dockerfile
-│ └── .env.example
-│
-├── turbo.json # Turborepo configuration
-└── package.json # Root workspace & catalogs
-```
-
----
-
-## Features
-
-### Authentication
-
-- **OAuth:** Authentik SSO integration
-- **Password:** Custom password auth with email verification
-- **OTP:** Email verification via self-hosted UseSend
-- **Session Management:** Secure cookie-based sessions (30-day max age)
-
-### Next.js App
-
-- **App Router:** Next.js 16 with React Server Components
-- **Data Preloading:** SSR data fetching with `preloadQuery` + `usePreloadedQuery`
-- **Middleware:** Route protection & IP-based security (`src/proxy.ts`)
-- **Styling:** Tailwind CSS v4 with dark mode (OKLCH-based theme)
-- **Analytics:** Plausible (privacy-focused, proxied through Next.js)
-- **Monitoring:** Sentry error tracking & performance
-
-### Backend
-
-- **Real-time:** Convex reactive queries
-- **File Storage:** Built-in file upload/storage
-- **Auth:** Multi-provider authentication
-- **Type-safe:** Full TypeScript with generated types
-- **Self-hosted:** Complete control over your data
-
-### Developer Experience
-
-- **Monorepo:** Turborepo for efficient builds and caching
-- **Type Safety:** Strict TypeScript throughout
-- **Code Quality:** ESLint + Prettier with auto-fix
-- **Hot Reload:** Fast refresh for all packages
-- **Catalog Deps:** Centralized dependency version management
-
----
+Shared dependency versions belong in root catalogs. Edit the root catalog, run
+`bun install`, then `bun lint:ws`; do not run `bun update` inside a workspace.
## Deployment
-### Production Deployment (Docker)
-
-Once the Convex containers are running (they only need to be started once), deploying
-a new version of the Next.js app is a two-command workflow:
-
-```bash
-# SSH onto your server, then:
-cd docker/
-
-# Build the new image
-sudo docker compose build next-app
-
-# Deploy it
-sudo docker compose up -d next-app
-```
-
-To start all services from scratch:
-
-```bash
-cd docker/
-sudo docker compose up -d convex-backend convex-dashboard
-# Wait for backend health check to pass, then:
-sudo docker compose up -d next-app
-```
-
-**Services:**
-
-- `next-app` — Next.js standalone build
-- `convex-backend` — Convex backend (port 3210)
-- `convex-dashboard` — Admin dashboard (port 6791)
-
-**Network:** Uses `nginx-bridge` Docker network (reverse proxy via nginx-proxy-manager).
-
-### Production Checklist
-
-- [ ] Fill out `docker/.env` with your domain names and secrets
-- [ ] Start `convex-backend` and `convex-dashboard` containers
-- [ ] Generate and set `CONVEX_SELF_HOSTED_ADMIN_KEY` via `./generate_convex_admin_key`
-- [ ] Reverse-proxy both Convex services via nginx-proxy-manager with SSL
-- [ ] Fill out root `/.env` with all environment variables
-- [ ] Generate JWT keys and sync all env vars to Convex (`bun with-env npx convex env set ...`)
-- [ ] Update `CONVEX_SITE_URL` in the Convex Dashboard to your production Next.js URL
-- [ ] Build and start the `next-app` container
-- [ ] Back up `docker/data/` regularly (contains all Convex database data)
-
----
-
-## Documentation
-
-- **[AGENTS.md](./AGENTS.md)** — Comprehensive guide for AI agents & developers
-- **[Convex Docs](https://docs.convex.dev)** — Official Convex documentation
-- **[Turborepo Docs](https://turbo.build/repo/docs)** — Turborepo documentation
-- **[Next.js Docs](https://nextjs.org/docs)** — Next.js documentation
-
----
-
-## Troubleshooting
-
-### Backend typecheck shows TypeScript help message
-
-This is expected behavior. The backend package follows Convex's structure with only
-`convex/tsconfig.json` (no root tsconfig). Running `bun typecheck` from the repo root
-will show TypeScript's help text for `@gib/backend` — this is not an error.
-
-### Imports from Convex require `.js` extension
-
-The project uses ESM (`"type": "module"`), which requires explicit file extensions:
-
-```typescript
-// ✅ Correct
-import type { Id } from '@gib/backend/convex/_generated/dataModel.js';
-// ❌ Wrong — will fail at runtime
-import { api } from '@gib/backend/convex/_generated/api';
-import { api } from '@gib/backend/convex/_generated/api.js';
-```
-
-### Docker containers won't start
-
-1. Check Docker logs: `sudo docker compose logs`
-2. Verify environment variables in `docker/.env`
-3. Ensure the `nginx-bridge` network exists: `sudo docker network create nginx-bridge`
-4. Check that the required ports (3210, 6791) are not already in use
-
-### Auth doesn't work in production
-
-Make sure `CONVEX_SITE_URL` is set to your production Next.js URL in the **Convex
-Dashboard** (not just in the root `.env` file). The root `.env` should always contain
-`http://localhost:3000`; the Dashboard must have your production URL.
-
-### Catalog updates break workspace
-
-After updating dependencies, if you see `sherif` errors on `bun install`:
-
-1. Never use `bun update` inside individual package directories
-2. Edit the version in root `package.json` catalog section instead
-3. Run `bun install` from the root
-4. Verify with `bun lint:ws`
-
----
-
-## Contributing
-
-This is a personal monorepo template. Feel free to fork and adapt for your needs.
-
-### Code Style
-
-- Single quotes, trailing commas
-- 80 character line width
-- ESLint + Prettier enforced
-- `const fn = () => {}` over `function fn()` (strong preference)
-- Import order: Types → React → Next → Third-party → @gib → Local
-
-Run `bun lint:fix` and `bun format:fix` before committing.
-
----
-
-## License
-
-MIT
-
----
-
-## Acknowledgments
-
-Built with inspiration from:
-
-- [T3 Turbo](https://github.com/t3-oss/create-t3-turbo)
-- [Convex](https://convex.dev)
-- [shadcn/ui](https://ui.shadcn.com)
-- [Turborepo](https://turbo.build)
+Production Compose retains the self-hosted Convex backend/dashboard and has no
+Postgres service by default. A commented `POSTGRES_URL` remains only as an
+optional Convex-on-Postgres example for cloned projects. Gitea runs the quality
+gate first, builds the Next image from a temporary Gitea-secret env file, then
+pushes SHA and `latest` tags. CI never installs or invokes Infisical.
diff --git a/apps/expo/.cache/.prettiercache b/apps/expo/.cache/.prettiercache
index 0e51c96..60a52ab 100644
--- a/apps/expo/.cache/.prettiercache
+++ b/apps/expo/.cache/.prettiercache
@@ -1 +1 @@
-[["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21"],{"key":"22","value":"23"},{"key":"24","value":"25"},{"key":"26","value":"27"},{"key":"28","value":"29"},{"key":"30","value":"31"},{"key":"32","value":"33"},{"key":"34","value":"35"},{"key":"36","value":"37"},{"key":"38","value":"39"},{"key":"40","value":"41"},{"key":"42","value":"43"},{"key":"44","value":"45"},{"key":"46","value":"47"},{"key":"48","value":"49"},{"key":"50","value":"51"},{"key":"52","value":"53"},{"key":"54","value":"55"},{"key":"56","value":"57"},{"key":"58","value":"59"},{"key":"60","value":"61"},{"key":"62","value":"63"},"/home/gib/Documents/Code/convex-monorepo/apps/expo/src/app/index.tsx",{"size":1935,"mtime":1774546215689,"hash":"64","data":"65"},"/home/gib/Documents/Code/convex-monorepo/apps/expo/index.ts",{"size":28,"mtime":1768155639000,"hash":"66","data":"67"},"/home/gib/Documents/Code/convex-monorepo/apps/expo/assets/icon-dark.png",{"size":19633,"mtime":1766222924000,"hash":"68"},"/home/gib/Documents/Code/convex-monorepo/apps/expo/postcss.config.js",{"size":65,"mtime":1774546126644,"hash":"69","data":"70"},"/home/gib/Documents/Code/convex-monorepo/apps/expo/src/app/post/[id].tsx",{"size":678,"mtime":1774546226606,"hash":"71","data":"72"},"/home/gib/Documents/Code/convex-monorepo/apps/expo/src/utils/convex.ts",{"size":909,"mtime":1774546187217,"data":"73"},"/home/gib/Documents/Code/convex-monorepo/apps/expo/eas.json",{"size":566,"mtime":1774546138669,"hash":"74","data":"75"},"/home/gib/Documents/Code/convex-monorepo/apps/expo/src/app/_layout.tsx",{"size":836,"mtime":1774546198917,"hash":"76","data":"77"},"/home/gib/Documents/Code/convex-monorepo/apps/expo/src/styles.css",{"size":89,"mtime":1774546134256,"hash":"78","data":"79"},"/home/gib/Documents/Code/convex-monorepo/apps/expo/.cache/.prettiercache",{"size":4929,"mtime":1774544663692},"/home/gib/Documents/Code/convex-monorepo/apps/expo/assets/icon-light.png",{"size":19133,"mtime":1766222924000,"hash":"80"},"/home/gib/Documents/Code/convex-monorepo/apps/expo/package.json",{"size":2229,"mtime":1774546163623,"hash":"81","data":"82"},"/home/gib/Documents/Code/convex-monorepo/apps/expo/turbo.json",{"size":171,"mtime":1774031879321,"hash":"83","data":"84"},"/home/gib/Documents/Code/convex-monorepo/apps/expo/eslint.config.mts",{"size":274,"mtime":1774546113649,"hash":"85","data":"86"},"/home/gib/Documents/Code/convex-monorepo/apps/expo/tsconfig.json",{"size":387,"mtime":1766228480000,"hash":"87","data":"88"},"/home/gib/Documents/Code/convex-monorepo/apps/expo/metro.config.js",{"size":511,"mtime":1768155639000,"hash":"89","data":"90"},"/home/gib/Documents/Code/convex-monorepo/apps/expo/nativewind-env.d.ts",{"size":246,"mtime":1766222924000,"hash":"91","data":"92"},"/home/gib/Documents/Code/convex-monorepo/apps/expo/src/utils/base-url.ts",{"size":880,"mtime":1768155639000,"hash":"93","data":"94"},"/home/gib/Documents/Code/convex-monorepo/apps/expo/.expo-shared/assets.json",{"size":155,"mtime":1766222924000,"hash":"95","data":"96"},"/home/gib/Documents/Code/convex-monorepo/apps/expo/src/utils/session-store.ts",{"size":272,"mtime":1768155639000,"hash":"97","data":"98"},"/home/gib/Documents/Code/convex-monorepo/apps/expo/app.config.ts",{"size":1333,"mtime":1768155639000,"hash":"99","data":"100"},"73c235a66242df70b69394cce29d1ed3",{"hashOfOptions":"101"},"11cdbef6afa001cd39bc187041ca6865",{"hashOfOptions":"102"},"1e8ac0d261e95efb19d290ffcf70ce36","b7edffce093c4c84092cc93f3dc208ef",{"hashOfOptions":"103"},"ead19d73283f9d8e08b55c896c9fd570",{"hashOfOptions":"104"},{"hashOfOptions":"105"},"a3c1487f8318513ae7c156acc857fde2",{"hashOfOptions":"106"},"8e407b4b1b0c0bd9c862a00243344be3",{"hashOfOptions":"107"},"52a1d72379b952dd802f47e1865bd0da",{"hashOfOptions":"108"},"863da15dbd856008b7c24077ca746d91","d8763702c14cdc382dcfb84f6f9a068f",{"hashOfOptions":"109"},"c7d4dcf839dfeaa02e0407adfd5e47a6",{"hashOfOptions":"110"},"1c1710ce3de3ce02e8054cc3787c8579",{"hashOfOptions":"111"},"6937fb7370f1e17491df649888d6ecc9",{"hashOfOptions":"112"},"dbe97bcde588a81538bbcd6a9befdddd",{"hashOfOptions":"113"},"d4d589c153ac8b5e7bf0fb130a5b5a7d",{"hashOfOptions":"114"},"dd2007a211e323deabb3f7fa7d16313f",{"hashOfOptions":"115"},"0f7f54c7161b8403d3bc42d91f59cd91",{"hashOfOptions":"116"},"1bc3e15a40c117eecc51294886ea9b38",{"hashOfOptions":"117"},"4f49c6df7733f874fbe72b4e20b3092b",{"hashOfOptions":"118"},"3000879843","3103968608","384110377","141502567","1235541372","1050155876","2025343866","4147067111","4228440757","3451484829","4039211292","3318113268","2585374463","45764855","1418614640","2754339483","1950506033","3468872477"]
\ No newline at end of file
+[["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44"],{"key":"45","value":"46"},{"key":"47","value":"48"},{"key":"49","value":"50"},{"key":"51","value":"52"},{"key":"53","value":"54"},{"key":"55","value":"56"},{"key":"57","value":"58"},{"key":"59","value":"60"},{"key":"61","value":"62"},{"key":"63","value":"64"},{"key":"65","value":"66"},{"key":"67","value":"68"},{"key":"69","value":"70"},{"key":"71","value":"72"},{"key":"73","value":"74"},{"key":"75","value":"76"},{"key":"77","value":"78"},{"key":"79","value":"80"},{"key":"81","value":"82"},{"key":"83","value":"84"},{"key":"85","value":"86"},{"key":"87","value":"88"},{"key":"89","value":"90"},{"key":"91","value":"92"},{"key":"93","value":"94"},{"key":"95","value":"96"},{"key":"97","value":"98"},{"key":"99","value":"100"},{"key":"101","value":"102"},{"key":"103","value":"104"},{"key":"105","value":"106"},{"key":"107","value":"108"},{"key":"109","value":"110"},{"key":"111","value":"112"},{"key":"113","value":"114"},{"key":"115","value":"116"},{"key":"117","value":"118"},{"key":"119","value":"120"},{"key":"121","value":"122"},{"key":"123","value":"124"},{"key":"125","value":"126"},{"key":"127","value":"128"},{"key":"129","value":"130"},{"key":"131","value":"132"},"/home/gib/Documents/Code/convex-monorepo/apps/expo/src/app/index.tsx",{"size":1935,"mtime":1774546669443,"hash":"133","data":"134"},"/home/gib/Documents/Code/Spoon/apps/expo/src/app/index.tsx",{"size":1935,"mtime":1774546669443,"data":"135"},"/home/gib/Documents/Code/convex-monorepo/apps/expo/index.ts",{"size":28,"mtime":1768155639000,"hash":"136","data":"137"},"/home/gib/Documents/Code/convex-monorepo/apps/expo/assets/icon-dark.png",{"size":19633,"mtime":1766222924000,"hash":"138"},"/home/gib/Documents/Code/Spoon/apps/expo/assets/icon-dark.png",{"size":19633,"mtime":1766222924000},"/home/gib/Documents/Code/Spoon/apps/expo/index.ts",{"size":28,"mtime":1768155639000,"data":"139"},"/home/gib/Documents/Code/convex-monorepo/apps/expo/postcss.config.js",{"size":65,"mtime":1774546669443,"hash":"140","data":"141"},"/home/gib/Documents/Code/convex-monorepo/apps/expo/src/app/post/[id].tsx",{"size":678,"mtime":1774546669443,"hash":"142","data":"143"},"/home/gib/Documents/Code/Spoon/apps/expo/postcss.config.js",{"size":65,"mtime":1774546669443,"data":"144"},"/home/gib/Documents/Code/Spoon/apps/expo/src/app/post/[id].tsx",{"size":678,"mtime":1774546669443,"data":"145"},"/home/gib/Documents/Code/convex-monorepo/apps/expo/src/utils/convex.ts",{"size":909,"mtime":1774546669443,"data":"146"},"/home/gib/Documents/Code/Spoon/apps/expo/src/utils/convex.ts",{"size":909,"mtime":1774546669443,"data":"147"},"/home/gib/Documents/Code/convex-monorepo/apps/expo/eas.json",{"size":566,"mtime":1774546669443,"hash":"148","data":"149"},"/home/gib/Documents/Code/convex-monorepo/apps/expo/src/app/_layout.tsx",{"size":836,"mtime":1774546669443,"hash":"150","data":"151"},"/home/gib/Documents/Code/Spoon/apps/expo/eas.json",{"size":566,"mtime":1774546669443,"data":"152"},"/home/gib/Documents/Code/Spoon/apps/expo/src/app/_layout.tsx",{"size":836,"mtime":1774546669443,"data":"153"},"/home/gib/Documents/Code/convex-monorepo/apps/expo/src/styles.css",{"size":89,"mtime":1774546669443,"hash":"154","data":"155"},"/home/gib/Documents/Code/convex-monorepo/apps/expo/.cache/.prettiercache",{"size":4973,"mtime":1782065457188},"/home/gib/Documents/Code/convex-monorepo/apps/expo/.cache/.eslintcache",{"size":3449,"mtime":1782065364722},"/home/gib/Documents/Code/Spoon/apps/expo/src/styles.css",{"size":89,"mtime":1774546669443,"data":"156"},"/home/gib/Documents/Code/convex-monorepo/apps/expo/assets/icon-light.png",{"size":19133,"mtime":1766222924000,"hash":"157"},"/home/gib/Documents/Code/Spoon/apps/expo/assets/icon-light.png",{"size":19133,"mtime":1766222924000},"/home/gib/Documents/Code/convex-monorepo/apps/expo/package.json",{"size":2350,"mtime":1782064626066,"hash":"158","data":"159"},"/home/gib/Documents/Code/convex-monorepo/apps/expo/turbo.json",{"size":171,"mtime":1774031879321,"hash":"160","data":"161"},"/home/gib/Documents/Code/Spoon/apps/expo/package.json",{"size":2350,"mtime":1782064626066,"data":"162"},"/home/gib/Documents/Code/Spoon/apps/expo/turbo.json",{"size":171,"mtime":1774031879321,"data":"163"},"/home/gib/Documents/Code/convex-monorepo/apps/expo/eslint.config.mts",{"size":274,"mtime":1774546669443,"hash":"164","data":"165"},"/home/gib/Documents/Code/convex-monorepo/apps/expo/tsconfig.json",{"size":387,"mtime":1766228480000,"hash":"166","data":"167"},"/home/gib/Documents/Code/Spoon/apps/expo/eslint.config.mts",{"size":274,"mtime":1774546669443,"data":"168"},"/home/gib/Documents/Code/Spoon/apps/expo/tsconfig.json",{"size":387,"mtime":1766228480000,"data":"169"},"/home/gib/Documents/Code/convex-monorepo/apps/expo/metro.config.js",{"size":511,"mtime":1768155639000,"hash":"170","data":"171"},"/home/gib/Documents/Code/convex-monorepo/apps/expo/nativewind-env.d.ts",{"size":246,"mtime":1766222924000,"hash":"172","data":"173"},"/home/gib/Documents/Code/Spoon/apps/expo/metro.config.js",{"size":511,"mtime":1768155639000,"data":"174"},"/home/gib/Documents/Code/Spoon/apps/expo/nativewind-env.d.ts",{"size":246,"mtime":1766222924000,"data":"175"},"/home/gib/Documents/Code/convex-monorepo/apps/expo/src/utils/base-url.ts",{"size":880,"mtime":1768155639000,"hash":"176","data":"177"},"/home/gib/Documents/Code/convex-monorepo/apps/expo/src/css.d.ts",{"size":24,"mtime":1782064626068,"data":"178"},"/home/gib/Documents/Code/Spoon/apps/expo/src/css.d.ts",{"size":24,"mtime":1782064626068,"data":"179"},"/home/gib/Documents/Code/Spoon/apps/expo/src/utils/base-url.ts",{"size":880,"mtime":1768155639000,"data":"180"},"/home/gib/Documents/Code/convex-monorepo/apps/expo/.expo-shared/assets.json",{"size":155,"mtime":1766222924000,"hash":"181","data":"182"},"/home/gib/Documents/Code/Spoon/apps/expo/.expo-shared/assets.json",{"size":155,"mtime":1766222924000,"data":"183"},"/home/gib/Documents/Code/convex-monorepo/apps/expo/src/utils/session-store.ts",{"size":272,"mtime":1768155639000,"hash":"184","data":"185"},"/home/gib/Documents/Code/convex-monorepo/apps/expo/app.config.ts",{"size":1333,"mtime":1768155639000,"hash":"186","data":"187"},"/home/gib/Documents/Code/Spoon/apps/expo/app.config.ts",{"size":1333,"mtime":1768155639000,"data":"188"},"/home/gib/Documents/Code/Spoon/apps/expo/src/utils/session-store.ts",{"size":272,"mtime":1768155639000,"data":"189"},"73c235a66242df70b69394cce29d1ed3",{"hashOfOptions":"190"},{"hashOfOptions":"191"},"11cdbef6afa001cd39bc187041ca6865",{"hashOfOptions":"192"},"1e8ac0d261e95efb19d290ffcf70ce36",{"hashOfOptions":"193"},"b7edffce093c4c84092cc93f3dc208ef",{"hashOfOptions":"194"},"ead19d73283f9d8e08b55c896c9fd570",{"hashOfOptions":"195"},{"hashOfOptions":"196"},{"hashOfOptions":"197"},{"hashOfOptions":"198"},{"hashOfOptions":"199"},"a3c1487f8318513ae7c156acc857fde2",{"hashOfOptions":"200"},"8e407b4b1b0c0bd9c862a00243344be3",{"hashOfOptions":"201"},{"hashOfOptions":"202"},{"hashOfOptions":"203"},"52a1d72379b952dd802f47e1865bd0da",{"hashOfOptions":"204"},{"hashOfOptions":"205"},"863da15dbd856008b7c24077ca746d91","d8763702c14cdc382dcfb84f6f9a068f",{"hashOfOptions":"206"},"c7d4dcf839dfeaa02e0407adfd5e47a6",{"hashOfOptions":"207"},{"hashOfOptions":"208"},{"hashOfOptions":"209"},"1c1710ce3de3ce02e8054cc3787c8579",{"hashOfOptions":"210"},"6937fb7370f1e17491df649888d6ecc9",{"hashOfOptions":"211"},{"hashOfOptions":"212"},{"hashOfOptions":"213"},"dbe97bcde588a81538bbcd6a9befdddd",{"hashOfOptions":"214"},"d4d589c153ac8b5e7bf0fb130a5b5a7d",{"hashOfOptions":"215"},{"hashOfOptions":"216"},{"hashOfOptions":"217"},"dd2007a211e323deabb3f7fa7d16313f",{"hashOfOptions":"218"},{"hashOfOptions":"219"},{"hashOfOptions":"220"},{"hashOfOptions":"221"},"0f7f54c7161b8403d3bc42d91f59cd91",{"hashOfOptions":"222"},{"hashOfOptions":"223"},"1bc3e15a40c117eecc51294886ea9b38",{"hashOfOptions":"224"},"4f49c6df7733f874fbe72b4e20b3092b",{"hashOfOptions":"225"},{"hashOfOptions":"226"},{"hashOfOptions":"227"},"710642985","1639323967","1648168346","1185640452","2388840815","2509038765","3317521797","1294703299","2094652610","2726542808","3889322910","2884455104","3426795016","3516345302","1791197729","3880101259","2794498287","442711511","4181483865","502467393","1748974434","2204773434","2677655416","2484506192","1423029317","904876093","474114907","1536766291","3786150838","3219152638","311170920","2571815372","922237653","1842869567","3539089259","2355532643","2635265401","1439128789"]
\ No newline at end of file
diff --git a/apps/expo/package.json b/apps/expo/package.json
index a1400c2..4592614 100644
--- a/apps/expo/package.json
+++ b/apps/expo/package.json
@@ -4,24 +4,25 @@
"main": "index.ts",
"scripts": {
"clean": "git clean -xdf .cache .expo .turbo android ios node_modules",
- "dev": "expo start",
- "dev:tunnel": "expo start --tunnel",
- "dev:android": "expo start --android",
- "dev:ios": "expo start --ios",
+ "dev": "bun with-env expo start",
+ "dev:tunnel": "bun with-env expo start --tunnel",
+ "dev:android": "bun with-env expo start --android",
+ "dev:ios": "bun with-env expo start --ios",
"android": "expo run:android",
"ios": "expo run:ios",
"format": "prettier --check . --ignore-path ../../.gitignore --ignore-path .prettierignore",
"lint": "eslint --flag unstable_native_nodejs_ts_config",
- "typecheck": "tsc --noEmit"
+ "typecheck": "tsc --noEmit",
+ "with-env": "sh ../../scripts/with-env ${INFISICAL_ENV:-dev} --"
},
"dependencies": {
"@convex-dev/auth": "catalog:convex",
"@expo/vector-icons": "^15.1.1",
"@gib/backend": "workspace:*",
"@legendapp/list": "^2.0.19",
- "@react-navigation/bottom-tabs": "^7.15.5",
- "@react-navigation/elements": "^2.9.10",
- "@react-navigation/native": "^7.1.33",
+ "@react-navigation/bottom-tabs": "^7.15.8",
+ "@react-navigation/elements": "^2.9.13",
+ "@react-navigation/native": "^7.2.1",
"@sentry/react-native": "^7.13.0",
"convex": "catalog:convex",
"expo": "~54.0.33",
@@ -45,7 +46,7 @@
"react-native": "~0.81.6",
"react-native-css": "3.0.1",
"react-native-gesture-handler": "~2.28.0",
- "react-native-reanimated": "~4.1.6",
+ "react-native-reanimated": "~4.1.7",
"react-native-safe-area-context": "~5.6.2",
"react-native-screens": "~4.16.0",
"react-native-web": "~0.21.2",
diff --git a/apps/expo/src/css.d.ts b/apps/expo/src/css.d.ts
new file mode 100644
index 0000000..35306c6
--- /dev/null
+++ b/apps/expo/src/css.d.ts
@@ -0,0 +1 @@
+declare module '*.css';
diff --git a/apps/next/.cache/.eslintcache b/apps/next/.cache/.eslintcache
index 9fc735e..c9fc9b2 100644
--- a/apps/next/.cache/.eslintcache
+++ b/apps/next/.cache/.eslintcache
@@ -1 +1 @@
-[{"/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(auth)/forgot-password/layout.tsx":"1","/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(auth)/forgot-password/page.tsx":"2","/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(auth)/profile/layout.tsx":"3","/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(auth)/profile/page.tsx":"4","/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(auth)/sign-in/layout.tsx":"5","/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(auth)/sign-in/page.tsx":"6","/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/global-error.tsx":"7","/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/layout.tsx":"8","/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/page.tsx":"9","/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/landing/cta.tsx":"10","/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/landing/features.tsx":"11","/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/landing/hero.tsx":"12","/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/landing/index.tsx":"13","/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/landing/tech-stack.tsx":"14","/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/auth/buttons/gibs-auth.tsx":"15","/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/auth/buttons/index.tsx":"16","/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/auth/profile/avatar-upload.tsx":"17","/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/auth/profile/header.tsx":"18","/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/auth/profile/index.tsx":"19","/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/auth/profile/reset-password.tsx":"20","/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/auth/profile/sign-out.tsx":"21","/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/auth/profile/user-info.tsx":"22","/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/footer/index.tsx":"23","/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/header/controls/AvatarDropdown.tsx":"24","/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/header/controls/index.tsx":"25","/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/header/index.tsx":"26","/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/providers/ConvexClientProvider.tsx":"27","/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/providers/index.tsx":"28","/home/gib/Documents/Code/convex-monorepo/apps/next/src/instrumentation-client.ts":"29","/home/gib/Documents/Code/convex-monorepo/apps/next/src/instrumentation.ts":"30","/home/gib/Documents/Code/convex-monorepo/apps/next/src/lib/metadata.ts":"31","/home/gib/Documents/Code/convex-monorepo/apps/next/src/lib/proxy/ban-sus-ips.ts":"32","/home/gib/Documents/Code/convex-monorepo/apps/next/src/proxy.ts":"33"},{"size":298,"mtime":1768236967188,"results":"34","hashOfConfig":"35"},{"size":10607,"mtime":1768372347281,"results":"36","hashOfConfig":"35"},{"size":276,"mtime":1768236979857,"results":"37","hashOfConfig":"35"},{"size":1515,"mtime":1768372347312,"results":"38","hashOfConfig":"35"},{"size":274,"mtime":1768236849421,"results":"39","hashOfConfig":"35"},{"size":16567,"mtime":1774544486885,"results":"40","hashOfConfig":"35"},{"size":2410,"mtime":1774544486967,"results":"41","hashOfConfig":"35"},{"size":2042,"mtime":1774131581680,"results":"42","hashOfConfig":"35"},{"size":253,"mtime":1768372347406,"results":"43","hashOfConfig":"35"},{"size":1139,"mtime":1774544487103,"results":"44","hashOfConfig":"35"},{"size":2916,"mtime":1774544487137,"results":"45","hashOfConfig":"35"},{"size":4045,"mtime":1774544487187,"results":"46","hashOfConfig":"35"},{"size":141,"mtime":1768325738000,"results":"47","hashOfConfig":"35"},{"size":2697,"mtime":1774544487253,"results":"48","hashOfConfig":"35"},{"size":1081,"mtime":1768372347496,"results":"49","hashOfConfig":"35"},{"size":52,"mtime":1768188510036,"results":"50","hashOfConfig":"35"},{"size":6797,"mtime":1768372347532,"results":"51","hashOfConfig":"35"},{"size":384,"mtime":1774544487414,"results":"52","hashOfConfig":"35"},{"size":230,"mtime":1768238412936,"results":"53","hashOfConfig":"35"},{"size":5681,"mtime":1768372347569,"results":"54","hashOfConfig":"35"},{"size":1234,"mtime":1768372347581,"results":"55","hashOfConfig":"35"},{"size":4786,"mtime":1774544487590,"results":"56","hashOfConfig":"35"},{"size":4010,"mtime":1768372347611,"results":"57","hashOfConfig":"35"},{"size":2539,"mtime":1768372347626,"results":"58","hashOfConfig":"35"},{"size":499,"mtime":1768372347633,"results":"59","hashOfConfig":"35"},{"size":2470,"mtime":1774544487733,"results":"60","hashOfConfig":"35"},{"size":444,"mtime":1774544487759,"results":"61","hashOfConfig":"35"},{"size":63,"mtime":1768171856108,"results":"62","hashOfConfig":"35"},{"size":982,"mtime":1774544487814,"results":"63","hashOfConfig":"35"},{"size":283,"mtime":1768341407000,"results":"64","hashOfConfig":"35"},{"size":3088,"mtime":1768334221000,"results":"65","hashOfConfig":"35"},{"size":4894,"mtime":1768226323845,"results":"66","hashOfConfig":"35"},{"size":1109,"mtime":1768330175000,"results":"67","hashOfConfig":"35"},{"filePath":"68","messages":"69","suppressedMessages":"70","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"1wm2hhh",{"filePath":"71","messages":"72","suppressedMessages":"73","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"74","messages":"75","suppressedMessages":"76","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"77","messages":"78","suppressedMessages":"79","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"80","messages":"81","suppressedMessages":"82","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"83","messages":"84","suppressedMessages":"85","errorCount":0,"fatalErrorCount":0,"warningCount":2,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"86","messages":"87","suppressedMessages":"88","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"89","messages":"90","suppressedMessages":"91","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"92","messages":"93","suppressedMessages":"94","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"95","messages":"96","suppressedMessages":"97","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"98","messages":"99","suppressedMessages":"100","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"101","messages":"102","suppressedMessages":"103","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"104","messages":"105","suppressedMessages":"106","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"107","messages":"108","suppressedMessages":"109","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"110","messages":"111","suppressedMessages":"112","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"113","messages":"114","suppressedMessages":"115","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"116","messages":"117","suppressedMessages":"118","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"119","messages":"120","suppressedMessages":"121","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"122","messages":"123","suppressedMessages":"124","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"125","messages":"126","suppressedMessages":"127","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"128","messages":"129","suppressedMessages":"130","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"131","messages":"132","suppressedMessages":"133","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"134","messages":"135","suppressedMessages":"136","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"137","messages":"138","suppressedMessages":"139","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"140","messages":"141","suppressedMessages":"142","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"143","messages":"144","suppressedMessages":"145","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"146","messages":"147","suppressedMessages":"148","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"149","messages":"150","suppressedMessages":"151","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"152","messages":"153","suppressedMessages":"154","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"155","messages":"156","suppressedMessages":"157","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"158","messages":"159","suppressedMessages":"160","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"161","messages":"162","suppressedMessages":"163","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"164","messages":"165","suppressedMessages":"166","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(auth)/forgot-password/layout.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(auth)/forgot-password/page.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(auth)/profile/layout.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(auth)/profile/page.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(auth)/sign-in/layout.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(auth)/sign-in/page.tsx",["167","168"],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/global-error.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/layout.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/page.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/landing/cta.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/landing/features.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/landing/hero.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/landing/index.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/landing/tech-stack.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/auth/buttons/gibs-auth.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/auth/buttons/index.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/auth/profile/avatar-upload.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/auth/profile/header.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/auth/profile/index.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/auth/profile/reset-password.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/auth/profile/sign-out.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/auth/profile/user-info.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/footer/index.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/header/controls/AvatarDropdown.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/header/controls/index.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/header/index.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/providers/ConvexClientProvider.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/providers/index.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/instrumentation-client.ts",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/instrumentation.ts",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/lib/metadata.ts",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/lib/proxy/ban-sus-ips.ts",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/proxy.ts",[],[],{"ruleId":"169","severity":1,"message":"170","line":162,"column":5,"nodeType":null,"messageId":"171","endLine":162,"endColumn":11},{"ruleId":"169","severity":1,"message":"172","line":197,"column":30,"nodeType":null,"messageId":"171","endLine":197,"endColumn":35},"@typescript-eslint/no-unused-vars","'values' is defined but never used. Allowed unused args must match /^_/u.","unusedVar","'field' is defined but never used. Allowed unused args must match /^_/u."]
\ No newline at end of file
+[{"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/landing/cta.tsx":"1","/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/landing/features.tsx":"2","/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/landing/hero.tsx":"3","/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/landing/index.tsx":"4","/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/landing/tech-stack.tsx":"5","/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/auth/buttons/gibs-auth.tsx":"6","/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/auth/buttons/index.tsx":"7","/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/auth/profile/avatar-upload.tsx":"8","/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/auth/profile/header.tsx":"9","/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/auth/profile/index.tsx":"10","/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/auth/profile/reset-password.tsx":"11","/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/auth/profile/sign-out.tsx":"12","/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/auth/profile/user-info.tsx":"13","/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/footer/index.tsx":"14","/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/header/controls/AvatarDropdown.tsx":"15","/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/header/controls/index.tsx":"16","/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/header/index.tsx":"17","/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/providers/ConvexClientProvider.tsx":"18","/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/providers/index.tsx":"19","/home/gib/Documents/Code/convex-monorepo/apps/next/src/instrumentation-client.ts":"20","/home/gib/Documents/Code/convex-monorepo/apps/next/src/instrumentation.ts":"21","/home/gib/Documents/Code/convex-monorepo/apps/next/src/lib/metadata.ts":"22","/home/gib/Documents/Code/convex-monorepo/apps/next/src/lib/proxy/ban-sus-ips.ts":"23","/home/gib/Documents/Code/convex-monorepo/apps/next/src/proxy.ts":"24","/home/gib/Documents/Code/convex-monorepo/apps/next/payload-types.ts":"25","/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(frontend)/(auth)/forgot-password/layout.tsx":"26","/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(frontend)/(auth)/forgot-password/page.tsx":"27","/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(frontend)/(auth)/profile/layout.tsx":"28","/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(frontend)/(auth)/profile/page.tsx":"29","/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(frontend)/(auth)/sign-in/layout.tsx":"30","/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(frontend)/(auth)/sign-in/page.tsx":"31","/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(frontend)/global-error.tsx":"32","/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(frontend)/layout.tsx":"33","/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(frontend)/page.tsx":"34","/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(payload)/admin/[[...segments]]/not-found.tsx":"35","/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(payload)/admin/[[...segments]]/page.tsx":"36","/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(payload)/admin/importMap.js":"37","/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(payload)/api/[...slug]/route.ts":"38","/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(payload)/api/graphql/route.ts":"39","/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(payload)/api/graphql-playground/route.ts":"40","/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(payload)/layout.tsx":"41","/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/landing/content.ts":"42","/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/landing/faq.tsx":"43","/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/landing/logo-cloud.tsx":"44","/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/landing/page-builder.tsx":"45","/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/landing/pricing.tsx":"46","/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/landing/stats.tsx":"47","/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/landing/testimonials.tsx":"48","/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/header/navigation.tsx":"49","/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/payload/refresh-route-on-save.tsx":"50","/home/gib/Documents/Code/convex-monorepo/apps/next/src/lib/payload/get-landing-page-content.ts":"51","/home/gib/Documents/Code/convex-monorepo/apps/next/src/lib/payload/get-payload.ts":"52","/home/gib/Documents/Code/convex-monorepo/apps/next/src/payload/collections/users.ts":"53","/home/gib/Documents/Code/convex-monorepo/apps/next/src/payload/globals/landing-page-blocks.ts":"54","/home/gib/Documents/Code/convex-monorepo/apps/next/src/payload/globals/landing-page.ts":"55","/home/gib/Documents/Code/convex-monorepo/apps/next/src/payload-generated-schema.ts":"56","/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(payload)/admin/layout.tsx":"57","/home/gib/Documents/Code/convex-monorepo/apps/next/src/css.d.ts":"58","/home/gib/Documents/Code/convex-monorepo/apps/next/tests/component/render.test.tsx":"59","/home/gib/Documents/Code/convex-monorepo/apps/next/tests/integration/smoke.test.ts":"60","/home/gib/Documents/Code/convex-monorepo/apps/next/tests/jest-dom.d.ts":"61","/home/gib/Documents/Code/convex-monorepo/apps/next/tests/unit/environment.test.ts":"62","/home/gib/Documents/Code/Spoon/apps/next/src/app/(auth)/forgot-password/layout.tsx":"63","/home/gib/Documents/Code/Spoon/apps/next/src/app/(auth)/forgot-password/page.tsx":"64","/home/gib/Documents/Code/Spoon/apps/next/src/app/(auth)/profile/layout.tsx":"65","/home/gib/Documents/Code/Spoon/apps/next/src/app/(auth)/profile/page.tsx":"66","/home/gib/Documents/Code/Spoon/apps/next/src/app/(auth)/sign-in/layout.tsx":"67","/home/gib/Documents/Code/Spoon/apps/next/src/app/(auth)/sign-in/page.tsx":"68","/home/gib/Documents/Code/Spoon/apps/next/src/app/global-error.tsx":"69","/home/gib/Documents/Code/Spoon/apps/next/src/app/layout.tsx":"70","/home/gib/Documents/Code/Spoon/apps/next/src/app/page.tsx":"71","/home/gib/Documents/Code/Spoon/apps/next/src/components/landing/cta.tsx":"72","/home/gib/Documents/Code/Spoon/apps/next/src/components/landing/features.tsx":"73","/home/gib/Documents/Code/Spoon/apps/next/src/components/landing/hero.tsx":"74","/home/gib/Documents/Code/Spoon/apps/next/src/components/landing/index.tsx":"75","/home/gib/Documents/Code/Spoon/apps/next/src/components/landing/tech-stack.tsx":"76","/home/gib/Documents/Code/Spoon/apps/next/src/components/layout/auth/buttons/gibs-auth.tsx":"77","/home/gib/Documents/Code/Spoon/apps/next/src/components/layout/auth/buttons/index.tsx":"78","/home/gib/Documents/Code/Spoon/apps/next/src/components/layout/auth/profile/avatar-upload.tsx":"79","/home/gib/Documents/Code/Spoon/apps/next/src/components/layout/auth/profile/header.tsx":"80","/home/gib/Documents/Code/Spoon/apps/next/src/components/layout/auth/profile/index.tsx":"81","/home/gib/Documents/Code/Spoon/apps/next/src/components/layout/auth/profile/reset-password.tsx":"82","/home/gib/Documents/Code/Spoon/apps/next/src/components/layout/auth/profile/sign-out.tsx":"83","/home/gib/Documents/Code/Spoon/apps/next/src/components/layout/auth/profile/user-info.tsx":"84","/home/gib/Documents/Code/Spoon/apps/next/src/components/layout/footer/index.tsx":"85","/home/gib/Documents/Code/Spoon/apps/next/src/components/layout/header/controls/AvatarDropdown.tsx":"86","/home/gib/Documents/Code/Spoon/apps/next/src/components/layout/header/controls/index.tsx":"87","/home/gib/Documents/Code/Spoon/apps/next/src/components/layout/header/index.tsx":"88","/home/gib/Documents/Code/Spoon/apps/next/src/components/layout/header/navigation.tsx":"89","/home/gib/Documents/Code/Spoon/apps/next/src/components/providers/ConvexClientProvider.tsx":"90","/home/gib/Documents/Code/Spoon/apps/next/src/components/providers/index.tsx":"91","/home/gib/Documents/Code/Spoon/apps/next/src/instrumentation-client.ts":"92","/home/gib/Documents/Code/Spoon/apps/next/src/instrumentation.ts":"93","/home/gib/Documents/Code/Spoon/apps/next/src/lib/metadata.ts":"94","/home/gib/Documents/Code/Spoon/apps/next/src/lib/proxy/ban-sus-ips.ts":"95","/home/gib/Documents/Code/Spoon/apps/next/src/proxy.ts":"96","/home/gib/Documents/Code/Spoon/apps/next/tests/component/render.test.tsx":"97","/home/gib/Documents/Code/Spoon/apps/next/tests/integration/smoke.test.ts":"98","/home/gib/Documents/Code/Spoon/apps/next/tests/jest-dom.d.ts":"99","/home/gib/Documents/Code/Spoon/apps/next/tests/unit/environment.test.ts":"100"},{"size":1050,"mtime":1774601252818,"results":"101","hashOfConfig":"102"},{"size":1314,"mtime":1774601252818,"results":"103","hashOfConfig":"102"},{"size":2634,"mtime":1774601252818,"results":"104","hashOfConfig":"102"},{"size":382,"mtime":1774603204578,"results":"105","hashOfConfig":"102"},{"size":1440,"mtime":1774601252818,"results":"106","hashOfConfig":"102"},{"size":1081,"mtime":1768372347496,"results":"107","hashOfConfig":"102"},{"size":52,"mtime":1768188510036,"results":"108","hashOfConfig":"102"},{"size":6795,"mtime":1774715746758,"results":"109","hashOfConfig":"102"},{"size":384,"mtime":1774546669448,"results":"110","hashOfConfig":"102"},{"size":230,"mtime":1768238412936,"results":"111","hashOfConfig":"102"},{"size":5681,"mtime":1768372347569,"results":"112","hashOfConfig":"102"},{"size":1234,"mtime":1768372347581,"results":"113","hashOfConfig":"102"},{"size":4786,"mtime":1774546669448,"results":"114","hashOfConfig":"102"},{"size":4010,"mtime":1768372347611,"results":"115","hashOfConfig":"102"},{"size":2539,"mtime":1768372347626,"results":"116","hashOfConfig":"102"},{"size":499,"mtime":1768372347633,"results":"117","hashOfConfig":"102"},{"size":2532,"mtime":1774715746785,"results":"118","hashOfConfig":"102"},{"size":444,"mtime":1774546669448,"results":"119","hashOfConfig":"102"},{"size":63,"mtime":1768171856108,"results":"120","hashOfConfig":"102"},{"size":982,"mtime":1774667904119,"results":"121","hashOfConfig":"102"},{"size":283,"mtime":1768341407000,"results":"122","hashOfConfig":"102"},{"size":3088,"mtime":1768334221000,"results":"123","hashOfConfig":"102"},{"size":5854,"mtime":1774729404490,"results":"124","hashOfConfig":"102"},{"size":1424,"mtime":1782064989615,"results":"125","hashOfConfig":"102"},{"size":15901,"mtime":1774718421027,"results":"126","hashOfConfig":"102"},{"size":298,"mtime":1768236967188,"results":"127","hashOfConfig":"102"},{"size":10607,"mtime":1768372347281,"results":"128","hashOfConfig":"102"},{"size":599,"mtime":1782064989615,"results":"129","hashOfConfig":"102"},{"size":1485,"mtime":1774546669447,"results":"130","hashOfConfig":"102"},{"size":274,"mtime":1768236849421,"results":"131","hashOfConfig":"102"},{"size":16576,"mtime":1774716785211,"results":"132","hashOfConfig":"102"},{"size":2421,"mtime":1774715746469,"results":"133","hashOfConfig":"102"},{"size":2053,"mtime":1774715746483,"results":"134","hashOfConfig":"102"},{"size":1090,"mtime":1774718096093,"results":"135","hashOfConfig":"102"},{"size":738,"mtime":1774716067213,"results":"136","hashOfConfig":"102"},{"size":722,"mtime":1774716067213,"results":"137","hashOfConfig":"102"},{"size":235,"mtime":1774718421271,"results":"138","hashOfConfig":"139"},{"size":561,"mtime":1774715746548,"results":"140","hashOfConfig":"102"},{"size":319,"mtime":1774715746564,"results":"141","hashOfConfig":"102"},{"size":311,"mtime":1774715746557,"results":"142","hashOfConfig":"102"},{"size":836,"mtime":1774716067213,"results":"143","hashOfConfig":"102"},{"size":28074,"mtime":1774603128339,"results":"144","hashOfConfig":"102"},{"size":1461,"mtime":1774603187133,"results":"145","hashOfConfig":"102"},{"size":1142,"mtime":1774603139720,"results":"146","hashOfConfig":"102"},{"size":1487,"mtime":1774603197165,"results":"147","hashOfConfig":"102"},{"size":2723,"mtime":1774603177354,"results":"148","hashOfConfig":"102"},{"size":1348,"mtime":1774603150284,"results":"149","hashOfConfig":"102"},{"size":1602,"mtime":1774603161600,"results":"150","hashOfConfig":"102"},{"size":3100,"mtime":1774585109625,"results":"151","hashOfConfig":"102"},{"size":400,"mtime":1774560352092,"results":"152","hashOfConfig":"102"},{"size":593,"mtime":1774716807812,"results":"153","hashOfConfig":"102"},{"size":203,"mtime":1774558511405,"results":"154","hashOfConfig":"102"},{"size":180,"mtime":1774558467216,"results":"155","hashOfConfig":"102"},{"size":8875,"mtime":1774603243829,"results":"156","hashOfConfig":"102"},{"size":1423,"mtime":1774718097053,"results":"157","hashOfConfig":"102"},{"size":66451,"mtime":1774716067213,"results":"158","hashOfConfig":"102"},{"size":604,"mtime":1774731941393,"results":"159","hashOfConfig":"102"},{"size":39,"mtime":1782065248680,"results":"160","hashOfConfig":"102"},{"size":391,"mtime":1782064673517,"results":"161","hashOfConfig":"162"},{"size":212,"mtime":1782064673516,"results":"163","hashOfConfig":"162"},{"size":43,"mtime":1782064673517,"results":"164","hashOfConfig":"162"},{"size":168,"mtime":1782065314896,"results":"165","hashOfConfig":"162"},{"size":298,"mtime":1768236967188,"results":"166","hashOfConfig":"167"},{"size":10607,"mtime":1768372347281,"results":"168","hashOfConfig":"167"},{"size":595,"mtime":1782065482029,"results":"169","hashOfConfig":"167"},{"size":1485,"mtime":1774546669447,"results":"170","hashOfConfig":"167"},{"size":274,"mtime":1768236849421,"results":"171","hashOfConfig":"167"},{"size":16576,"mtime":1774716785211,"results":"172","hashOfConfig":"167"},{"size":2410,"mtime":1782073225018,"results":"173","hashOfConfig":"167"},{"size":2042,"mtime":1782073225018,"results":"174","hashOfConfig":"167"},{"size":236,"mtime":1782073225018,"results":"175","hashOfConfig":"167"},{"size":1103,"mtime":1782073225019,"results":"176","hashOfConfig":"167"},{"size":2859,"mtime":1782073225019,"results":"177","hashOfConfig":"167"},{"size":2750,"mtime":1782073225019,"results":"178","hashOfConfig":"167"},{"size":141,"mtime":1782073225019,"results":"179","hashOfConfig":"167"},{"size":2636,"mtime":1782073225019,"results":"180","hashOfConfig":"167"},{"size":1081,"mtime":1768372347496,"results":"181","hashOfConfig":"167"},{"size":52,"mtime":1768188510036,"results":"182","hashOfConfig":"167"},{"size":6795,"mtime":1774715746758,"results":"183","hashOfConfig":"167"},{"size":384,"mtime":1774546669448,"results":"184","hashOfConfig":"167"},{"size":230,"mtime":1768238412936,"results":"185","hashOfConfig":"167"},{"size":5681,"mtime":1768372347569,"results":"186","hashOfConfig":"167"},{"size":1234,"mtime":1768372347581,"results":"187","hashOfConfig":"167"},{"size":4786,"mtime":1774546669448,"results":"188","hashOfConfig":"167"},{"size":4010,"mtime":1768372347611,"results":"189","hashOfConfig":"167"},{"size":2539,"mtime":1768372347626,"results":"190","hashOfConfig":"167"},{"size":499,"mtime":1768372347633,"results":"191","hashOfConfig":"167"},{"size":2532,"mtime":1774715746785,"results":"192","hashOfConfig":"167"},{"size":3100,"mtime":1774585109625,"results":"193","hashOfConfig":"167"},{"size":444,"mtime":1774546669448,"results":"194","hashOfConfig":"167"},{"size":63,"mtime":1768171856108,"results":"195","hashOfConfig":"167"},{"size":982,"mtime":1774667904119,"results":"196","hashOfConfig":"167"},{"size":283,"mtime":1768341407000,"results":"197","hashOfConfig":"167"},{"size":3088,"mtime":1768334221000,"results":"198","hashOfConfig":"167"},{"size":5854,"mtime":1774729404490,"results":"199","hashOfConfig":"167"},{"size":1424,"mtime":1782073358681,"results":"200","hashOfConfig":"167"},{"size":391,"mtime":1782064673517,"results":"201","hashOfConfig":"202"},{"size":212,"mtime":1782064673516,"results":"203","hashOfConfig":"202"},{"size":43,"mtime":1782064673517,"results":"204","hashOfConfig":"202"},{"size":168,"mtime":1782065314896,"results":"205","hashOfConfig":"202"},{"filePath":"206","messages":"207","suppressedMessages":"208","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"yh3six",{"filePath":"209","messages":"210","suppressedMessages":"211","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"212","messages":"213","suppressedMessages":"214","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"215","messages":"216","suppressedMessages":"217","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"218","messages":"219","suppressedMessages":"220","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"221","messages":"222","suppressedMessages":"223","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"224","messages":"225","suppressedMessages":"226","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"227","messages":"228","suppressedMessages":"229","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"230","messages":"231","suppressedMessages":"232","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"233","messages":"234","suppressedMessages":"235","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"236","messages":"237","suppressedMessages":"238","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"239","messages":"240","suppressedMessages":"241","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"242","messages":"243","suppressedMessages":"244","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"245","messages":"246","suppressedMessages":"247","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"248","messages":"249","suppressedMessages":"250","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"251","messages":"252","suppressedMessages":"253","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"254","messages":"255","suppressedMessages":"256","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"257","messages":"258","suppressedMessages":"259","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"260","messages":"261","suppressedMessages":"262","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"263","messages":"264","suppressedMessages":"265","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"266","messages":"267","suppressedMessages":"268","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"269","messages":"270","suppressedMessages":"271","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"272","messages":"273","suppressedMessages":"274","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"275","messages":"276","suppressedMessages":"277","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"278","messages":"279","suppressedMessages":"280","errorCount":1,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":1,"fixableWarningCount":0,"source":null},{"filePath":"281","messages":"282","suppressedMessages":"283","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"284","messages":"285","suppressedMessages":"286","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"287","messages":"288","suppressedMessages":"289","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"290","messages":"291","suppressedMessages":"292","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"293","messages":"294","suppressedMessages":"295","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"296","messages":"297","suppressedMessages":"298","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"299","messages":"300","suppressedMessages":"301","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"302","messages":"303","suppressedMessages":"304","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"305","messages":"306","suppressedMessages":"307","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"308","messages":"309","suppressedMessages":"310","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"311","messages":"312","suppressedMessages":"313","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"314","messages":"315","suppressedMessages":"316","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"1qeho7n",{"filePath":"317","messages":"318","suppressedMessages":"319","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"320","messages":"321","suppressedMessages":"322","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"323","messages":"324","suppressedMessages":"325","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"326","messages":"327","suppressedMessages":"328","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"329","messages":"330","suppressedMessages":"331","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"332","messages":"333","suppressedMessages":"334","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"335","messages":"336","suppressedMessages":"337","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"338","messages":"339","suppressedMessages":"340","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"341","messages":"342","suppressedMessages":"343","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"344","messages":"345","suppressedMessages":"346","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"347","messages":"348","suppressedMessages":"349","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"350","messages":"351","suppressedMessages":"352","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"353","messages":"354","suppressedMessages":"355","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"356","messages":"357","suppressedMessages":"358","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"359","messages":"360","suppressedMessages":"361","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"362","messages":"363","suppressedMessages":"364","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"365","messages":"366","suppressedMessages":"367","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"368","messages":"369","suppressedMessages":"370","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"371","messages":"372","suppressedMessages":"373","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"374","messages":"375","suppressedMessages":"376","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"377","messages":"378","suppressedMessages":"379","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"380","messages":"381","suppressedMessages":"382","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"1ocvkw8",{"filePath":"383","messages":"384","suppressedMessages":"385","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"386","messages":"387","suppressedMessages":"388","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"389","messages":"390","suppressedMessages":"391","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"392","messages":"393","suppressedMessages":"394","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"cex88t",{"filePath":"395","messages":"396","suppressedMessages":"397","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"398","messages":"399","suppressedMessages":"400","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"401","messages":"402","suppressedMessages":"403","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"404","messages":"405","suppressedMessages":"406","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"407","messages":"408","suppressedMessages":"409","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"410","messages":"411","suppressedMessages":"412","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"413","messages":"414","suppressedMessages":"415","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"416","messages":"417","suppressedMessages":"418","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"419","messages":"420","suppressedMessages":"421","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"422","messages":"423","suppressedMessages":"424","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"425","messages":"426","suppressedMessages":"427","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"428","messages":"429","suppressedMessages":"430","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"431","messages":"432","suppressedMessages":"433","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"434","messages":"435","suppressedMessages":"436","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"437","messages":"438","suppressedMessages":"439","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"440","messages":"441","suppressedMessages":"442","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"443","messages":"444","suppressedMessages":"445","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"446","messages":"447","suppressedMessages":"448","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"449","messages":"450","suppressedMessages":"451","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"452","messages":"453","suppressedMessages":"454","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"455","messages":"456","suppressedMessages":"457","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"458","messages":"459","suppressedMessages":"460","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"461","messages":"462","suppressedMessages":"463","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"464","messages":"465","suppressedMessages":"466","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"467","messages":"468","suppressedMessages":"469","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"470","messages":"471","suppressedMessages":"472","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"473","messages":"474","suppressedMessages":"475","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"476","messages":"477","suppressedMessages":"478","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"479","messages":"480","suppressedMessages":"481","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"482","messages":"483","suppressedMessages":"484","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"485","messages":"486","suppressedMessages":"487","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"488","messages":"489","suppressedMessages":"490","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"491","messages":"492","suppressedMessages":"493","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"494","messages":"495","suppressedMessages":"496","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"1ahltp2",{"filePath":"497","messages":"498","suppressedMessages":"499","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"500","messages":"501","suppressedMessages":"502","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"503","messages":"504","suppressedMessages":"505","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/landing/cta.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/landing/features.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/landing/hero.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/landing/index.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/landing/tech-stack.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/auth/buttons/gibs-auth.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/auth/buttons/index.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/auth/profile/avatar-upload.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/auth/profile/header.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/auth/profile/index.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/auth/profile/reset-password.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/auth/profile/sign-out.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/auth/profile/user-info.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/footer/index.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/header/controls/AvatarDropdown.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/header/controls/index.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/header/index.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/providers/ConvexClientProvider.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/providers/index.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/instrumentation-client.ts",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/instrumentation.ts",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/lib/metadata.ts",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/lib/proxy/ban-sus-ips.ts",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/proxy.ts",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/payload-types.ts",["506"],["507","508","509","510","511","512","513"],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(frontend)/(auth)/forgot-password/layout.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(frontend)/(auth)/forgot-password/page.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(frontend)/(auth)/profile/layout.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(frontend)/(auth)/profile/page.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(frontend)/(auth)/sign-in/layout.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(frontend)/(auth)/sign-in/page.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(frontend)/global-error.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(frontend)/layout.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(frontend)/page.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(payload)/admin/[[...segments]]/not-found.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(payload)/admin/[[...segments]]/page.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(payload)/admin/importMap.js",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(payload)/api/[...slug]/route.ts",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(payload)/api/graphql/route.ts",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(payload)/api/graphql-playground/route.ts",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(payload)/layout.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/landing/content.ts",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/landing/faq.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/landing/logo-cloud.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/landing/page-builder.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/landing/pricing.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/landing/stats.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/landing/testimonials.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/header/navigation.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/payload/refresh-route-on-save.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/lib/payload/get-landing-page-content.ts",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/lib/payload/get-payload.ts",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/payload/collections/users.ts",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/payload/globals/landing-page-blocks.ts",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/payload/globals/landing-page.ts",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/payload-generated-schema.ts",[],["514","515","516","517","518","519","520","521","522","523","524","525","526","527","528","529","530","531","532","533","534","535","536","537","538","539","540","541","542","543"],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(payload)/admin/layout.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/src/css.d.ts",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/tests/component/render.test.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/tests/integration/smoke.test.ts",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/tests/jest-dom.d.ts",[],[],"/home/gib/Documents/Code/convex-monorepo/apps/next/tests/unit/environment.test.ts",[],[],"/home/gib/Documents/Code/Spoon/apps/next/src/app/(auth)/forgot-password/layout.tsx",[],[],"/home/gib/Documents/Code/Spoon/apps/next/src/app/(auth)/forgot-password/page.tsx",[],[],"/home/gib/Documents/Code/Spoon/apps/next/src/app/(auth)/profile/layout.tsx",[],[],"/home/gib/Documents/Code/Spoon/apps/next/src/app/(auth)/profile/page.tsx",[],[],"/home/gib/Documents/Code/Spoon/apps/next/src/app/(auth)/sign-in/layout.tsx",[],[],"/home/gib/Documents/Code/Spoon/apps/next/src/app/(auth)/sign-in/page.tsx",[],[],"/home/gib/Documents/Code/Spoon/apps/next/src/app/global-error.tsx",[],[],"/home/gib/Documents/Code/Spoon/apps/next/src/app/layout.tsx",[],[],"/home/gib/Documents/Code/Spoon/apps/next/src/app/page.tsx",[],[],"/home/gib/Documents/Code/Spoon/apps/next/src/components/landing/cta.tsx",[],[],"/home/gib/Documents/Code/Spoon/apps/next/src/components/landing/features.tsx",[],[],"/home/gib/Documents/Code/Spoon/apps/next/src/components/landing/hero.tsx",[],[],"/home/gib/Documents/Code/Spoon/apps/next/src/components/landing/index.tsx",[],[],"/home/gib/Documents/Code/Spoon/apps/next/src/components/landing/tech-stack.tsx",[],[],"/home/gib/Documents/Code/Spoon/apps/next/src/components/layout/auth/buttons/gibs-auth.tsx",[],[],"/home/gib/Documents/Code/Spoon/apps/next/src/components/layout/auth/buttons/index.tsx",[],[],"/home/gib/Documents/Code/Spoon/apps/next/src/components/layout/auth/profile/avatar-upload.tsx",[],[],"/home/gib/Documents/Code/Spoon/apps/next/src/components/layout/auth/profile/header.tsx",[],[],"/home/gib/Documents/Code/Spoon/apps/next/src/components/layout/auth/profile/index.tsx",[],[],"/home/gib/Documents/Code/Spoon/apps/next/src/components/layout/auth/profile/reset-password.tsx",[],[],"/home/gib/Documents/Code/Spoon/apps/next/src/components/layout/auth/profile/sign-out.tsx",[],[],"/home/gib/Documents/Code/Spoon/apps/next/src/components/layout/auth/profile/user-info.tsx",[],[],"/home/gib/Documents/Code/Spoon/apps/next/src/components/layout/footer/index.tsx",[],[],"/home/gib/Documents/Code/Spoon/apps/next/src/components/layout/header/controls/AvatarDropdown.tsx",[],[],"/home/gib/Documents/Code/Spoon/apps/next/src/components/layout/header/controls/index.tsx",[],[],"/home/gib/Documents/Code/Spoon/apps/next/src/components/layout/header/index.tsx",[],[],"/home/gib/Documents/Code/Spoon/apps/next/src/components/layout/header/navigation.tsx",[],[],"/home/gib/Documents/Code/Spoon/apps/next/src/components/providers/ConvexClientProvider.tsx",[],[],"/home/gib/Documents/Code/Spoon/apps/next/src/components/providers/index.tsx",[],[],"/home/gib/Documents/Code/Spoon/apps/next/src/instrumentation-client.ts",[],[],"/home/gib/Documents/Code/Spoon/apps/next/src/instrumentation.ts",[],[],"/home/gib/Documents/Code/Spoon/apps/next/src/lib/metadata.ts",[],[],"/home/gib/Documents/Code/Spoon/apps/next/src/lib/proxy/ban-sus-ips.ts",[],[],"/home/gib/Documents/Code/Spoon/apps/next/src/proxy.ts",[],[],"/home/gib/Documents/Code/Spoon/apps/next/tests/component/render.test.tsx",[],[],"/home/gib/Documents/Code/Spoon/apps/next/tests/integration/smoke.test.ts",[],[],"/home/gib/Documents/Code/Spoon/apps/next/tests/jest-dom.d.ts",[],[],"/home/gib/Documents/Code/Spoon/apps/next/tests/unit/environment.test.ts",[],[],{"ruleId":"544","severity":2,"message":"545","line":1,"column":1,"messageId":"546","endLine":1,"endColumn":21,"fix":"547"},{"ruleId":"548","severity":2,"message":"549","line":68,"column":11,"messageId":"550","endLine":68,"endColumn":13,"suggestions":"551","suppressions":"552"},{"ruleId":"548","severity":2,"message":"549","line":76,"column":21,"messageId":"550","endLine":76,"endColumn":23,"suggestions":"553","suppressions":"554"},{"ruleId":"555","severity":2,"message":"556","line":161,"column":7,"messageId":"557","endLine":163,"endColumn":8,"fix":"558","suppressions":"559"},{"ruleId":"555","severity":2,"message":"556","line":200,"column":7,"messageId":"557","endLine":202,"endColumn":8,"fix":"560","suppressions":"561"},{"ruleId":"555","severity":2,"message":"556","line":629,"column":10,"messageId":"557","endLine":631,"endColumn":4,"fix":"562","suppressions":"563"},{"ruleId":"555","severity":2,"message":"556","line":638,"column":8,"messageId":"557","endLine":640,"endColumn":2,"fix":"564","suppressions":"565"},{"ruleId":"548","severity":2,"message":"566","line":643,"column":20,"messageId":"567","endLine":643,"endColumn":34,"suggestions":"568","suppressions":"569"},{"ruleId":"570","severity":1,"message":"571","line":10,"column":21,"messageId":"572","endLine":10,"endColumn":24,"suggestions":"573","suppressions":"574"},{"ruleId":"575","severity":2,"message":"576","line":193,"column":25,"messageId":"577","endLine":193,"endColumn":36,"fix":"578","suppressions":"579"},{"ruleId":"575","severity":2,"message":"580","line":293,"column":25,"messageId":"577","endLine":293,"endColumn":33,"fix":"581","suppressions":"582"},{"ruleId":"575","severity":2,"message":"583","line":298,"column":25,"messageId":"577","endLine":298,"endColumn":34,"fix":"584","suppressions":"585"},{"ruleId":"575","severity":2,"message":"580","line":348,"column":25,"messageId":"577","endLine":348,"endColumn":33,"fix":"586","suppressions":"587"},{"ruleId":"575","severity":2,"message":"583","line":353,"column":25,"messageId":"577","endLine":353,"endColumn":34,"fix":"588","suppressions":"589"},{"ruleId":"575","severity":2,"message":"576","line":401,"column":25,"messageId":"577","endLine":401,"endColumn":36,"fix":"590","suppressions":"591"},{"ruleId":"575","severity":2,"message":"576","line":423,"column":25,"messageId":"577","endLine":423,"endColumn":36,"fix":"592","suppressions":"593"},{"ruleId":"575","severity":2,"message":"576","line":485,"column":25,"messageId":"577","endLine":485,"endColumn":36,"fix":"594","suppressions":"595"},{"ruleId":"575","severity":2,"message":"576","line":508,"column":25,"messageId":"577","endLine":508,"endColumn":36,"fix":"596","suppressions":"597"},{"ruleId":"575","severity":2,"message":"576","line":547,"column":25,"messageId":"577","endLine":547,"endColumn":36,"fix":"598","suppressions":"599"},{"ruleId":"575","severity":2,"message":"576","line":570,"column":25,"messageId":"577","endLine":570,"endColumn":36,"fix":"600","suppressions":"601"},{"ruleId":"575","severity":2,"message":"576","line":612,"column":25,"messageId":"577","endLine":612,"endColumn":36,"fix":"602","suppressions":"603"},{"ruleId":"575","severity":2,"message":"576","line":636,"column":25,"messageId":"577","endLine":636,"endColumn":36,"fix":"604","suppressions":"605"},{"ruleId":"575","severity":2,"message":"576","line":659,"column":25,"messageId":"577","endLine":659,"endColumn":36,"fix":"606","suppressions":"607"},{"ruleId":"575","severity":2,"message":"576","line":702,"column":25,"messageId":"577","endLine":702,"endColumn":36,"fix":"608","suppressions":"609"},{"ruleId":"575","severity":2,"message":"576","line":725,"column":25,"messageId":"577","endLine":725,"endColumn":36,"fix":"610","suppressions":"611"},{"ruleId":"575","severity":2,"message":"576","line":782,"column":25,"messageId":"577","endLine":782,"endColumn":36,"fix":"612","suppressions":"613"},{"ruleId":"575","severity":2,"message":"576","line":825,"column":25,"messageId":"577","endLine":825,"endColumn":36,"fix":"614","suppressions":"615"},{"ruleId":"575","severity":2,"message":"576","line":850,"column":25,"messageId":"577","endLine":850,"endColumn":36,"fix":"616","suppressions":"617"},{"ruleId":"575","severity":2,"message":"576","line":913,"column":25,"messageId":"577","endLine":913,"endColumn":36,"fix":"618","suppressions":"619"},{"ruleId":"575","severity":2,"message":"576","line":937,"column":25,"messageId":"577","endLine":937,"endColumn":36,"fix":"620","suppressions":"621"},{"ruleId":"575","severity":2,"message":"576","line":977,"column":25,"messageId":"577","endLine":977,"endColumn":36,"fix":"622","suppressions":"623"},{"ruleId":"575","severity":2,"message":"576","line":1001,"column":25,"messageId":"577","endLine":1001,"endColumn":36,"fix":"624","suppressions":"625"},{"ruleId":"575","severity":2,"message":"576","line":1047,"column":25,"messageId":"577","endLine":1047,"endColumn":36,"fix":"626","suppressions":"627"},{"ruleId":"575","severity":2,"message":"576","line":1073,"column":27,"messageId":"577","endLine":1073,"endColumn":38,"fix":"628","suppressions":"629"},{"ruleId":"575","severity":2,"message":"576","line":1097,"column":25,"messageId":"577","endLine":1097,"endColumn":36,"fix":"630","suppressions":"631"},{"ruleId":"575","severity":2,"message":"576","line":1143,"column":25,"messageId":"577","endLine":1143,"endColumn":36,"fix":"632","suppressions":"633"},{"ruleId":"575","severity":2,"message":"576","line":1167,"column":25,"messageId":"577","endLine":1167,"endColumn":36,"fix":"634","suppressions":"635"},{"ruleId":"575","severity":2,"message":"576","line":1225,"column":25,"messageId":"577","endLine":1225,"endColumn":36,"fix":"636","suppressions":"637"},"@typescript-eslint/ban-tslint-comment","tslint comment detected: \"/* tslint:disable */\"","commentDetected",{"range":"638","text":"639"},"@typescript-eslint/no-empty-object-type","The `{}` (\"empty object\") type allows any non-nullish value, including literals like `0` and `\"\"`.\n- If that's what you want, disable this lint rule with an inline comment or configure the 'allowObjectTypes' rule option.\n- If you want a type meaning \"any object\", you probably want `object` instead.\n- If you want a type meaning \"any value\", you probably want `unknown` instead.","noEmptyObject",["640","641"],["642"],["643","644"],["645"],"@typescript-eslint/consistent-indexed-object-style","A record is preferred over an index signature.","preferRecord",{"range":"646","text":"647"},["648"],{"range":"649","text":"647"},["650"],{"range":"651","text":"647"},["652"],{"range":"653","text":"654"},["655"],"An interface declaring no members is equivalent to its supertype.","noEmptyInterfaceWithSuper",["656"],["657"],"@typescript-eslint/no-unused-vars","'sql' is defined but never used. Allowed unused vars must match /^_/u.","unusedVar",["658"],["659"],"@typescript-eslint/dot-notation","[\"_parentID\"] is better written in dot notation.","useDot",{"range":"660","text":"661"},["662"],"[\"parent\"] is better written in dot notation.",{"range":"663","text":"664"},["665"],"[\"usersID\"] is better written in dot notation.",{"range":"666","text":"667"},["668"],{"range":"669","text":"664"},["670"],{"range":"671","text":"667"},["672"],{"range":"673","text":"661"},["674"],{"range":"675","text":"661"},["676"],{"range":"677","text":"661"},["678"],{"range":"679","text":"661"},["680"],{"range":"681","text":"661"},["682"],{"range":"683","text":"661"},["684"],{"range":"685","text":"661"},["686"],{"range":"687","text":"661"},["688"],{"range":"689","text":"661"},["690"],{"range":"691","text":"661"},["692"],{"range":"693","text":"661"},["694"],{"range":"695","text":"661"},["696"],{"range":"697","text":"661"},["698"],{"range":"699","text":"661"},["700"],{"range":"701","text":"661"},["702"],{"range":"703","text":"661"},["704"],{"range":"705","text":"661"},["706"],{"range":"707","text":"661"},["708"],{"range":"709","text":"661"},["710"],{"range":"711","text":"661"},["712"],{"range":"713","text":"661"},["714"],{"range":"715","text":"661"},["716"],{"range":"717","text":"661"},["718"],{"range":"719","text":"661"},["720"],[0,21],"",{"messageId":"721","data":"722","fix":"723","desc":"724"},{"messageId":"721","data":"725","fix":"726","desc":"727"},{"kind":"728","justification":"639"},{"messageId":"721","data":"729","fix":"730","desc":"724"},{"messageId":"721","data":"731","fix":"732","desc":"727"},{"kind":"728","justification":"639"},[3612,3651],"Record",{"kind":"728","justification":"639"},[4384,4423],{"kind":"728","justification":"639"},[15618,15649],{"kind":"728","justification":"639"},[15776,15818],"type Auth = Record;",{"kind":"728","justification":"639"},{"messageId":"733","fix":"734","desc":"735"},{"kind":"728","justification":"639"},{"messageId":"736","data":"737","fix":"738","desc":"739"},{"kind":"728","justification":"639"},[6827,6840],"._parentID",{"kind":"728","justification":"639"},[9625,9635],".parent",{"kind":"728","justification":"639"},[9814,9825],".usersID",{"kind":"728","justification":"639"},[11249,11259],{"kind":"728","justification":"639"},[11428,11439],{"kind":"728","justification":"639"},[12722,12735],{"kind":"728","justification":"639"},[13428,13441],{"kind":"728","justification":"639"},[15968,15981],{"kind":"728","justification":"639"},[16668,16681],{"kind":"728","justification":"639"},[18086,18099],{"kind":"728","justification":"639"},[18797,18810],{"kind":"728","justification":"639"},[20485,20498],{"kind":"728","justification":"639"},[21263,21276],{"kind":"728","justification":"639"},[22011,22024],{"kind":"728","justification":"639"},[23697,23710],{"kind":"728","justification":"639"},[24386,24399],{"kind":"728","justification":"639"},[26729,26742],{"kind":"728","justification":"639"},[27903,27916],{"kind":"728","justification":"639"},[28668,28681],{"kind":"728","justification":"639"},[31266,31279],{"kind":"728","justification":"639"},[32012,32025],{"kind":"728","justification":"639"},[33488,33501],{"kind":"728","justification":"639"},[34245,34258],{"kind":"728","justification":"639"},[36017,36030],{"kind":"728","justification":"639"},[36879,36892],{"kind":"728","justification":"639"},[37683,37696],{"kind":"728","justification":"639"},[39443,39456],{"kind":"728","justification":"639"},[40178,40191],{"kind":"728","justification":"639"},[42579,42592],{"kind":"728","justification":"639"},"replaceEmptyObjectType",{"replacement":"740"},{"range":"741","text":"740"},"Replace `{}` with `object`.",{"replacement":"742"},{"range":"743","text":"742"},"Replace `{}` with `unknown`.","directive",{"replacement":"740"},{"range":"744","text":"740"},{"replacement":"742"},{"range":"745","text":"742"},"replaceEmptyInterfaceWithSuper",{"range":"746","text":"747"},"Replace empty interface with a type alias.","removeUnusedVar",{"varName":"748"},{"range":"749","text":"639"},"Remove unused variable \"sql\".","object",[1506,1508],"unknown",[1506,1508],[1743,1745],[1743,1745],[15856,15898],"type GeneratedTypes = Config","sql",[290,295]]
\ No newline at end of file
diff --git a/apps/next/.cache/.prettiercache b/apps/next/.cache/.prettiercache
index c137463..30b849c 100644
--- a/apps/next/.cache/.prettiercache
+++ b/apps/next/.cache/.prettiercache
@@ -1 +1 @@
-[["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56"],{"key":"57","value":"58"},{"key":"59","value":"60"},{"key":"61","value":"62"},{"key":"63","value":"64"},{"key":"65","value":"66"},{"key":"67","value":"68"},{"key":"69","value":"70"},{"key":"71","value":"72"},{"key":"73","value":"74"},{"key":"75","value":"76"},{"key":"77","value":"78"},{"key":"79","value":"80"},{"key":"81","value":"82"},{"key":"83","value":"84"},{"key":"85","value":"86"},{"key":"87","value":"88"},{"key":"89","value":"90"},{"key":"91","value":"92"},{"key":"93","value":"94"},{"key":"95","value":"96"},{"key":"97","value":"98"},{"key":"99","value":"100"},{"key":"101","value":"102"},{"key":"103","value":"104"},{"key":"105","value":"106"},{"key":"107","value":"108"},{"key":"109","value":"110"},{"key":"111","value":"112"},{"key":"113","value":"114"},{"key":"115","value":"116"},{"key":"117","value":"118"},{"key":"119","value":"120"},{"key":"121","value":"122"},{"key":"123","value":"124"},{"key":"125","value":"126"},{"key":"127","value":"128"},{"key":"129","value":"130"},{"key":"131","value":"132"},{"key":"133","value":"134"},{"key":"135","value":"136"},{"key":"137","value":"138"},{"key":"139","value":"140"},{"key":"141","value":"142"},{"key":"143","value":"144"},{"key":"145","value":"146"},{"key":"147","value":"148"},{"key":"149","value":"150"},{"key":"151","value":"152"},{"key":"153","value":"154"},{"key":"155","value":"156"},{"key":"157","value":"158"},{"key":"159","value":"160"},{"key":"161","value":"162"},{"key":"163","value":"164"},{"key":"165","value":"166"},{"key":"167","value":"168"},"/home/gib/Documents/Code/convex-monorepo/apps/next/public/misc/convex/convex-symbol-black.svg",{"size":948,"mtime":1717458243000,"hash":"169"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/header/controls/index.tsx",{"size":499,"mtime":1768372347633,"hash":"170","data":"171"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/auth/buttons/gibs-auth.tsx",{"size":1081,"mtime":1768372347496,"hash":"172","data":"173"},"/home/gib/Documents/Code/convex-monorepo/apps/next/public/misc/convex/convex-wordmark-black.svg",{"size":3110,"mtime":1717458243000,"hash":"174"},"/home/gib/Documents/Code/convex-monorepo/apps/next/public/misc/gitea/gitea.svg",{"size":1844,"mtime":1747415494000,"hash":"175"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/sentry.server.config.ts",{"size":184,"mtime":1774544487955,"hash":"176","data":"177"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/auth/profile/reset-password.tsx",{"size":5681,"mtime":1768372347569,"hash":"178","data":"179"},"/home/gib/Documents/Code/convex-monorepo/apps/next/public/misc/convex/convex-symbol-color.svg",{"size":948,"mtime":1717458243000,"hash":"180"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/instrumentation-client.ts",{"size":982,"mtime":1774544487814,"hash":"181","data":"182"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/landing/tech-stack.tsx",{"size":2697,"mtime":1774544487253,"hash":"183","data":"184"},"/home/gib/Documents/Code/convex-monorepo/apps/next/public/favicon-light.png",{"size":14406,"mtime":1717458300000,"hash":"185"},"/home/gib/Documents/Code/convex-monorepo/apps/next/.cache/tsbuildinfo.json",{"size":679713,"mtime":1774546246715,"hash":"186","data":"187"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/global-error.tsx",{"size":2410,"mtime":1774544486967,"hash":"188","data":"189"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/footer/index.tsx",{"size":4010,"mtime":1768372347611,"hash":"190","data":"191"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/header/controls/AvatarDropdown.tsx",{"size":2539,"mtime":1768372347626,"hash":"192","data":"193"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/landing/cta.tsx",{"size":1139,"mtime":1774544487103,"hash":"194","data":"195"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/auth/profile/sign-out.tsx",{"size":1234,"mtime":1768372347581,"hash":"196","data":"197"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/landing/index.tsx",{"size":141,"mtime":1768325738000,"hash":"198","data":"199"},"/home/gib/Documents/Code/convex-monorepo/apps/next/public/misc/convex/convex-symbol-white.svg",{"size":942,"mtime":1717458243000,"hash":"200"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/auth/buttons/index.tsx",{"size":52,"mtime":1768188510036,"hash":"201","data":"202"},"/home/gib/Documents/Code/convex-monorepo/apps/next/postcss.config.js",{"size":63,"mtime":1766225879000,"hash":"203","data":"204"},"/home/gib/Documents/Code/convex-monorepo/apps/next/public/misc/convex/convex-wordmark-white.svg",{"size":3096,"mtime":1717458243000,"hash":"205"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/proxy.ts",{"size":1109,"mtime":1768330175000,"hash":"206","data":"207"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/providers/index.tsx",{"size":63,"mtime":1768171856108,"hash":"208","data":"209"},"/home/gib/Documents/Code/convex-monorepo/apps/next/next.config.js",{"size":2019,"mtime":1774544486096,"hash":"210","data":"211"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/auth/profile/user-info.tsx",{"size":4786,"mtime":1774544487590,"hash":"212","data":"213"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/auth/profile/index.tsx",{"size":230,"mtime":1768238412936,"hash":"214","data":"215"},"/home/gib/Documents/Code/convex-monorepo/apps/next/public/misc/auth/gibs-auth-logo.png",{"size":865044,"mtime":1744295935000,"hash":"216"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/auth/profile/header.tsx",{"size":384,"mtime":1774544487414,"hash":"217","data":"218"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/instrumentation.ts",{"size":283,"mtime":1768341407000,"hash":"219","data":"220"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/page.tsx",{"size":253,"mtime":1768372347406,"hash":"221","data":"222"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/layout.tsx",{"size":2042,"mtime":1774131581680,"hash":"223","data":"224"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/styles.css",{"size":595,"mtime":1768186094852,"hash":"225","data":"226"},"/home/gib/Documents/Code/convex-monorepo/apps/next/.cache/.eslintcache",{"size":14397,"mtime":1774544649433},"/home/gib/Documents/Code/convex-monorepo/apps/next/.cache/.prettiercache",{"size":13269,"mtime":1774544664023},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(auth)/forgot-password/page.tsx",{"size":10607,"mtime":1768372347281,"hash":"227","data":"228"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/landing/hero.tsx",{"size":4045,"mtime":1774544487187,"hash":"229","data":"230"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/providers/ConvexClientProvider.tsx",{"size":444,"mtime":1774544487759,"hash":"231","data":"232"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/lib/metadata.ts",{"size":3088,"mtime":1768334221000,"hash":"233","data":"234"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(auth)/profile/page.tsx",{"size":1485,"mtime":1774545906773,"hash":"235","data":"236"},"/home/gib/Documents/Code/convex-monorepo/apps/next/public/misc/convex/convex-logo-black.svg",{"size":3942,"mtime":1717458243000,"hash":"237"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(auth)/profile/layout.tsx",{"size":276,"mtime":1768236979857,"hash":"238","data":"239"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(auth)/forgot-password/layout.tsx",{"size":298,"mtime":1768236967188,"hash":"240","data":"241"},"/home/gib/Documents/Code/convex-monorepo/apps/next/package.json",{"size":1529,"mtime":1774182527959,"hash":"242","data":"243"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/landing/features.tsx",{"size":2916,"mtime":1774544487137,"hash":"244","data":"245"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/lib/proxy/ban-sus-ips.ts",{"size":4894,"mtime":1768226323845,"hash":"246","data":"247"},"/home/gib/Documents/Code/convex-monorepo/apps/next/tsconfig.json",{"size":320,"mtime":1774545871737,"hash":"248","data":"249"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/env.ts",{"size":1660,"mtime":1774544487796,"data":"250"},"/home/gib/Documents/Code/convex-monorepo/apps/next/public/misc/convex/convex-logo-color.svg",{"size":3949,"mtime":1717458243000,"hash":"251"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/header/index.tsx",{"size":2470,"mtime":1774544487733,"hash":"252","data":"253"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(auth)/sign-in/page.tsx",{"size":16567,"mtime":1774544486885,"hash":"254","data":"255"},"/home/gib/Documents/Code/convex-monorepo/apps/next/public/favicon.png",{"size":17263,"mtime":1717458300000,"hash":"256"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/auth/profile/avatar-upload.tsx",{"size":6797,"mtime":1768372347532,"hash":"257","data":"258"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(auth)/sign-in/layout.tsx",{"size":274,"mtime":1768236849421,"hash":"259","data":"260"},"/home/gib/Documents/Code/convex-monorepo/apps/next/public/misc/convex/convex-logo-white.svg",{"size":3921,"mtime":1717458243000,"hash":"261"},"/home/gib/Documents/Code/convex-monorepo/apps/next/eslint.config.ts",{"size":369,"mtime":1768155639000,"hash":"262","data":"263"},"02cb8f3cce1e39794d3b82a38a983cb8","bb137459f322f5f7e81b97abc69d7641",{"hashOfOptions":"264"},"30044a3a91d3dd3ea30348b42d1aedc4",{"hashOfOptions":"265"},"564f328871391379d8cc17ced3082bcc","40fcde90e04dcb2e30e1c60dfcfb1f71","cbc523490bb047d4c6732da67bd661e3",{"hashOfOptions":"266"},"372c5a526af2dfe0c7ece98f64604af4",{"hashOfOptions":"267"},"ba997c77432ecaa8aba0ff9cac0001bb","d7955d8a7807479f20b06f7a4ba951b6",{"hashOfOptions":"268"},"ea265bd1924706480b7efc2df039fe71",{"hashOfOptions":"269"},"0866ffeaed5d4d665eaf33601b38962c","8fd01f3c8a6d983319200899f29f28e5",{"hashOfOptions":"270"},"b7599f9b9e8fffb885a2c14d950de582",{"hashOfOptions":"271"},"88f27e7faa7e9f5517f940dfd5df5899",{"hashOfOptions":"272"},"066c220e9e46cd0e6930825636e1c348",{"hashOfOptions":"273"},"1c96209c7fb1521aacdb77c20de084cc",{"hashOfOptions":"274"},"d8e43b516bddc01199409891c174bf6e",{"hashOfOptions":"275"},"4324ea06035bdd64caa311fd44d00ec5",{"hashOfOptions":"276"},"3e53c679b7596295cab8080632bd0aff","f030cda6238b76472047d1372aa19ebc",{"hashOfOptions":"277"},"d9fa362e836306677416d4e30dfb1528",{"hashOfOptions":"278"},"e4ea6990c6979b66bb28cf7f0860aff5","8a05ba7e3ee68fa4710884bdc8b28c60",{"hashOfOptions":"279"},"53c4570985ddffc2d83d6325d42bdc71",{"hashOfOptions":"280"},"613de2866c4439d2e5f7ffad956efed6",{"hashOfOptions":"281"},"609e71048768fcdcc63e8a49cc4f1c78",{"hashOfOptions":"282"},"34dec2764b76a2881b36ee552b80f532",{"hashOfOptions":"283"},"9fcbf360e8f2f12bd26530b187b73912","719d9af2930e31cfe9218f0e3a1a4dd5",{"hashOfOptions":"284"},"a2ecf9414957b82c6db34d402ad91b3e",{"hashOfOptions":"285"},"22a5c01ab59e5bb518a67b74c32db809",{"hashOfOptions":"286"},"f67394b7550b2b9722a969faa6b02a54",{"hashOfOptions":"287"},"dfff38be9a12d6e3dcf5756661542bdf",{"hashOfOptions":"288"},"9106a63e01a7eaa0ca570e206713566e",{"hashOfOptions":"289"},"d65dec578c4955dd3d5525da34a86875",{"hashOfOptions":"290"},"a11baac0b3f4295a9a850cc059cffcdc",{"hashOfOptions":"291"},"0ef98046290cc8ad8800d3dd9f0ecbf7",{"hashOfOptions":"292"},"d06a1f6b512e06c81d9766e32b30bf70",{"hashOfOptions":"293"},"a1b5d64f627bc733a9d23581d38b3850","f931981cf65d01e80e4daea7c602bd3e",{"hashOfOptions":"294"},"9f05c3eace62672b5bc6d3335eba9fd0",{"hashOfOptions":"295"},"62343aef61431d56eca0bb4c64c6bd4f",{"hashOfOptions":"296"},"c8875638622391bebca1cd817be42382",{"hashOfOptions":"297"},"5225199ffcca0402c852ffd8d19e2cee",{"hashOfOptions":"298"},"785dd21512a5bdf43635be77f6a483ae",{"hashOfOptions":"299"},{"hashOfOptions":"300"},"70b5fd90e75475dbb7eae1efc586b220","cdb2a69ae644d369ecc48f7898cc65ab",{"hashOfOptions":"301"},"0d981f9d2a2ef6fd934345b58b44f9c7",{"hashOfOptions":"302"},"9aa87bb545385e0fa9603bdaef53ae96","b20aa5a3ffff1e63005cd045e2ab3b10",{"hashOfOptions":"303"},"693d4b19ca786d9ba8633745187e61f4",{"hashOfOptions":"304"},"b7195c2cdf0fac103929901d0dfff8b8","a9eecac327a9c09dd26e82c515134edc",{"hashOfOptions":"305"},"2541644015","324101299","3229001348","2335984282","589786840","3791528482","574992436","1257393510","139612324","2459957767","487256857","3965691423","3492381563","371088643","3385488970","2150160910","2770064294","240759166","3741238729","954669387","2063167086","938028910","1621064343","3901785042","1815992980","3456517153","1234023339","3348843561","1842614761","725091901","2874252408","1092036700","2726470228","3754449294","2180624789","2103151637","2517595215","277690518","1534350321","826401678","3235532844","4005233490"]
\ No newline at end of file
+[["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63","64","65","66","67","68","69","70","71","72","73","74","75","76","77","78","79","80","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","110","111","112","113","114","115","116","117","118","119","120","121","122","123","124","125","126","127","128","129","130","131","132","133","134","135","136","137","138","139","140","141","142","143","144","145","146","147"],{"key":"148","value":"149"},{"key":"150","value":"151"},{"key":"152","value":"153"},{"key":"154","value":"155"},{"key":"156","value":"157"},{"key":"158","value":"159"},{"key":"160","value":"161"},{"key":"162","value":"163"},{"key":"164","value":"165"},{"key":"166","value":"167"},{"key":"168","value":"169"},{"key":"170","value":"171"},{"key":"172","value":"173"},{"key":"174","value":"175"},{"key":"176","value":"177"},{"key":"178","value":"179"},{"key":"180","value":"181"},{"key":"182","value":"183"},{"key":"184","value":"185"},{"key":"186","value":"187"},{"key":"188","value":"189"},{"key":"190","value":"191"},{"key":"192","value":"193"},{"key":"194","value":"195"},{"key":"196","value":"197"},{"key":"198","value":"199"},{"key":"200","value":"201"},{"key":"202","value":"203"},{"key":"204","value":"205"},{"key":"206","value":"207"},{"key":"208","value":"209"},{"key":"210","value":"211"},{"key":"212","value":"213"},{"key":"214","value":"215"},{"key":"216","value":"217"},{"key":"218","value":"219"},{"key":"220","value":"221"},{"key":"222","value":"223"},{"key":"224","value":"225"},{"key":"226","value":"227"},{"key":"228","value":"229"},{"key":"230","value":"231"},{"key":"232","value":"233"},{"key":"234","value":"235"},{"key":"236","value":"237"},{"key":"238","value":"239"},{"key":"240","value":"241"},{"key":"242","value":"243"},{"key":"244","value":"245"},{"key":"246","value":"247"},{"key":"248","value":"249"},{"key":"250","value":"251"},{"key":"252","value":"253"},{"key":"254","value":"255"},{"key":"256","value":"257"},{"key":"258","value":"259"},{"key":"260","value":"261"},{"key":"262","value":"263"},{"key":"264","value":"265"},{"key":"266","value":"267"},{"key":"268","value":"269"},{"key":"270","value":"271"},{"key":"272","value":"273"},{"key":"274","value":"275"},{"key":"276","value":"277"},{"key":"278","value":"279"},{"key":"280","value":"281"},{"key":"282","value":"283"},{"key":"284","value":"285"},{"key":"286","value":"287"},{"key":"288","value":"289"},{"key":"290","value":"291"},{"key":"292","value":"293"},{"key":"294","value":"295"},{"key":"296","value":"297"},{"key":"298","value":"299"},{"key":"300","value":"301"},{"key":"302","value":"303"},{"key":"304","value":"305"},{"key":"306","value":"307"},{"key":"308","value":"309"},{"key":"310","value":"311"},{"key":"312","value":"313"},{"key":"314","value":"315"},{"key":"316","value":"317"},{"key":"318","value":"319"},{"key":"320","value":"321"},{"key":"322","value":"323"},{"key":"324","value":"325"},{"key":"326","value":"327"},{"key":"328","value":"329"},{"key":"330","value":"331"},{"key":"332","value":"333"},{"key":"334","value":"335"},{"key":"336","value":"337"},{"key":"338","value":"339"},{"key":"340","value":"341"},{"key":"342","value":"343"},{"key":"344","value":"345"},{"key":"346","value":"347"},{"key":"348","value":"349"},{"key":"350","value":"351"},{"key":"352","value":"353"},{"key":"354","value":"355"},{"key":"356","value":"357"},{"key":"358","value":"359"},{"key":"360","value":"361"},{"key":"362","value":"363"},{"key":"364","value":"365"},{"key":"366","value":"367"},{"key":"368","value":"369"},{"key":"370","value":"371"},{"key":"372","value":"373"},{"key":"374","value":"375"},{"key":"376","value":"377"},{"key":"378","value":"379"},{"key":"380","value":"381"},{"key":"382","value":"383"},{"key":"384","value":"385"},{"key":"386","value":"387"},{"key":"388","value":"389"},{"key":"390","value":"391"},{"key":"392","value":"393"},{"key":"394","value":"395"},{"key":"396","value":"397"},{"key":"398","value":"399"},{"key":"400","value":"401"},{"key":"402","value":"403"},{"key":"404","value":"405"},{"key":"406","value":"407"},{"key":"408","value":"409"},{"key":"410","value":"411"},{"key":"412","value":"413"},{"key":"414","value":"415"},{"key":"416","value":"417"},{"key":"418","value":"419"},{"key":"420","value":"421"},{"key":"422","value":"423"},{"key":"424","value":"425"},{"key":"426","value":"427"},{"key":"428","value":"429"},{"key":"430","value":"431"},{"key":"432","value":"433"},{"key":"434","value":"435"},{"key":"436","value":"437"},{"key":"438","value":"439"},{"key":"440","value":"441"},"/home/gib/Documents/Code/convex-monorepo/apps/next/public/misc/convex/convex-symbol-black.svg",{"size":948,"mtime":1717458243000,"hash":"442"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/header/controls/index.tsx",{"size":499,"mtime":1768372347633,"hash":"443","data":"444"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/auth/buttons/gibs-auth.tsx",{"size":1081,"mtime":1768372347496,"hash":"445","data":"446"},"/home/gib/Documents/Code/convex-monorepo/apps/next/tests/unit/environment.test.ts",{"size":168,"mtime":1782065314896,"data":"447"},"/home/gib/Documents/Code/Spoon/apps/next/public/misc/convex/convex-symbol-black.svg",{"size":948,"mtime":1717458243000},"/home/gib/Documents/Code/Spoon/apps/next/src/components/layout/auth/buttons/gibs-auth.tsx",{"size":1081,"mtime":1768372347496,"data":"448"},"/home/gib/Documents/Code/Spoon/apps/next/src/components/layout/header/controls/index.tsx",{"size":499,"mtime":1768372347633,"data":"449"},"/home/gib/Documents/Code/Spoon/apps/next/tests/unit/environment.test.ts",{"size":168,"mtime":1782065314896,"data":"450"},"/home/gib/Documents/Code/convex-monorepo/apps/next/public/misc/convex/convex-wordmark-black.svg",{"size":3110,"mtime":1717458243000,"hash":"451"},"/home/gib/Documents/Code/convex-monorepo/apps/next/public/misc/gitea/gitea.svg",{"size":1844,"mtime":1747415494000,"hash":"452"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/sentry.server.config.ts",{"size":184,"mtime":1774546669448,"hash":"453","data":"454"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/auth/profile/reset-password.tsx",{"size":5681,"mtime":1768372347569,"hash":"455","data":"456"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(payload)/api/[...slug]/route.ts",{"size":561,"mtime":1774715746548,"data":"457"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/landing/logo-cloud.tsx",{"size":1142,"mtime":1774603139720,"data":"458"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/payload.config.ts",{"size":614,"mtime":1774716796806,"data":"459"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/payload/globals/landing-page-blocks.ts",{"size":8875,"mtime":1774603243829,"data":"460"},"/home/gib/Documents/Code/Spoon/apps/next/public/misc/convex/convex-wordmark-black.svg",{"size":3110,"mtime":1717458243000},"/home/gib/Documents/Code/Spoon/apps/next/public/misc/gitea/gitea.svg",{"size":1844,"mtime":1747415494000},"/home/gib/Documents/Code/Spoon/apps/next/src/components/layout/auth/profile/reset-password.tsx",{"size":5681,"mtime":1768372347569,"data":"461"},"/home/gib/Documents/Code/Spoon/apps/next/src/sentry.server.config.ts",{"size":184,"mtime":1774546669448,"data":"462"},"/home/gib/Documents/Code/convex-monorepo/apps/next/public/misc/convex/convex-symbol-color.svg",{"size":948,"mtime":1717458243000,"hash":"463"},"/home/gib/Documents/Code/Spoon/apps/next/public/misc/convex/convex-symbol-color.svg",{"size":948,"mtime":1717458243000},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/instrumentation-client.ts",{"size":982,"mtime":1774667904119,"hash":"464","data":"465"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/landing/tech-stack.tsx",{"size":1440,"mtime":1774601252818,"hash":"466","data":"467"},"/home/gib/Documents/Code/convex-monorepo/apps/next/public/favicon-light.png",{"size":14406,"mtime":1717458300000,"hash":"468"},"/home/gib/Documents/Code/convex-monorepo/apps/next/.cache/tsbuildinfo.json",{"size":1114529,"mtime":1782069432084,"hash":"469","data":"470"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/footer/index.tsx",{"size":4010,"mtime":1768372347611,"hash":"471","data":"472"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(frontend)/global-error.tsx",{"size":2421,"mtime":1774715746469,"data":"473"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(payload)/api/graphql/route.ts",{"size":319,"mtime":1774715746564,"data":"474"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(payload)/layout.tsx",{"size":836,"mtime":1774716067213,"data":"475"},"/home/gib/Documents/Code/convex-monorepo/apps/next/tests/jest-dom.d.ts",{"size":43,"mtime":1782064673517,"data":"476"},"/home/gib/Documents/Code/Spoon/apps/next/public/favicon-light.png",{"size":14406,"mtime":1717458300000},"/home/gib/Documents/Code/Spoon/apps/next/src/app/global-error.tsx",{"size":2410,"mtime":1782073225018,"data":"477"},"/home/gib/Documents/Code/Spoon/apps/next/src/components/landing/tech-stack.tsx",{"size":2636,"mtime":1782073225019,"data":"478"},"/home/gib/Documents/Code/Spoon/apps/next/src/components/layout/footer/index.tsx",{"size":4010,"mtime":1768372347611,"data":"479"},"/home/gib/Documents/Code/Spoon/apps/next/src/instrumentation-client.ts",{"size":982,"mtime":1774667904119,"data":"480"},"/home/gib/Documents/Code/Spoon/apps/next/tests/jest-dom.d.ts",{"size":43,"mtime":1782064673517,"data":"481"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/header/controls/AvatarDropdown.tsx",{"size":2539,"mtime":1768372347626,"hash":"482","data":"483"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/landing/cta.tsx",{"size":1050,"mtime":1774601252818,"hash":"484","data":"485"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/auth/profile/sign-out.tsx",{"size":1234,"mtime":1768372347581,"hash":"486","data":"487"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/landing/index.tsx",{"size":382,"mtime":1774603204578,"hash":"488","data":"489"},"/home/gib/Documents/Code/convex-monorepo/apps/next/public/misc/convex/convex-symbol-white.svg",{"size":942,"mtime":1717458243000,"hash":"490"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/auth/buttons/index.tsx",{"size":52,"mtime":1768188510036,"hash":"491","data":"492"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(payload)/admin/importMap.js",{"size":235,"mtime":1774718421271,"data":"493"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/landing/faq.tsx",{"size":1461,"mtime":1774603187133,"data":"494"},"/home/gib/Documents/Code/Spoon/apps/next/public/misc/convex/convex-symbol-white.svg",{"size":942,"mtime":1717458243000},"/home/gib/Documents/Code/Spoon/apps/next/src/components/landing/cta.tsx",{"size":1103,"mtime":1782073225019,"data":"495"},"/home/gib/Documents/Code/Spoon/apps/next/src/components/landing/index.tsx",{"size":141,"mtime":1782073225019,"data":"496"},"/home/gib/Documents/Code/Spoon/apps/next/src/components/layout/auth/buttons/index.tsx",{"size":52,"mtime":1768188510036,"data":"497"},"/home/gib/Documents/Code/Spoon/apps/next/src/components/layout/auth/profile/sign-out.tsx",{"size":1234,"mtime":1768372347581,"data":"498"},"/home/gib/Documents/Code/Spoon/apps/next/src/components/layout/header/controls/AvatarDropdown.tsx",{"size":2539,"mtime":1768372347626,"data":"499"},"/home/gib/Documents/Code/convex-monorepo/apps/next/postcss.config.js",{"size":63,"mtime":1766225879000,"hash":"500","data":"501"},"/home/gib/Documents/Code/convex-monorepo/apps/next/public/misc/convex/convex-wordmark-white.svg",{"size":3096,"mtime":1717458243000,"hash":"502"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/proxy.ts",{"size":1424,"mtime":1782064989615,"hash":"503","data":"504"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/providers/index.tsx",{"size":63,"mtime":1768171856108,"hash":"505","data":"506"},"/home/gib/Documents/Code/convex-monorepo/apps/next/next.config.js",{"size":2092,"mtime":1774715746215,"hash":"507","data":"508"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(payload)/api/graphql-playground/route.ts",{"size":311,"mtime":1774715746557,"data":"509"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/header/navigation.tsx",{"size":3100,"mtime":1774585109625,"data":"510"},"/home/gib/Documents/Code/Spoon/apps/next/next.config.js",{"size":2019,"mtime":1782073268176,"data":"511"},"/home/gib/Documents/Code/Spoon/apps/next/postcss.config.js",{"size":63,"mtime":1766225879000,"data":"512"},"/home/gib/Documents/Code/Spoon/apps/next/public/misc/convex/convex-wordmark-white.svg",{"size":3096,"mtime":1717458243000},"/home/gib/Documents/Code/Spoon/apps/next/src/components/layout/header/navigation.tsx",{"size":3100,"mtime":1774585109625,"data":"513"},"/home/gib/Documents/Code/Spoon/apps/next/src/components/providers/index.tsx",{"size":63,"mtime":1768171856108,"data":"514"},"/home/gib/Documents/Code/Spoon/apps/next/src/proxy.ts",{"size":1424,"mtime":1782073358681,"data":"515"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/auth/profile/user-info.tsx",{"size":4786,"mtime":1774546669448,"hash":"516","data":"517"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/auth/profile/index.tsx",{"size":230,"mtime":1768238412936,"hash":"518","data":"519"},"/home/gib/Documents/Code/convex-monorepo/apps/next/public/misc/auth/gibs-auth-logo.png",{"size":865044,"mtime":1744295935000,"hash":"520"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(payload)/admin/[[...segments]]/not-found.tsx",{"size":738,"mtime":1774716067213,"data":"521"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/payload/globals/landing-page.ts",{"size":1423,"mtime":1774718097053,"data":"522"},"/home/gib/Documents/Code/convex-monorepo/apps/next/tests/component/render.test.tsx",{"size":391,"mtime":1782064673517,"data":"523"},"/home/gib/Documents/Code/Spoon/apps/next/public/misc/auth/gibs-auth-logo.png",{"size":865044,"mtime":1744295935000},"/home/gib/Documents/Code/Spoon/apps/next/src/components/layout/auth/profile/index.tsx",{"size":230,"mtime":1768238412936,"data":"524"},"/home/gib/Documents/Code/Spoon/apps/next/src/components/layout/auth/profile/user-info.tsx",{"size":4786,"mtime":1774546669448,"data":"525"},"/home/gib/Documents/Code/Spoon/apps/next/tests/component/render.test.tsx",{"size":391,"mtime":1782064673517,"data":"526"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/auth/profile/header.tsx",{"size":384,"mtime":1774546669448,"hash":"527","data":"528"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/instrumentation.ts",{"size":283,"mtime":1768341407000,"hash":"529","data":"530"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/payload-generated-schema.ts",{"size":66451,"mtime":1774716067213,"data":"531"},"/home/gib/Documents/Code/Spoon/apps/next/src/components/layout/auth/profile/header.tsx",{"size":384,"mtime":1774546669448,"data":"532"},"/home/gib/Documents/Code/Spoon/apps/next/src/instrumentation.ts",{"size":283,"mtime":1768341407000,"data":"533"},"/home/gib/Documents/Code/convex-monorepo/apps/next/payload-types.ts",{"size":15880,"mtime":1782068646898,"data":"534"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(frontend)/page.tsx",{"size":1090,"mtime":1774718096093,"data":"535"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/landing/pricing.tsx",{"size":2723,"mtime":1774603177354,"data":"536"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/landing/testimonials.tsx",{"size":1602,"mtime":1774603161600,"data":"537"},"/home/gib/Documents/Code/Spoon/apps/next/src/app/page.tsx",{"size":236,"mtime":1782073225018,"data":"538"},"/home/gib/Documents/Code/convex-monorepo/apps/next/.cache/.eslintcache",{"size":37606,"mtime":1782065364722},"/home/gib/Documents/Code/convex-monorepo/apps/next/.cache/.prettiercache",{"size":19509,"mtime":1782065483740},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(frontend)/layout.tsx",{"size":2053,"mtime":1774715746483,"data":"539"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(frontend)/styles.css",{"size":679,"mtime":1774560750189,"data":"540"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(payload)/admin/[[...segments]]/page.tsx",{"size":722,"mtime":1774716067213,"data":"541"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/lib/payload/get-payload.ts",{"size":203,"mtime":1774558511405,"data":"542"},"/home/gib/Documents/Code/Spoon/apps/next/src/app/layout.tsx",{"size":2042,"mtime":1782073225018,"data":"543"},"/home/gib/Documents/Code/Spoon/apps/next/src/app/styles.css",{"size":679,"mtime":1774560750189,"data":"544"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/landing/hero.tsx",{"size":2634,"mtime":1774601252818,"hash":"545","data":"546"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/providers/ConvexClientProvider.tsx",{"size":444,"mtime":1774546669448,"hash":"547","data":"548"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/lib/metadata.ts",{"size":3088,"mtime":1768334221000,"hash":"549","data":"550"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(frontend)/(auth)/forgot-password/page.tsx",{"size":10607,"mtime":1768372347281,"data":"551"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(frontend)/(auth)/profile/page.tsx",{"size":1485,"mtime":1774546669447,"data":"552"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/payload/refresh-route-on-save.tsx",{"size":400,"mtime":1774560352092,"data":"553"},"/home/gib/Documents/Code/Spoon/apps/next/src/app/(auth)/forgot-password/page.tsx",{"size":10607,"mtime":1768372347281,"data":"554"},"/home/gib/Documents/Code/Spoon/apps/next/src/app/(auth)/profile/page.tsx",{"size":1485,"mtime":1774546669447,"data":"555"},"/home/gib/Documents/Code/Spoon/apps/next/src/components/landing/hero.tsx",{"size":2750,"mtime":1782073225019,"data":"556"},"/home/gib/Documents/Code/Spoon/apps/next/src/components/providers/ConvexClientProvider.tsx",{"size":444,"mtime":1774546669448,"data":"557"},"/home/gib/Documents/Code/Spoon/apps/next/src/lib/metadata.ts",{"size":3088,"mtime":1768334221000,"data":"558"},"/home/gib/Documents/Code/convex-monorepo/apps/next/public/misc/convex/convex-logo-black.svg",{"size":3942,"mtime":1717458243000,"hash":"559"},"/home/gib/Documents/Code/convex-monorepo/apps/next/package.json",{"size":2221,"mtime":1782069259142,"hash":"560","data":"561"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/landing/features.tsx",{"size":1314,"mtime":1774601252818,"hash":"562","data":"563"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(frontend)/(auth)/forgot-password/layout.tsx",{"size":298,"mtime":1768236967188,"data":"564"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/landing/stats.tsx",{"size":1348,"mtime":1774603150284,"data":"565"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(payload)/admin/layout.tsx",{"size":604,"mtime":1774731941393,"data":"566"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(frontend)/(auth)/profile/layout.tsx",{"size":595,"mtime":1782065482029,"data":"567"},"/home/gib/Documents/Code/Spoon/apps/next/package.json",{"size":2000,"mtime":1782073268174,"data":"568"},"/home/gib/Documents/Code/Spoon/apps/next/public/misc/convex/convex-logo-black.svg",{"size":3942,"mtime":1717458243000},"/home/gib/Documents/Code/Spoon/apps/next/src/app/(auth)/forgot-password/layout.tsx",{"size":298,"mtime":1768236967188,"data":"569"},"/home/gib/Documents/Code/Spoon/apps/next/src/app/(auth)/profile/layout.tsx",{"size":595,"mtime":1782065482029,"data":"570"},"/home/gib/Documents/Code/Spoon/apps/next/src/components/landing/features.tsx",{"size":2859,"mtime":1782073225019,"data":"571"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/lib/proxy/ban-sus-ips.ts",{"size":5854,"mtime":1774729404490,"hash":"572","data":"573"},"/home/gib/Documents/Code/convex-monorepo/apps/next/tsconfig.json",{"size":374,"mtime":1774555218729,"hash":"574","data":"575"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/env.ts",{"size":1820,"mtime":1774554829625,"data":"576"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/payload/collections/users.ts",{"size":180,"mtime":1774558467216,"data":"577"},"/home/gib/Documents/Code/Spoon/apps/next/src/env.ts",{"size":1660,"mtime":1782073268176,"data":"578"},"/home/gib/Documents/Code/Spoon/apps/next/src/lib/proxy/ban-sus-ips.ts",{"size":5854,"mtime":1774729404490,"data":"579"},"/home/gib/Documents/Code/Spoon/apps/next/tsconfig.json",{"size":320,"mtime":1782073268176,"data":"580"},"/home/gib/Documents/Code/convex-monorepo/apps/next/public/misc/convex/convex-logo-color.svg",{"size":3949,"mtime":1717458243000,"hash":"581"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/header/index.tsx",{"size":2532,"mtime":1774715746785,"hash":"582","data":"583"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(payload)/custom.scss",{"size":0,"mtime":1774556546402,"data":"584"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/landing/page-builder.tsx",{"size":1487,"mtime":1774603197165,"data":"585"},"/home/gib/Documents/Code/Spoon/apps/next/public/misc/convex/convex-logo-color.svg",{"size":3949,"mtime":1717458243000},"/home/gib/Documents/Code/Spoon/apps/next/src/components/layout/header/index.tsx",{"size":2532,"mtime":1774715746785,"data":"586"},"/home/gib/Documents/Code/convex-monorepo/apps/next/public/favicon.png",{"size":17263,"mtime":1717458300000,"hash":"587"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(frontend)/(auth)/sign-in/page.tsx",{"size":16576,"mtime":1774716785211,"data":"588"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/lib/payload/get-landing-page-content.ts",{"size":593,"mtime":1774716807812,"data":"589"},"/home/gib/Documents/Code/convex-monorepo/apps/next/tests/integration/smoke.test.ts",{"size":212,"mtime":1782064673516,"data":"590"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/css.d.ts",{"size":39,"mtime":1782065248680,"data":"591"},"/home/gib/Documents/Code/Spoon/apps/next/public/favicon.png",{"size":17263,"mtime":1717458300000},"/home/gib/Documents/Code/Spoon/apps/next/src/app/(auth)/sign-in/page.tsx",{"size":16576,"mtime":1774716785211,"data":"592"},"/home/gib/Documents/Code/Spoon/apps/next/tests/integration/smoke.test.ts",{"size":212,"mtime":1782064673516,"data":"593"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/layout/auth/profile/avatar-upload.tsx",{"size":6795,"mtime":1774715746758,"hash":"594","data":"595"},"/home/gib/Documents/Code/convex-monorepo/apps/next/public/misc/convex/convex-logo-white.svg",{"size":3921,"mtime":1717458243000,"hash":"596"},"/home/gib/Documents/Code/convex-monorepo/apps/next/eslint.config.ts",{"size":389,"mtime":1782065314896,"hash":"597","data":"598"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/app/(frontend)/(auth)/sign-in/layout.tsx",{"size":274,"mtime":1768236849421,"data":"599"},"/home/gib/Documents/Code/convex-monorepo/apps/next/src/components/landing/content.ts",{"size":28074,"mtime":1774603128339,"data":"600"},"/home/gib/Documents/Code/convex-monorepo/apps/next/vitest.config.ts",{"size":395,"mtime":1782064673515,"data":"601"},"/home/gib/Documents/Code/Spoon/apps/next/eslint.config.ts",{"size":369,"mtime":1782073268177,"data":"602"},"/home/gib/Documents/Code/Spoon/apps/next/public/misc/convex/convex-logo-white.svg",{"size":3921,"mtime":1717458243000},"/home/gib/Documents/Code/Spoon/apps/next/src/app/(auth)/sign-in/layout.tsx",{"size":274,"mtime":1768236849421,"data":"603"},"/home/gib/Documents/Code/Spoon/apps/next/src/components/layout/auth/profile/avatar-upload.tsx",{"size":6795,"mtime":1774715746758,"data":"604"},"/home/gib/Documents/Code/Spoon/apps/next/vitest.config.ts",{"size":395,"mtime":1782064673515,"data":"605"},"02cb8f3cce1e39794d3b82a38a983cb8","bb137459f322f5f7e81b97abc69d7641",{"hashOfOptions":"606"},"30044a3a91d3dd3ea30348b42d1aedc4",{"hashOfOptions":"607"},{"hashOfOptions":"608"},{"hashOfOptions":"609"},{"hashOfOptions":"610"},{"hashOfOptions":"611"},"564f328871391379d8cc17ced3082bcc","40fcde90e04dcb2e30e1c60dfcfb1f71","cbc523490bb047d4c6732da67bd661e3",{"hashOfOptions":"612"},"372c5a526af2dfe0c7ece98f64604af4",{"hashOfOptions":"613"},{"hashOfOptions":"614"},{"hashOfOptions":"615"},{"hashOfOptions":"616"},{"hashOfOptions":"617"},{"hashOfOptions":"618"},{"hashOfOptions":"619"},"ba997c77432ecaa8aba0ff9cac0001bb","d7955d8a7807479f20b06f7a4ba951b6",{"hashOfOptions":"620"},"ea265bd1924706480b7efc2df039fe71",{"hashOfOptions":"621"},"0866ffeaed5d4d665eaf33601b38962c","8fd01f3c8a6d983319200899f29f28e5",{"hashOfOptions":"622"},"88f27e7faa7e9f5517f940dfd5df5899",{"hashOfOptions":"623"},{"hashOfOptions":"624"},{"hashOfOptions":"625"},{"hashOfOptions":"626"},{"hashOfOptions":"627"},{"hashOfOptions":"628"},{"hashOfOptions":"629"},{"hashOfOptions":"630"},{"hashOfOptions":"631"},{"hashOfOptions":"632"},"066c220e9e46cd0e6930825636e1c348",{"hashOfOptions":"633"},"1c96209c7fb1521aacdb77c20de084cc",{"hashOfOptions":"634"},"d8e43b516bddc01199409891c174bf6e",{"hashOfOptions":"635"},"4324ea06035bdd64caa311fd44d00ec5",{"hashOfOptions":"636"},"3e53c679b7596295cab8080632bd0aff","f030cda6238b76472047d1372aa19ebc",{"hashOfOptions":"637"},{"hashOfOptions":"638"},{"hashOfOptions":"639"},{"hashOfOptions":"640"},{"hashOfOptions":"641"},{"hashOfOptions":"642"},{"hashOfOptions":"643"},{"hashOfOptions":"644"},"d9fa362e836306677416d4e30dfb1528",{"hashOfOptions":"645"},"e4ea6990c6979b66bb28cf7f0860aff5","8a05ba7e3ee68fa4710884bdc8b28c60",{"hashOfOptions":"646"},"53c4570985ddffc2d83d6325d42bdc71",{"hashOfOptions":"647"},"613de2866c4439d2e5f7ffad956efed6",{"hashOfOptions":"648"},{"hashOfOptions":"649"},{"hashOfOptions":"650"},{"hashOfOptions":"651"},{"hashOfOptions":"652"},{"hashOfOptions":"653"},{"hashOfOptions":"654"},{"hashOfOptions":"655"},"609e71048768fcdcc63e8a49cc4f1c78",{"hashOfOptions":"656"},"34dec2764b76a2881b36ee552b80f532",{"hashOfOptions":"657"},"9fcbf360e8f2f12bd26530b187b73912",{"hashOfOptions":"658"},{"hashOfOptions":"659"},{"hashOfOptions":"660"},{"hashOfOptions":"661"},{"hashOfOptions":"662"},{"hashOfOptions":"663"},"719d9af2930e31cfe9218f0e3a1a4dd5",{"hashOfOptions":"664"},"a2ecf9414957b82c6db34d402ad91b3e",{"hashOfOptions":"665"},{"hashOfOptions":"666"},{"hashOfOptions":"667"},{"hashOfOptions":"668"},{"hashOfOptions":"669"},{"hashOfOptions":"670"},{"hashOfOptions":"671"},{"hashOfOptions":"672"},{"hashOfOptions":"673"},{"hashOfOptions":"674"},{"hashOfOptions":"675"},{"hashOfOptions":"676"},{"hashOfOptions":"677"},{"hashOfOptions":"678"},{"hashOfOptions":"679"},"d65dec578c4955dd3d5525da34a86875",{"hashOfOptions":"680"},"a11baac0b3f4295a9a850cc059cffcdc",{"hashOfOptions":"681"},"0ef98046290cc8ad8800d3dd9f0ecbf7",{"hashOfOptions":"682"},{"hashOfOptions":"683"},{"hashOfOptions":"684"},{"hashOfOptions":"685"},{"hashOfOptions":"686"},{"hashOfOptions":"687"},{"hashOfOptions":"688"},{"hashOfOptions":"689"},{"hashOfOptions":"690"},"a1b5d64f627bc733a9d23581d38b3850","62343aef61431d56eca0bb4c64c6bd4f",{"hashOfOptions":"691"},"c8875638622391bebca1cd817be42382",{"hashOfOptions":"692"},{"hashOfOptions":"693"},{"hashOfOptions":"694"},{"hashOfOptions":"695"},{"hashOfOptions":"696"},{"hashOfOptions":"697"},{"hashOfOptions":"698"},{"hashOfOptions":"699"},{"hashOfOptions":"700"},"5225199ffcca0402c852ffd8d19e2cee",{"hashOfOptions":"701"},"785dd21512a5bdf43635be77f6a483ae",{"hashOfOptions":"702"},{"hashOfOptions":"703"},{"hashOfOptions":"704"},{"hashOfOptions":"705"},{"hashOfOptions":"706"},{"hashOfOptions":"707"},"70b5fd90e75475dbb7eae1efc586b220","cdb2a69ae644d369ecc48f7898cc65ab",{"hashOfOptions":"708"},{"hashOfOptions":"709"},{"hashOfOptions":"710"},{"hashOfOptions":"711"},"9aa87bb545385e0fa9603bdaef53ae96",{"hashOfOptions":"712"},{"hashOfOptions":"713"},{"hashOfOptions":"714"},{"hashOfOptions":"715"},{"hashOfOptions":"716"},{"hashOfOptions":"717"},"b20aa5a3ffff1e63005cd045e2ab3b10",{"hashOfOptions":"718"},"b7195c2cdf0fac103929901d0dfff8b8","a9eecac327a9c09dd26e82c515134edc",{"hashOfOptions":"719"},{"hashOfOptions":"720"},{"hashOfOptions":"721"},{"hashOfOptions":"722"},{"hashOfOptions":"723"},{"hashOfOptions":"724"},{"hashOfOptions":"725"},{"hashOfOptions":"726"},"2076589621","373612781","737065729","2218434391","2103985483","56505963","3908540874","3711031008","856343404","172041578","211013030","2023029384","3758742774","1087753952","3604422430","3814180456","574992436","27770334","641812406","3142001474","353006136","4030061118","345923594","1675830398","34202952","1136666932","366984020","997229121","93148243","3500637029","2015029173","2369409853","3915559651","2465227065","3707555773","1303334431","314096551","3528032891","51571883","1095252112","716218440","3207248608","2179857080","3276547392","3167348464","4268760610","2023933094","3893937158","2032045130","2103204018","3790750211","2952990597","1936481171","1826136259","606487003","897677295","1340604525","2751439089","3239380660","2927658152","711673066","60471498","2493862930","1515299153","1972835559","2062965929","204073323","620877115","4005557794","1919765732","3346654718","797230858","1042795638","3251970872","3806175473","4257275503","2701725999","1403319761","4119205869","3181065935","3604469885","1147228825","1656160263","3416570501","3333616197","1292527758","816660692","1461191180","3055662562","4585080","3830568488","2679513336","4289482424","1508014804","3306670570","1828425679","989811803","3803789193","1794364905","3863545075","1103142969","1269544561","165848528","162029550","778881812","172281146","633496993","257029141","3342593817","1717182109","1956487245","1192578607","1120331208","3880406924","4191848924","169549632","443212768","3005046262","1869295240","706607666","3862819402"]
\ No newline at end of file
diff --git a/apps/next/.cache/tsbuildinfo.json b/apps/next/.cache/tsbuildinfo.json
index be6a648..3a9ee3d 100644
--- a/apps/next/.cache/tsbuildinfo.json
+++ b/apps/next/.cache/tsbuildinfo.json
@@ -1,18303 +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.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.decorators.d.ts",
- "../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts",
- "../../../node_modules/@types/json-schema/index.d.ts",
- "../../../node_modules/@eslint/core/dist/cjs/types.d.cts",
- "../../../node_modules/@eslint/config-helpers/dist/cjs/types.cts",
- "../../../node_modules/@eslint/config-helpers/dist/cjs/index.d.cts",
- "../../../node_modules/eslint/lib/types/config-api.d.ts",
- "../../../node_modules/@eslint/compat/node_modules/@eslint/core/dist/esm/types.d.ts",
- "../../../node_modules/@eslint/compat/dist/esm/index.d.ts",
- "../../../node_modules/@types/estree/index.d.ts",
- "../../../node_modules/eslint/lib/types/use-at-your-own-risk.d.ts",
- "../../../node_modules/eslint/lib/types/index.d.ts",
- "../../../node_modules/@eslint/js/types/index.d.ts",
- "../../../node_modules/eslint-plugin-import/index.d.ts",
- "../../../node_modules/typescript/lib/typescript.d.ts",
- "../../../node_modules/@typescript-eslint/types/dist/generated/ast-spec.d.ts",
- "../../../node_modules/@typescript-eslint/types/dist/lib.d.ts",
- "../../../node_modules/@typescript-eslint/types/dist/parser-options.d.ts",
- "../../../node_modules/@typescript-eslint/types/dist/ts-estree.d.ts",
- "../../../node_modules/@typescript-eslint/types/dist/index.d.ts",
- "../../../node_modules/@typescript-eslint/typescript-estree/dist/clear-caches.d.ts",
- "../../../node_modules/@typescript-eslint/typescript-estree/dist/create-program/getScriptKind.d.ts",
- "../../../node_modules/typescript/lib/tsserverlibrary.d.ts",
- "../../../node_modules/@typescript-eslint/project-service/dist/createProjectService.d.ts",
- "../../../node_modules/@typescript-eslint/project-service/dist/index.d.ts",
- "../../../node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/ts-nodes.d.ts",
- "../../../node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/estree-to-ts-node-types.d.ts",
- "../../../node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/index.d.ts",
- "../../../node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/ExpiringCache.d.ts",
- "../../../node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/index.d.ts",
- "../../../node_modules/@typescript-eslint/typescript-estree/dist/create-program/shared.d.ts",
- "../../../node_modules/@typescript-eslint/typescript-estree/dist/create-program/useProvidedPrograms.d.ts",
- "../../../node_modules/@typescript-eslint/typescript-estree/dist/getModifiers.d.ts",
- "../../../node_modules/@typescript-eslint/typescript-estree/dist/node-utils.d.ts",
- "../../../node_modules/@typescript-eslint/typescript-estree/dist/parser-options.d.ts",
- "../../../node_modules/@typescript-eslint/typescript-estree/dist/parser.d.ts",
- "../../../node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/candidateTSConfigRootDirs.d.ts",
- "../../../node_modules/@typescript-eslint/visitor-keys/dist/get-keys.d.ts",
- "../../../node_modules/@typescript-eslint/visitor-keys/dist/visitor-keys.d.ts",
- "../../../node_modules/@typescript-eslint/visitor-keys/dist/index.d.ts",
- "../../../node_modules/@typescript-eslint/typescript-estree/dist/simple-traverse.d.ts",
- "../../../node_modules/@typescript-eslint/typescript-estree/dist/version-check.d.ts",
- "../../../node_modules/@typescript-eslint/typescript-estree/dist/version.d.ts",
- "../../../node_modules/@typescript-eslint/typescript-estree/dist/withoutProjectParserOptions.d.ts",
- "../../../node_modules/@typescript-eslint/typescript-estree/dist/index.d.ts",
- "../../../node_modules/@typescript-eslint/utils/dist/ts-estree.d.ts",
- "../../../node_modules/@typescript-eslint/utils/dist/ts-eslint/AST.d.ts",
- "../../../node_modules/@typescript-eslint/utils/dist/ts-eslint/ParserOptions.d.ts",
- "../../../node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionType.d.ts",
- "../../../node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionBase.d.ts",
- "../../../node_modules/@typescript-eslint/scope-manager/dist/definition/CatchClauseDefinition.d.ts",
- "../../../node_modules/@typescript-eslint/scope-manager/dist/definition/ClassNameDefinition.d.ts",
- "../../../node_modules/@typescript-eslint/scope-manager/dist/definition/FunctionNameDefinition.d.ts",
- "../../../node_modules/@typescript-eslint/scope-manager/dist/definition/ImplicitGlobalVariableDefinition.d.ts",
- "../../../node_modules/@typescript-eslint/scope-manager/dist/definition/ImportBindingDefinition.d.ts",
- "../../../node_modules/@typescript-eslint/scope-manager/dist/definition/ParameterDefinition.d.ts",
- "../../../node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumMemberDefinition.d.ts",
- "../../../node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumNameDefinition.d.ts",
- "../../../node_modules/@typescript-eslint/scope-manager/dist/definition/TSModuleNameDefinition.d.ts",
- "../../../node_modules/@typescript-eslint/scope-manager/dist/definition/TypeDefinition.d.ts",
- "../../../node_modules/@typescript-eslint/scope-manager/dist/definition/VariableDefinition.d.ts",
- "../../../node_modules/@typescript-eslint/scope-manager/dist/definition/Definition.d.ts",
- "../../../node_modules/@typescript-eslint/scope-manager/dist/definition/index.d.ts",
- "../../../node_modules/@typescript-eslint/scope-manager/dist/referencer/Reference.d.ts",
- "../../../node_modules/@typescript-eslint/scope-manager/dist/variable/VariableBase.d.ts",
- "../../../node_modules/@typescript-eslint/scope-manager/dist/variable/ESLintScopeVariable.d.ts",
- "../../../node_modules/@typescript-eslint/scope-manager/dist/variable/Variable.d.ts",
- "../../../node_modules/@typescript-eslint/scope-manager/dist/variable/ImplicitLibVariable.d.ts",
- "../../../node_modules/@typescript-eslint/scope-manager/dist/variable/index.d.ts",
- "../../../node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeType.d.ts",
- "../../../node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionScope.d.ts",
- "../../../node_modules/@typescript-eslint/scope-manager/dist/scope/GlobalScope.d.ts",
- "../../../node_modules/@typescript-eslint/scope-manager/dist/scope/ModuleScope.d.ts",
- "../../../node_modules/@typescript-eslint/scope-manager/dist/scope/TSModuleScope.d.ts",
- "../../../node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeBase.d.ts",
- "../../../node_modules/@typescript-eslint/scope-manager/dist/scope/CatchScope.d.ts",
- "../../../node_modules/@typescript-eslint/scope-manager/dist/scope/ClassScope.d.ts",
- "../../../node_modules/@typescript-eslint/scope-manager/dist/scope/ClassStaticBlockScope.d.ts",
- "../../../node_modules/@typescript-eslint/scope-manager/dist/scope/ConditionalTypeScope.d.ts",
- "../../../node_modules/@typescript-eslint/scope-manager/dist/scope/ForScope.d.ts",
- "../../../node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionExpressionNameScope.d.ts",
- "../../../node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionTypeScope.d.ts",
- "../../../node_modules/@typescript-eslint/scope-manager/dist/scope/MappedTypeScope.d.ts",
- "../../../node_modules/@typescript-eslint/scope-manager/dist/scope/SwitchScope.d.ts",
- "../../../node_modules/@typescript-eslint/scope-manager/dist/scope/TSEnumScope.d.ts",
- "../../../node_modules/@typescript-eslint/scope-manager/dist/scope/TypeScope.d.ts",
- "../../../node_modules/@typescript-eslint/scope-manager/dist/scope/WithScope.d.ts",
- "../../../node_modules/@typescript-eslint/scope-manager/dist/scope/Scope.d.ts",
- "../../../node_modules/@typescript-eslint/scope-manager/dist/scope/ClassFieldInitializerScope.d.ts",
- "../../../node_modules/@typescript-eslint/scope-manager/dist/ScopeManager.d.ts",
- "../../../node_modules/@typescript-eslint/scope-manager/dist/scope/BlockScope.d.ts",
- "../../../node_modules/@typescript-eslint/scope-manager/dist/scope/index.d.ts",
- "../../../node_modules/@typescript-eslint/scope-manager/dist/referencer/VisitorBase.d.ts",
- "../../../node_modules/@typescript-eslint/scope-manager/dist/referencer/PatternVisitor.d.ts",
- "../../../node_modules/@typescript-eslint/scope-manager/dist/referencer/Visitor.d.ts",
- "../../../node_modules/@typescript-eslint/scope-manager/dist/referencer/Referencer.d.ts",
- "../../../node_modules/@typescript-eslint/scope-manager/dist/referencer/index.d.ts",
- "../../../node_modules/@typescript-eslint/scope-manager/dist/analyze.d.ts",
- "../../../node_modules/@typescript-eslint/scope-manager/dist/index.d.ts",
- "../../../node_modules/@typescript-eslint/utils/dist/ts-eslint/Scope.d.ts",
- "../../../node_modules/@typescript-eslint/utils/dist/ts-eslint/Parser.d.ts",
- "../../../node_modules/@typescript-eslint/utils/dist/json-schema.d.ts",
- "../../../node_modules/@typescript-eslint/utils/dist/ts-eslint/SourceCode.d.ts",
- "../../../node_modules/@typescript-eslint/utils/dist/ts-eslint/Rule.d.ts",
- "../../../node_modules/@typescript-eslint/utils/dist/ts-eslint/Linter.d.ts",
- "../../../node_modules/@typescript-eslint/utils/dist/ts-eslint/Processor.d.ts",
- "../../../node_modules/@typescript-eslint/utils/dist/ts-eslint/Config.d.ts",
- "../../../node_modules/@typescript-eslint/utils/dist/ts-eslint/eslint/ESLintShared.d.ts",
- "../../../node_modules/@typescript-eslint/utils/dist/ts-eslint/eslint/FlatESLint.d.ts",
- "../../../node_modules/@typescript-eslint/utils/dist/ts-eslint/eslint/LegacyESLint.d.ts",
- "../../../node_modules/@typescript-eslint/utils/dist/ts-eslint/ESLint.d.ts",
- "../../../node_modules/@typescript-eslint/utils/dist/ts-eslint/RuleTester.d.ts",
- "../../../node_modules/@typescript-eslint/utils/dist/ts-eslint/index.d.ts",
- "../../../node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/astUtilities.d.ts",
- "../../../node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/PatternMatcher.d.ts",
- "../../../node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/predicates.d.ts",
- "../../../node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/ReferenceTracker.d.ts",
- "../../../node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/scopeAnalysis.d.ts",
- "../../../node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/index.d.ts",
- "../../../node_modules/@typescript-eslint/utils/dist/ast-utils/helpers.d.ts",
- "../../../node_modules/@typescript-eslint/utils/dist/ast-utils/misc.d.ts",
- "../../../node_modules/@typescript-eslint/utils/dist/ast-utils/predicates.d.ts",
- "../../../node_modules/@typescript-eslint/utils/dist/ast-utils/index.d.ts",
- "../../../node_modules/@typescript-eslint/utils/dist/eslint-utils/applyDefault.d.ts",
- "../../../node_modules/@typescript-eslint/utils/dist/eslint-utils/deepMerge.d.ts",
- "../../../node_modules/@typescript-eslint/utils/dist/eslint-utils/getParserServices.d.ts",
- "../../../node_modules/@typescript-eslint/utils/dist/eslint-utils/InferTypesFromRule.d.ts",
- "../../../node_modules/@typescript-eslint/utils/dist/eslint-utils/nullThrows.d.ts",
- "../../../node_modules/@typescript-eslint/utils/dist/eslint-utils/RuleCreator.d.ts",
- "../../../node_modules/@typescript-eslint/utils/dist/eslint-utils/index.d.ts",
- "../../../node_modules/@typescript-eslint/utils/dist/ts-utils/isArray.d.ts",
- "../../../node_modules/@typescript-eslint/utils/dist/ts-utils/NoInfer.d.ts",
- "../../../node_modules/@typescript-eslint/utils/dist/ts-utils/index.d.ts",
- "../../../node_modules/@typescript-eslint/utils/dist/index.d.ts",
- "../../../node_modules/eslint-plugin-prefer-arrow-functions/dist/index.d.ts",
- "../../../node_modules/eslint-plugin-turbo/dist/index.d.ts",
- "../../../node_modules/typescript-eslint/dist/compatibility-types.d.ts",
- "../../../node_modules/typescript-eslint/dist/config-helper.d.ts",
- "../../../node_modules/typescript-eslint/dist/index.d.ts",
- "../../../tools/eslint/base.ts",
- "../../../node_modules/@next/eslint-plugin-next/dist/index.d.ts",
- "../../../tools/eslint/nextjs.ts",
- "../../../node_modules/eslint-plugin-react/index.d.ts",
- "../../../node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.d.ts",
- "../../../node_modules/eslint-plugin-react-hooks/index.d.ts",
- "../../../tools/eslint/react.ts",
- "../eslint.config.ts",
- "../../../node_modules/@types/react/global.d.ts",
- "../../../node_modules/csstype/index.d.ts",
- "../../../node_modules/@types/react/index.d.ts",
- "../../../node_modules/next/dist/styled-jsx/types/css.d.ts",
- "../../../node_modules/next/dist/styled-jsx/types/macro.d.ts",
- "../../../node_modules/next/dist/styled-jsx/types/style.d.ts",
- "../../../node_modules/next/dist/styled-jsx/types/global.d.ts",
- "../../../node_modules/next/dist/styled-jsx/types/index.d.ts",
- "../../../node_modules/next/dist/server/get-page-files.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/@types/node/globals.d.ts",
- "../../../node_modules/@types/node/web-globals/abortcontroller.d.ts",
- "../../../node_modules/@types/node/web-globals/domexception.d.ts",
- "../../../node_modules/@types/node/web-globals/events.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/web-globals/fetch.d.ts",
- "../../../node_modules/@types/node/web-globals/navigator.d.ts",
- "../../../node_modules/@types/node/web-globals/storage.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/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/inspector.generated.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/react/canary.d.ts",
- "../../../node_modules/@types/react/experimental.d.ts",
- "../../../node_modules/@types/react-dom/index.d.ts",
- "../../../node_modules/@types/react-dom/client.d.ts",
- "../../../node_modules/@types/react-dom/static.d.ts",
- "../../../node_modules/@types/react-dom/canary.d.ts",
- "../../../node_modules/@types/react-dom/experimental.d.ts",
- "../../../node_modules/next/dist/lib/fallback.d.ts",
- "../../../node_modules/next/dist/compiled/webpack/webpack.d.ts",
- "../../../node_modules/next/dist/shared/lib/modern-browserslist-target.d.ts",
- "../../../node_modules/next/dist/shared/lib/entry-constants.d.ts",
- "../../../node_modules/next/dist/shared/lib/constants.d.ts",
- "../../../node_modules/next/dist/lib/bundler.d.ts",
- "../../../node_modules/next/dist/server/config.d.ts",
- "../../../node_modules/next/dist/lib/load-custom-routes.d.ts",
- "../../../node_modules/next/dist/shared/lib/image-config.d.ts",
- "../../../node_modules/next/dist/build/webpack/plugins/subresource-integrity-plugin.d.ts",
- "../../../node_modules/next/dist/server/body-streams.d.ts",
- "../../../node_modules/next/dist/server/request/search-params.d.ts",
- "../../../node_modules/next/dist/shared/lib/segment-cache/vary-params-decoding.d.ts",
- "../../../node_modules/next/dist/server/app-render/vary-params.d.ts",
- "../../../node_modules/next/dist/server/request/params.d.ts",
- "../../../node_modules/next/dist/server/route-kind.d.ts",
- "../../../node_modules/next/dist/server/route-definitions/route-definition.d.ts",
- "../../../node_modules/next/dist/server/route-matches/route-match.d.ts",
- "../../../node_modules/next/dist/client/components/app-router-headers.d.ts",
- "../../../node_modules/next/dist/server/lib/cache-control.d.ts",
- "../../../node_modules/next/dist/shared/lib/app-router-types.d.ts",
- "../../../node_modules/next/dist/server/lib/cache-handlers/types.d.ts",
- "../../../node_modules/next/dist/server/use-cache/use-cache-wrapper.d.ts",
- "../../../node_modules/next/dist/server/resume-data-cache/cache-store.d.ts",
- "../../../node_modules/next/dist/server/resume-data-cache/resume-data-cache.d.ts",
- "../../../node_modules/next/dist/lib/constants.d.ts",
- "../../../node_modules/next/dist/server/render-result.d.ts",
- "../../../node_modules/next/dist/server/response-cache/types.d.ts",
- "../../../node_modules/next/dist/server/response-cache/index.d.ts",
- "../../../node_modules/@types/react/jsx-runtime.d.ts",
- "../../../node_modules/next/dist/next-devtools/userspace/pages/pages-dev-overlay-setup.d.ts",
- "../../../node_modules/next/dist/build/static-paths/types.d.ts",
- "../../../node_modules/next/dist/server/route-definitions/app-page-route-definition.d.ts",
- "../../../node_modules/next/dist/build/adapter/setup-node-env.external.d.ts",
- "../../../node_modules/next/dist/server/instrumentation/types.d.ts",
- "../../../node_modules/next/dist/lib/setup-exception-listeners.d.ts",
- "../../../node_modules/next/dist/lib/worker.d.ts",
- "../../../node_modules/next/dist/server/lib/experimental/ppr.d.ts",
- "../../../node_modules/next/dist/lib/page-types.d.ts",
- "../../../node_modules/next/dist/build/segment-config/app/app-segment-config.d.ts",
- "../../../node_modules/next/dist/build/segment-config/pages/pages-segment-config.d.ts",
- "../../../node_modules/next/dist/build/analysis/get-page-static-info.d.ts",
- "../../../node_modules/next/dist/build/webpack/loaders/get-module-build-info.d.ts",
- "../../../node_modules/next/dist/build/webpack/plugins/middleware-plugin.d.ts",
- "../../../node_modules/next/dist/server/require-hook.d.ts",
- "../../../node_modules/next/dist/server/node-polyfill-crypto.d.ts",
- "../../../node_modules/next/dist/server/node-environment-baseline.d.ts",
- "../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.d.ts",
- "../../../node_modules/next/dist/server/node-environment-extensions/console-file.d.ts",
- "../../../node_modules/next/dist/server/node-environment-extensions/console-exit.d.ts",
- "../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.d.ts",
- "../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.d.ts",
- "../../../node_modules/next/dist/server/node-environment-extensions/random.d.ts",
- "../../../node_modules/next/dist/server/node-environment-extensions/date.d.ts",
- "../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.d.ts",
- "../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.d.ts",
- "../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.d.ts",
- "../../../node_modules/next/dist/server/node-environment.d.ts",
- "../../../node_modules/next/dist/build/page-extensions-type.d.ts",
- "../../../node_modules/next/dist/server/route-modules/app-page/module.compiled.d.ts",
- "../../../node_modules/next/dist/server/route-definitions/app-route-route-definition.d.ts",
- "../../../node_modules/next/dist/server/lib/i18n-provider.d.ts",
- "../../../node_modules/next/dist/server/web/next-url.d.ts",
- "../../../node_modules/next/dist/compiled/@edge-runtime/cookies/index.d.ts",
- "../../../node_modules/next/dist/server/web/spec-extension/cookies.d.ts",
- "../../../node_modules/next/dist/server/web/spec-extension/request.d.ts",
- "../../../node_modules/next/dist/shared/lib/deep-readonly.d.ts",
- "../../../node_modules/next/dist/server/lib/incremental-cache/index.d.ts",
- "../../../node_modules/next/dist/shared/lib/router/utils/middleware-route-matcher.d.ts",
- "../../../node_modules/next/dist/build/webpack/plugins/flight-manifest-plugin.d.ts",
- "../../../node_modules/next/dist/build/webpack/plugins/next-font-manifest-plugin.d.ts",
- "../../../node_modules/next/dist/server/route-definitions/locale-route-definition.d.ts",
- "../../../node_modules/next/dist/server/route-definitions/pages-route-definition.d.ts",
- "../../../node_modules/next/dist/shared/lib/mitt.d.ts",
- "../../../node_modules/next/dist/client/with-router.d.ts",
- "../../../node_modules/next/dist/client/router.d.ts",
- "../../../node_modules/next/dist/client/route-loader.d.ts",
- "../../../node_modules/next/dist/client/page-loader.d.ts",
- "../../../node_modules/next/dist/shared/lib/bloom-filter.d.ts",
- "../../../node_modules/next/dist/shared/lib/router/router.d.ts",
- "../../../node_modules/next/dist/shared/lib/router-context.shared-runtime.d.ts",
- "../../../node_modules/next/dist/shared/lib/loadable-context.shared-runtime.d.ts",
- "../../../node_modules/next/dist/shared/lib/loadable.shared-runtime.d.ts",
- "../../../node_modules/next/dist/shared/lib/image-config-context.shared-runtime.d.ts",
- "../../../node_modules/next/dist/client/components/readonly-url-search-params.d.ts",
- "../../../node_modules/next/dist/shared/lib/hooks-client-context.shared-runtime.d.ts",
- "../../../node_modules/next/dist/shared/lib/head-manager-context.shared-runtime.d.ts",
- "../../../node_modules/next/dist/client/flight-data-helpers.d.ts",
- "../../../node_modules/next/dist/client/components/segment-cache/cache-key.d.ts",
- "../../../node_modules/next/dist/client/components/router-reducer/fetch-server-response.d.ts",
- "../../../node_modules/next/dist/client/components/segment-cache/types.d.ts",
- "../../../node_modules/next/dist/shared/lib/segment-cache/segment-value-encoding.d.ts",
- "../../../node_modules/next/dist/client/components/segment-cache/scheduler.d.ts",
- "../../../node_modules/next/dist/client/components/segment-cache/cache-map.d.ts",
- "../../../node_modules/next/dist/client/components/segment-cache/vary-path.d.ts",
- "../../../node_modules/next/dist/client/components/segment-cache/cache.d.ts",
- "../../../node_modules/next/dist/client/components/router-reducer/ppr-navigations.d.ts",
- "../../../node_modules/next/dist/client/components/segment-cache/navigation.d.ts",
- "../../../node_modules/next/dist/client/components/router-reducer/router-reducer-types.d.ts",
- "../../../node_modules/next/dist/shared/lib/app-router-context.shared-runtime.d.ts",
- "../../../node_modules/next/dist/shared/lib/server-inserted-html.shared-runtime.d.ts",
- "../../../node_modules/next/dist/server/route-modules/pages/vendored/contexts/entrypoints.d.ts",
- "../../../node_modules/next/dist/server/route-modules/pages/module.compiled.d.ts",
- "../../../node_modules/next/dist/build/templates/pages.d.ts",
- "../../../node_modules/next/dist/server/route-modules/pages/module.d.ts",
- "../../../node_modules/next/dist/server/render.d.ts",
- "../../../node_modules/next/dist/build/webpack/plugins/pages-manifest-plugin.d.ts",
- "../../../node_modules/next/dist/server/route-definitions/pages-api-route-definition.d.ts",
- "../../../node_modules/next/dist/server/route-matches/pages-api-route-match.d.ts",
- "../../../node_modules/next/dist/server/route-matchers/route-matcher.d.ts",
- "../../../node_modules/next/dist/server/route-matcher-providers/route-matcher-provider.d.ts",
- "../../../node_modules/next/dist/server/route-matcher-managers/route-matcher-manager.d.ts",
- "../../../node_modules/next/dist/server/normalizers/normalizer.d.ts",
- "../../../node_modules/next/dist/server/normalizers/locale-route-normalizer.d.ts",
- "../../../node_modules/next/dist/server/normalizers/request/pathname-normalizer.d.ts",
- "../../../node_modules/next/dist/server/normalizers/request/suffix.d.ts",
- "../../../node_modules/next/dist/server/normalizers/request/rsc.d.ts",
- "../../../node_modules/next/dist/server/normalizers/request/next-data.d.ts",
- "../../../node_modules/next/dist/server/after/builtin-request-context.d.ts",
- "../../../node_modules/next/dist/server/normalizers/request/segment-prefix-rsc.d.ts",
- "../../../node_modules/next/dist/server/route-modules/pages/builtin/_error.d.ts",
- "../../../node_modules/next/dist/server/load-default-error-components.d.ts",
- "../../../node_modules/next/dist/server/base-server.d.ts",
- "../../../node_modules/next/dist/server/after/after.d.ts",
- "../../../node_modules/next/dist/server/after/after-context.d.ts",
- "../../../node_modules/next/dist/server/use-cache/cache-life.d.ts",
- "../../../node_modules/next/dist/server/app-render/work-async-storage-instance.d.ts",
- "../../../node_modules/next/dist/server/lib/lazy-result.d.ts",
- "../../../node_modules/next/dist/server/app-render/create-error-handler.d.ts",
- "../../../node_modules/next/dist/shared/lib/action-revalidation-kind.d.ts",
- "../../../node_modules/next/dist/server/app-render/work-async-storage.external.d.ts",
- "../../../node_modules/next/dist/server/async-storage/work-store.d.ts",
- "../../../node_modules/next/dist/server/web/http.d.ts",
- "../../../node_modules/next/dist/client/components/hooks-server-context.d.ts",
- "../../../node_modules/next/dist/server/route-modules/app-route/shared-modules.d.ts",
- "../../../node_modules/next/dist/client/components/redirect-status-code.d.ts",
- "../../../node_modules/next/dist/client/components/redirect-error.d.ts",
- "../../../node_modules/next/dist/server/web/spec-extension/adapters/request-cookies.d.ts",
- "../../../node_modules/next/dist/server/async-storage/draft-mode-provider.d.ts",
- "../../../node_modules/next/dist/server/web/spec-extension/adapters/headers.d.ts",
- "../../../node_modules/next/dist/server/app-render/cache-signal.d.ts",
- "../../../node_modules/next/dist/server/app-render/instant-validation/boundary-tracking.d.ts",
- "../../../node_modules/next/dist/server/app-render/instant-validation/instant-validation-error.d.ts",
- "../../../node_modules/next/dist/shared/lib/router/utils/parse-relative-url.d.ts",
- "../../../node_modules/next/dist/server/app-render/instant-validation/instant-samples.d.ts",
- "../../../node_modules/next/dist/server/app-render/dynamic-rendering.d.ts",
- "../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.d.ts",
- "../../../node_modules/next/dist/server/lib/implicit-tags.d.ts",
- "../../../node_modules/next/dist/server/app-render/staged-rendering.d.ts",
- "../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.d.ts",
- "../../../node_modules/next/dist/build/templates/app-route.d.ts",
- "../../../node_modules/next/dist/server/app-render/action-async-storage-instance.d.ts",
- "../../../node_modules/next/dist/server/app-render/action-async-storage.external.d.ts",
- "../../../node_modules/next/dist/server/route-modules/app-route/module.d.ts",
- "../../../node_modules/next/dist/server/route-modules/app-route/module.compiled.d.ts",
- "../../../node_modules/next/dist/build/segment-config/app/app-segments.d.ts",
- "../../../node_modules/next/dist/build/get-supported-browsers.d.ts",
- "../../../node_modules/next/dist/build/utils.d.ts",
- "../../../node_modules/next/dist/build/rendering-mode.d.ts",
- "../../../node_modules/next/dist/server/lib/router-utils/build-prefetch-segment-data-route.d.ts",
- "../../../node_modules/next/dist/server/lib/cpu-profile.d.ts",
- "../../../node_modules/next/dist/build/turborepo-access-trace/types.d.ts",
- "../../../node_modules/next/dist/build/turborepo-access-trace/result.d.ts",
- "../../../node_modules/next/dist/build/turborepo-access-trace/helpers.d.ts",
- "../../../node_modules/next/dist/build/turborepo-access-trace/index.d.ts",
- "../../../node_modules/next/dist/export/routes/types.d.ts",
- "../../../node_modules/next/dist/export/types.d.ts",
- "../../../node_modules/next/dist/export/worker.d.ts",
- "../../../node_modules/next/dist/build/worker.d.ts",
- "../../../node_modules/next/dist/build/index.d.ts",
- "../../../node_modules/next/dist/lib/coalesced-function.d.ts",
- "../../../node_modules/next/dist/server/lib/router-utils/types.d.ts",
- "../../../node_modules/next/dist/trace/types.d.ts",
- "../../../node_modules/next/dist/trace/trace.d.ts",
- "../../../node_modules/next/dist/trace/shared.d.ts",
- "../../../node_modules/next/dist/trace/index.d.ts",
- "../../../node_modules/next/dist/build/load-jsconfig.d.ts",
- "../../../node_modules/@next/env/dist/index.d.ts",
- "../../../node_modules/next/dist/build/webpack/plugins/telemetry-plugin/use-cache-tracker-utils.d.ts",
- "../../../node_modules/next/dist/build/webpack/plugins/telemetry-plugin/telemetry-plugin.d.ts",
- "../../../node_modules/next/dist/telemetry/storage.d.ts",
- "../../../node_modules/next/dist/build/build-context.d.ts",
- "../../../node_modules/next/dist/build/webpack-config.d.ts",
- "../../../node_modules/next/dist/build/swc/generated-native.d.ts",
- "../../../node_modules/next/dist/build/define-env.d.ts",
- "../../../node_modules/next/dist/build/swc/index.d.ts",
- "../../../node_modules/next/dist/build/swc/types.d.ts",
- "../../../node_modules/next/dist/server/dev/parse-version-info.d.ts",
- "../../../node_modules/next/dist/next-devtools/shared/types.d.ts",
- "../../../node_modules/next/dist/server/dev/dev-indicator-server-state.d.ts",
- "../../../node_modules/next/dist/next-devtools/dev-overlay/cache-indicator.d.ts",
- "../../../node_modules/next/dist/server/lib/parse-stack.d.ts",
- "../../../node_modules/next/dist/next-devtools/server/shared.d.ts",
- "../../../node_modules/next/dist/next-devtools/shared/stack-frame.d.ts",
- "../../../node_modules/next/dist/next-devtools/dev-overlay/utils/get-error-by-type.d.ts",
- "../../../node_modules/next/dist/next-devtools/dev-overlay/container/runtime-error/render-error.d.ts",
- "../../../node_modules/next/dist/next-devtools/dev-overlay/shared.d.ts",
- "../../../node_modules/next/dist/server/dev/debug-channel.d.ts",
- "../../../node_modules/next/dist/server/dev/hot-reloader-types.d.ts",
- "../../../node_modules/next/dist/server/web/spec-extension/fetch-event.d.ts",
- "../../../node_modules/next/dist/server/web/spec-extension/response.d.ts",
- "../../../node_modules/next/dist/build/segment-config/middleware/middleware-config.d.ts",
- "../../../node_modules/next/dist/server/web/types.d.ts",
- "../../../node_modules/next/dist/shared/lib/router/utils/parse-url.d.ts",
- "../../../node_modules/next/dist/server/base-http/node.d.ts",
- "../../../node_modules/next/dist/server/lib/async-callback-set.d.ts",
- "../../../node_modules/next/dist/shared/lib/router/utils/route-regex.d.ts",
- "../../../node_modules/next/dist/shared/lib/router/utils/route-matcher.d.ts",
- "../../../node_modules/sharp/lib/index.d.ts",
- "../../../node_modules/next/dist/server/image-optimizer.d.ts",
- "../../../node_modules/next/dist/server/next-server.d.ts",
- "../../../node_modules/next/dist/server/lib/types.d.ts",
- "../../../node_modules/next/dist/server/lib/lru-cache.d.ts",
- "../../../node_modules/next/dist/server/lib/dev-bundler-service.d.ts",
- "../../../node_modules/next/dist/server/dev/static-paths-worker.d.ts",
- "../../../node_modules/next/dist/server/dev/next-dev-server.d.ts",
- "../../../node_modules/next/dist/server/next.d.ts",
- "../../../node_modules/next/dist/server/lib/render-server.d.ts",
- "../../../node_modules/next/dist/server/lib/router-server.d.ts",
- "../../../node_modules/next/dist/shared/lib/router/utils/path-match.d.ts",
- "../../../node_modules/next/dist/server/lib/router-utils/filesystem.d.ts",
- "../../../node_modules/next/dist/server/lib/router-utils/setup-dev-bundler.d.ts",
- "../../../node_modules/next/dist/server/lib/router-utils/router-server-context.d.ts",
- "../../../node_modules/next/dist/server/route-modules/route-module.d.ts",
- "../../../node_modules/next/dist/server/load-components.d.ts",
- "../../../node_modules/next/dist/server/web/adapter.d.ts",
- "../../../node_modules/next/dist/server/app-render/types.d.ts",
- "../../../node_modules/next/dist/build/webpack/loaders/metadata/types.d.ts",
- "../../../node_modules/next/dist/build/webpack/loaders/next-app-loader/index.d.ts",
- "../../../node_modules/next/dist/server/lib/app-dir-module.d.ts",
- "../../../node_modules/next/dist/server/app-render/app-render.d.ts",
- "../../../node_modules/next/dist/server/route-modules/app-page/vendored/contexts/entrypoints.d.ts",
- "../../../node_modules/next/dist/client/components/error-boundary.d.ts",
- "../../../node_modules/next/dist/client/components/layout-router.d.ts",
- "../../../node_modules/next/dist/client/components/render-from-template-context.d.ts",
- "../../../node_modules/next/dist/client/components/client-page.d.ts",
- "../../../node_modules/next/dist/client/components/client-segment.d.ts",
- "../../../node_modules/next/dist/client/components/http-access-fallback/error-boundary.d.ts",
- "../../../node_modules/next/dist/lib/metadata/types/alternative-urls-types.d.ts",
- "../../../node_modules/next/dist/lib/metadata/types/extra-types.d.ts",
- "../../../node_modules/next/dist/lib/metadata/types/metadata-types.d.ts",
- "../../../node_modules/next/dist/lib/metadata/types/manifest-types.d.ts",
- "../../../node_modules/next/dist/lib/metadata/types/opengraph-types.d.ts",
- "../../../node_modules/next/dist/lib/metadata/types/twitter-types.d.ts",
- "../../../node_modules/next/dist/lib/metadata/types/metadata-interface.d.ts",
- "../../../node_modules/next/dist/lib/metadata/types/resolvers.d.ts",
- "../../../node_modules/next/dist/lib/metadata/types/icons.d.ts",
- "../../../node_modules/next/dist/lib/metadata/resolve-metadata.d.ts",
- "../../../node_modules/next/dist/lib/metadata/metadata.d.ts",
- "../../../node_modules/next/dist/lib/framework/boundary-components.d.ts",
- "../../../node_modules/next/dist/server/app-render/rsc/preloads.d.ts",
- "../../../node_modules/next/dist/server/app-render/rsc/postpone.d.ts",
- "../../../node_modules/next/dist/server/app-render/rsc/taint.d.ts",
- "../../../node_modules/next/dist/server/app-render/collect-segment-data.d.ts",
- "../../../node_modules/next/dist/server/app-render/instant-validation/instant-validation.d.ts",
- "../../../node_modules/next/dist/next-devtools/userspace/app/segment-explorer-node.d.ts",
- "../../../node_modules/next/dist/server/app-render/entry-base.d.ts",
- "../../../node_modules/next/dist/build/templates/app-page.d.ts",
- "../../../node_modules/next/dist/server/route-modules/app-page/helpers/prerender-manifest-matcher.d.ts",
- "../../../node_modules/@types/react/jsx-dev-runtime.d.ts",
- "../../../node_modules/@types/react/compiler-runtime.d.ts",
- "../../../node_modules/next/dist/server/route-modules/app-page/vendored/rsc/entrypoints.d.ts",
- "../../../node_modules/@types/react-dom/server.d.ts",
- "../../../node_modules/next/dist/server/route-modules/app-page/vendored/ssr/entrypoints.d.ts",
- "../../../node_modules/next/dist/server/route-modules/app-page/module.d.ts",
- "../../../node_modules/next/dist/server/request/fallback-params.d.ts",
- "../../../node_modules/next/dist/server/web/spec-extension/image-response.d.ts",
- "../../../node_modules/next/dist/server/web/spec-extension/user-agent.d.ts",
- "../../../node_modules/next/dist/server/web/spec-extension/url-pattern.d.ts",
- "../../../node_modules/next/dist/server/after/index.d.ts",
- "../../../node_modules/next/dist/server/request/connection.d.ts",
- "../../../node_modules/next/dist/server/web/exports/index.d.ts",
- "../../../node_modules/next/dist/server/request-meta.d.ts",
- "../../../node_modules/next/dist/cli/next-test.d.ts",
- "../../../node_modules/next/dist/shared/lib/size-limit.d.ts",
- "../../../node_modules/next/dist/server/config-shared.d.ts",
- "../../../node_modules/next/dist/server/base-http/index.d.ts",
- "../../../node_modules/next/dist/server/api-utils/index.d.ts",
- "../../../node_modules/next/dist/build/adapter/build-complete.d.ts",
- "../../../node_modules/next/dist/types.d.ts",
- "../../../node_modules/next/dist/shared/lib/html-context.shared-runtime.d.ts",
- "../../../node_modules/next/dist/shared/lib/utils.d.ts",
- "../../../node_modules/next/dist/pages/_app.d.ts",
- "../../../node_modules/next/app.d.ts",
- "../../../node_modules/next/dist/server/web/spec-extension/unstable-cache.d.ts",
- "../../../node_modules/next/dist/server/web/spec-extension/revalidate.d.ts",
- "../../../node_modules/next/dist/server/web/spec-extension/unstable-no-store.d.ts",
- "../../../node_modules/next/dist/server/use-cache/cache-tag.d.ts",
- "../../../node_modules/next/cache.d.ts",
- "../../../node_modules/next/dist/pages/_document.d.ts",
- "../../../node_modules/next/document.d.ts",
- "../../../node_modules/next/dist/shared/lib/dynamic.d.ts",
- "../../../node_modules/next/dynamic.d.ts",
- "../../../node_modules/next/dist/pages/_error.d.ts",
- "../../../node_modules/next/dist/client/components/catch-error.d.ts",
- "../../../node_modules/next/dist/api/error.d.ts",
- "../../../node_modules/next/error.d.ts",
- "../../../node_modules/next/dist/shared/lib/head.d.ts",
- "../../../node_modules/next/head.d.ts",
- "../../../node_modules/next/dist/server/request/cookies.d.ts",
- "../../../node_modules/next/dist/server/request/headers.d.ts",
- "../../../node_modules/next/dist/server/request/draft-mode.d.ts",
- "../../../node_modules/next/headers.d.ts",
- "../../../node_modules/next/dist/shared/lib/get-img-props.d.ts",
- "../../../node_modules/next/dist/client/image-component.d.ts",
- "../../../node_modules/next/dist/shared/lib/image-external.d.ts",
- "../../../node_modules/next/image.d.ts",
- "../../../node_modules/next/dist/client/link.d.ts",
- "../../../node_modules/next/link.d.ts",
- "../../../node_modules/next/dist/client/components/unrecognized-action-error.d.ts",
- "../../../node_modules/next/dist/client/components/redirect.d.ts",
- "../../../node_modules/next/dist/client/components/not-found.d.ts",
- "../../../node_modules/next/dist/client/components/forbidden.d.ts",
- "../../../node_modules/next/dist/client/components/unauthorized.d.ts",
- "../../../node_modules/next/dist/client/components/unstable-rethrow.server.d.ts",
- "../../../node_modules/next/dist/client/components/unstable-rethrow.d.ts",
- "../../../node_modules/next/dist/client/components/navigation.react-server.d.ts",
- "../../../node_modules/next/dist/client/components/navigation.d.ts",
- "../../../node_modules/next/navigation.d.ts",
- "../../../node_modules/next/router.d.ts",
- "../../../node_modules/next/dist/client/script.d.ts",
- "../../../node_modules/next/script.d.ts",
- "../../../node_modules/next/dist/compiled/@edge-runtime/primitives/url.d.ts",
- "../../../node_modules/next/dist/compiled/@vercel/og/satori/index.d.ts",
- "../../../node_modules/next/dist/compiled/@vercel/og/types.d.ts",
- "../../../node_modules/next/server.d.ts",
- "../../../node_modules/next/types/global.d.ts",
- "../../../node_modules/next/types/compiled.d.ts",
- "../../../node_modules/next/types.d.ts",
- "../../../node_modules/next/index.d.ts",
- "../../../node_modules/next/image-types/global.d.ts",
- "../.next/dev/types/routes.d.ts",
- "../next-env.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/measurement.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/attributes.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/attachment.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/severity.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/breadcrumb.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/featureFlags.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/opentelemetry.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/spanStatus.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/transaction.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/span.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/link.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/webfetchapi.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/request.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/misc.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/context.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/checkin.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/datacategory.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/clientreport.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/csp.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/dsn.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/feedback/form.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/feedback/theme.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/feedback/config.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/user.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/feedback/sendFeedback.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/feedback/index.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/parameterize.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/log.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/metric.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/debugMeta.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/profiling.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/replay.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/package.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/sdkinfo.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/session.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/envelope.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/eventprocessor.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/extra.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/tracing.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/scope.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/mechanism.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/stackframe.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/stacktrace.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/exception.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/thread.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/event.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/integration.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/samplingcontext.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/sdkmetadata.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/transport.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/options.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/integration.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/startSpanOptions.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/promisebuffer.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/client.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/sdk.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/traceData.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/tracing.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/trace.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/spanUtils.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/asyncContext/types.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/asyncContext/stackStrategy.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/env.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/worldwide.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/carrier.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/transports/offline.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/server-runtime-client.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/errors.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/utils.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/idleSpan.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/timedEvent.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/sentrySpan.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/sentryNonRecordingSpan.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/spanstatus.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/dynamicSamplingContext.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/measurement.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/sampling.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/logSpans.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/index.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/semanticAttributes.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/envelope.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/prepareEvent.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/exports.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/currentScopes.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/defaultScopes.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/asyncContext/index.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/session.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/eventProcessors.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/report-dialog.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/api.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/transports/base.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/transports/multiplexed.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/ai/providerSkip.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/envToBool.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/scopeData.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/checkin.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/hasSpansEnabled.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/isSentryRequestUrl.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/handleCallbackErrors.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/parameterize.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/tunnel.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/ipAddress.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/spanOnScope.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/parseSampleRate.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/sdkMetadata.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/lru.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/tracePropagationTargets.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/meta.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/debounce.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/request.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/constants.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/breadcrumbs.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/integrations/functiontostring.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/integrations/eventFilters.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/integrations/linkederrors.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/integrations/moduleMetadata.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/integrations/requestdata.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/integrations/captureconsole.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/integrations/dedupe.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/integrations/extraerrordata.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/integrations/rewriteframes.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/integrations/supabase.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/integrations/postgresjs.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/integrations/zoderrors.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/integrations/third-party-errors-filter.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/instrument.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/integrations/console.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/integrations/featureFlags/featureFlagsIntegration.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/integrations/featureFlags/growthbook.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/integrations/featureFlags/index.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/integrations/conversationId.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/profiling.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/fetch.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/trpc.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/integrations/mcp-server/types.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/integrations/mcp-server/index.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/feedback.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/logs/internal.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/logs/public-api.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/logs/console-integration.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/metrics/internal.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/metrics/public-api.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/integrations/consola.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/vercel-ai/index.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/vercel-ai/types.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/vercel-ai/utils.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/vercel-ai/constants.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/openai/constants.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/openai/types.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/openai/index.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/anthropic-ai/constants.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/anthropic-ai/types.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/anthropic-ai/index.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/google-genai/constants.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/google-genai/types.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/google-genai/index.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/langchain/types.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/langchain/index.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/langchain/constants.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/langgraph/types.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/langgraph/index.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/langgraph/constants.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/aggregate-errors.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/breadcrumb-log-level.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/browser.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/dsn.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/error.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/instrument/console.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/instrument/fetch.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/instrument/globalError.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/instrument/globalUnhandledRejection.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/instrument/handlers.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/polymorphics.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/vue.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/is.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/isBrowser.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/debug-logger.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/misc.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/node.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/normalize.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/wrappedfunction.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/object.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/path.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/severity.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/exports.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/stacktrace.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/node-stack-trace.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/vendor/escapeStringForRegex.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/string.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/supports.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/syncpromise.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/time.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/envelope.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/clientreport.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/ratelimit.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/baggage.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/url.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/eventbuilder.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/anr.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/propagationContext.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/vercelWaitUntil.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/flushIfServerless.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/version.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/debug-ids.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/metadata.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/error.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/runtime.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/browseroptions.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/view-hierarchy.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/build-time-plugins/buildTimeOptionsBase.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/randomSafeContext.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/index.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/feedbackAsync.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/feedbackSync.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/transports/types.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/client.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/helpers.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/transports/fetch.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/profiling/index.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/stack-parsers.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/eventbuilder.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/userfeedback.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/sdk.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/report-dialog.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/integrations/breadcrumbs.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/integrations/globalhandlers.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/integrations/httpcontext.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/integrations/linkederrors.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/integrations/browserapierrors.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/integrations/browsersession.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/utils/lazyLoadIntegration.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/exports.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/integrations/reportingobserver.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/integrations/httpclient.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/integrations/contextlines.d.ts",
- "../../../node_modules/@sentry-internal/browser-utils/build/types/metrics/instrument.d.ts",
- "../../../node_modules/@sentry-internal/browser-utils/node_modules/@sentry/core/build/types/index.d.ts",
- "../../../node_modules/@sentry-internal/browser-utils/build/types/metrics/inp.d.ts",
- "../../../node_modules/@sentry-internal/browser-utils/build/types/metrics/browserMetrics.d.ts",
- "../../../node_modules/@sentry-internal/browser-utils/build/types/metrics/elementTiming.d.ts",
- "../../../node_modules/@sentry-internal/browser-utils/build/types/metrics/utils.d.ts",
- "../../../node_modules/@sentry-internal/browser-utils/build/types/instrument/dom.d.ts",
- "../../../node_modules/@sentry-internal/browser-utils/build/types/instrument/history.d.ts",
- "../../../node_modules/@sentry-internal/browser-utils/build/types/types.d.ts",
- "../../../node_modules/@sentry-internal/browser-utils/build/types/getNativeImplementation.d.ts",
- "../../../node_modules/@sentry-internal/browser-utils/build/types/instrument/xhr.d.ts",
- "../../../node_modules/@sentry-internal/browser-utils/build/types/networkUtils.d.ts",
- "../../../node_modules/@sentry-internal/browser-utils/build/types/metrics/resourceTiming.d.ts",
- "../../../node_modules/@sentry-internal/browser-utils/build/types/index.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/integrations/graphqlClient.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/node_modules/@sentry-internal/replay/build/npm/types/types/request.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/node_modules/@sentry-internal/replay/build/npm/types/types/performance.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/node_modules/@sentry-internal/replay/build/npm/types/util/throttle.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/node_modules/@sentry-internal/replay/build/npm/types/types/rrweb.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/node_modules/@sentry-internal/replay/build/npm/types/types/replayFrame.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/node_modules/@sentry-internal/replay/build/npm/types/types/replay.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/node_modules/@sentry-internal/replay/build/npm/types/types/index.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/node_modules/@sentry-internal/replay/build/npm/types/integration.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/node_modules/@sentry-internal/replay/build/npm/types/util/getReplay.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/node_modules/@sentry-internal/replay/build/npm/types/index.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/node_modules/@sentry-internal/replay-canvas/build/npm/types/canvas.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/node_modules/@sentry-internal/replay-canvas/build/npm/types/index.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/node_modules/@sentry-internal/feedback/build/npm/types/core/sendFeedback.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/node_modules/@sentry-internal/feedback/build/npm/types/core/components/Actor.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/node_modules/@sentry-internal/feedback/build/npm/types/core/types.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/node_modules/@sentry-internal/feedback/build/npm/types/core/integration.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/node_modules/@sentry-internal/feedback/build/npm/types/core/getFeedback.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/node_modules/@sentry-internal/feedback/build/npm/types/modal/integration.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/node_modules/@sentry-internal/feedback/build/npm/types/screenshot/integration.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/node_modules/@sentry-internal/feedback/build/npm/types/index.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/tracing/request.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/tracing/browserTracingIntegration.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/tracing/reportPageLoaded.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/tracing/setActiveSpan.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/transports/offline.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/profiling/integration.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/integrations/spotlight.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/integrations/culturecontext.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/integrations/featureFlags/launchdarkly/types.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/integrations/featureFlags/launchdarkly/integration.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/integrations/featureFlags/launchdarkly/index.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/integrations/featureFlags/openfeature/types.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/integrations/featureFlags/openfeature/integration.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/integrations/featureFlags/openfeature/index.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/integrations/featureFlags/unleash/types.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/integrations/featureFlags/unleash/integration.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/integrations/featureFlags/unleash/index.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/integrations/featureFlags/growthbook/types.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/integrations/featureFlags/growthbook/integration.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/integrations/featureFlags/growthbook/index.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/integrations/featureFlags/statsig/types.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/integrations/featureFlags/statsig/integration.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/integrations/featureFlags/statsig/index.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/diagnose-sdk.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/integrations/webWorker.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/index.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/build/types/sdk.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/build/types/error.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/build/types/profiler.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/build/types/errorboundary.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/build/types/redux.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/build/types/types.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/build/types/reactrouterv3.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/build/types/tanstackrouter.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/build/types/reactrouter.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/build/types/reactrouter-compat-utils/instrumentation.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/build/types/reactrouter-compat-utils/utils.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/build/types/reactrouter-compat-utils/lazy-routes.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/build/types/reactrouter-compat-utils/index.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/build/types/reactrouterv6.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/build/types/reactrouterv7.d.ts",
- "../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/build/types/index.d.ts",
- "../../../node_modules/@sentry/nextjs/build/types/common/pages-router-instrumentation/wrapGetStaticPropsWithSentry.d.ts",
- "../../../node_modules/@sentry/nextjs/build/types/common/pages-router-instrumentation/wrapGetInitialPropsWithSentry.d.ts",
- "../../../node_modules/@sentry/nextjs/build/types/common/pages-router-instrumentation/wrapAppGetInitialPropsWithSentry.d.ts",
- "../../../node_modules/@sentry/nextjs/build/types/common/pages-router-instrumentation/wrapDocumentGetInitialPropsWithSentry.d.ts",
- "../../../node_modules/@sentry/nextjs/build/types/common/pages-router-instrumentation/wrapErrorGetInitialPropsWithSentry.d.ts",
- "../../../node_modules/@sentry/nextjs/build/types/common/pages-router-instrumentation/wrapGetServerSidePropsWithSentry.d.ts",
- "../../../node_modules/@sentry/nextjs/build/types/config/templates/requestAsyncStorageShim.d.ts",
- "../../../node_modules/@sentry/nextjs/build/types/common/types.d.ts",
- "../../../node_modules/@sentry/nextjs/build/types/common/wrapServerComponentWithSentry.d.ts",
- "../../../node_modules/@sentry/nextjs/build/types/common/wrapRouteHandlerWithSentry.d.ts",
- "../../../node_modules/@sentry/nextjs/build/types/common/pages-router-instrumentation/wrapApiHandlerWithSentryVercelCrons.d.ts",
- "../../../node_modules/@sentry/nextjs/build/types/edge/types.d.ts",
- "../../../node_modules/@sentry/nextjs/build/types/common/wrapMiddlewareWithSentry.d.ts",
- "../../../node_modules/@sentry/nextjs/build/types/common/pages-router-instrumentation/wrapPageComponentWithSentry.d.ts",
- "../../../node_modules/@sentry/nextjs/build/types/common/wrapGenerationFunctionWithSentry.d.ts",
- "../../../node_modules/@sentry/nextjs/build/types/common/withServerActionInstrumentation.d.ts",
- "../../../node_modules/@sentry/nextjs/build/types/common/captureRequestError.d.ts",
- "../../../node_modules/@sentry/nextjs/build/types/common/index.d.ts",
- "../../../node_modules/@sentry/nextjs/build/types/common/pages-router-instrumentation/_error.d.ts",
- "../../../node_modules/@sentry/nextjs/build/types/common/utils/nextSpan.d.ts",
- "../../../node_modules/@sentry/nextjs/build/types/client/browserTracingIntegration.d.ts",
- "../../../node_modules/@sentry/nextjs/build/types/client/routing/appRouterRoutingInstrumentation.d.ts",
- "../../../node_modules/@sentry/nextjs/build/types/client/index.d.ts",
- "../../../node_modules/@sentry/vercel-edge/node_modules/@sentry/core/build/types/index.d.ts",
- "../../../node_modules/@opentelemetry/api/build/src/baggage/internal/symbol.d.ts",
- "../../../node_modules/@opentelemetry/api/build/src/baggage/types.d.ts",
- "../../../node_modules/@opentelemetry/api/build/src/baggage/utils.d.ts",
- "../../../node_modules/@opentelemetry/api/build/src/common/Exception.d.ts",
- "../../../node_modules/@opentelemetry/api/build/src/common/Time.d.ts",
- "../../../node_modules/@opentelemetry/api/build/src/common/Attributes.d.ts",
- "../../../node_modules/@opentelemetry/api/build/src/context/types.d.ts",
- "../../../node_modules/@opentelemetry/api/build/src/context/context.d.ts",
- "../../../node_modules/@opentelemetry/api/build/src/api/context.d.ts",
- "../../../node_modules/@opentelemetry/api/build/src/diag/types.d.ts",
- "../../../node_modules/@opentelemetry/api/build/src/diag/consoleLogger.d.ts",
- "../../../node_modules/@opentelemetry/api/build/src/api/diag.d.ts",
- "../../../node_modules/@opentelemetry/api/build/src/metrics/ObservableResult.d.ts",
- "../../../node_modules/@opentelemetry/api/build/src/metrics/Metric.d.ts",
- "../../../node_modules/@opentelemetry/api/build/src/metrics/Meter.d.ts",
- "../../../node_modules/@opentelemetry/api/build/src/metrics/NoopMeter.d.ts",
- "../../../node_modules/@opentelemetry/api/build/src/metrics/MeterProvider.d.ts",
- "../../../node_modules/@opentelemetry/api/build/src/api/metrics.d.ts",
- "../../../node_modules/@opentelemetry/api/build/src/propagation/TextMapPropagator.d.ts",
- "../../../node_modules/@opentelemetry/api/build/src/baggage/context-helpers.d.ts",
- "../../../node_modules/@opentelemetry/api/build/src/api/propagation.d.ts",
- "../../../node_modules/@opentelemetry/api/build/src/trace/attributes.d.ts",
- "../../../node_modules/@opentelemetry/api/build/src/trace/trace_state.d.ts",
- "../../../node_modules/@opentelemetry/api/build/src/trace/span_context.d.ts",
- "../../../node_modules/@opentelemetry/api/build/src/trace/link.d.ts",
- "../../../node_modules/@opentelemetry/api/build/src/trace/status.d.ts",
- "../../../node_modules/@opentelemetry/api/build/src/trace/span.d.ts",
- "../../../node_modules/@opentelemetry/api/build/src/trace/span_kind.d.ts",
- "../../../node_modules/@opentelemetry/api/build/src/trace/SpanOptions.d.ts",
- "../../../node_modules/@opentelemetry/api/build/src/trace/tracer.d.ts",
- "../../../node_modules/@opentelemetry/api/build/src/trace/tracer_options.d.ts",
- "../../../node_modules/@opentelemetry/api/build/src/trace/ProxyTracer.d.ts",
- "../../../node_modules/@opentelemetry/api/build/src/trace/tracer_provider.d.ts",
- "../../../node_modules/@opentelemetry/api/build/src/trace/ProxyTracerProvider.d.ts",
- "../../../node_modules/@opentelemetry/api/build/src/trace/SamplingResult.d.ts",
- "../../../node_modules/@opentelemetry/api/build/src/trace/Sampler.d.ts",
- "../../../node_modules/@opentelemetry/api/build/src/trace/trace_flags.d.ts",
- "../../../node_modules/@opentelemetry/api/build/src/trace/internal/utils.d.ts",
- "../../../node_modules/@opentelemetry/api/build/src/trace/spancontext-utils.d.ts",
- "../../../node_modules/@opentelemetry/api/build/src/trace/invalid-span-constants.d.ts",
- "../../../node_modules/@opentelemetry/api/build/src/trace/context-utils.d.ts",
- "../../../node_modules/@opentelemetry/api/build/src/api/trace.d.ts",
- "../../../node_modules/@opentelemetry/api/build/src/context-api.d.ts",
- "../../../node_modules/@opentelemetry/api/build/src/diag-api.d.ts",
- "../../../node_modules/@opentelemetry/api/build/src/metrics-api.d.ts",
- "../../../node_modules/@opentelemetry/api/build/src/propagation-api.d.ts",
- "../../../node_modules/@opentelemetry/api/build/src/trace-api.d.ts",
- "../../../node_modules/@opentelemetry/api/build/src/index.d.ts",
- "../../../node_modules/@opentelemetry/resources/build/src/types.d.ts",
- "../../../node_modules/@opentelemetry/resources/build/src/config.d.ts",
- "../../../node_modules/@opentelemetry/resources/build/src/Resource.d.ts",
- "../../../node_modules/@opentelemetry/resources/build/src/detect-resources.d.ts",
- "../../../node_modules/@opentelemetry/resources/build/src/detectors/EnvDetector.d.ts",
- "../../../node_modules/@opentelemetry/resources/build/src/detectors/platform/node/HostDetector.d.ts",
- "../../../node_modules/@opentelemetry/resources/build/src/detectors/platform/node/OSDetector.d.ts",
- "../../../node_modules/@opentelemetry/resources/build/src/detectors/platform/node/ProcessDetector.d.ts",
- "../../../node_modules/@opentelemetry/resources/build/src/detectors/platform/node/ServiceInstanceIdDetector.d.ts",
- "../../../node_modules/@opentelemetry/resources/build/src/detectors/platform/node/index.d.ts",
- "../../../node_modules/@opentelemetry/resources/build/src/detectors/platform/index.d.ts",
- "../../../node_modules/@opentelemetry/resources/build/src/detectors/NoopDetector.d.ts",
- "../../../node_modules/@opentelemetry/resources/build/src/detectors/index.d.ts",
- "../../../node_modules/@opentelemetry/resources/build/src/ResourceImpl.d.ts",
- "../../../node_modules/@opentelemetry/resources/build/src/default-service-name.d.ts",
- "../../../node_modules/@opentelemetry/resources/build/src/index.d.ts",
- "../../../node_modules/@opentelemetry/sdk-trace-base/build/src/IdGenerator.d.ts",
- "../../../node_modules/@opentelemetry/sdk-trace-base/build/src/Sampler.d.ts",
- "../../../node_modules/@opentelemetry/core/build/src/baggage/propagation/W3CBaggagePropagator.d.ts",
- "../../../node_modules/@opentelemetry/core/build/src/common/anchored-clock.d.ts",
- "../../../node_modules/@opentelemetry/core/build/src/common/attributes.d.ts",
- "../../../node_modules/@opentelemetry/core/build/src/common/types.d.ts",
- "../../../node_modules/@opentelemetry/core/build/src/common/global-error-handler.d.ts",
- "../../../node_modules/@opentelemetry/core/build/src/common/logging-error-handler.d.ts",
- "../../../node_modules/@opentelemetry/core/build/src/common/time.d.ts",
- "../../../node_modules/@opentelemetry/core/build/src/common/timer-util.d.ts",
- "../../../node_modules/@opentelemetry/core/build/src/ExportResult.d.ts",
- "../../../node_modules/@opentelemetry/core/build/src/baggage/utils.d.ts",
- "../../../node_modules/@opentelemetry/core/build/src/platform/node/environment.d.ts",
- "../../../node_modules/@opentelemetry/core/build/src/common/globalThis.d.ts",
- "../../../node_modules/@opentelemetry/core/build/src/platform/node/sdk-info.d.ts",
- "../../../node_modules/@opentelemetry/core/build/src/platform/node/index.d.ts",
- "../../../node_modules/@opentelemetry/core/build/src/platform/index.d.ts",
- "../../../node_modules/@opentelemetry/core/build/src/propagation/composite.d.ts",
- "../../../node_modules/@opentelemetry/core/build/src/trace/W3CTraceContextPropagator.d.ts",
- "../../../node_modules/@opentelemetry/core/build/src/trace/rpc-metadata.d.ts",
- "../../../node_modules/@opentelemetry/core/build/src/trace/suppress-tracing.d.ts",
- "../../../node_modules/@opentelemetry/core/build/src/trace/TraceState.d.ts",
- "../../../node_modules/@opentelemetry/core/build/src/utils/merge.d.ts",
- "../../../node_modules/@opentelemetry/core/build/src/utils/timeout.d.ts",
- "../../../node_modules/@opentelemetry/core/build/src/utils/url.d.ts",
- "../../../node_modules/@opentelemetry/core/build/src/utils/callback.d.ts",
- "../../../node_modules/@opentelemetry/core/build/src/utils/configuration.d.ts",
- "../../../node_modules/@opentelemetry/core/build/src/internal/exporter.d.ts",
- "../../../node_modules/@opentelemetry/core/build/src/index.d.ts",
- "../../../node_modules/@opentelemetry/sdk-trace-base/build/src/TimedEvent.d.ts",
- "../../../node_modules/@opentelemetry/sdk-trace-base/build/src/export/ReadableSpan.d.ts",
- "../../../node_modules/@opentelemetry/sdk-trace-base/build/src/Span.d.ts",
- "../../../node_modules/@opentelemetry/sdk-trace-base/build/src/SpanProcessor.d.ts",
- "../../../node_modules/@opentelemetry/sdk-trace-base/build/src/types.d.ts",
- "../../../node_modules/@opentelemetry/sdk-trace-base/build/src/BasicTracerProvider.d.ts",
- "../../../node_modules/@opentelemetry/sdk-trace-base/build/src/export/SpanExporter.d.ts",
- "../../../node_modules/@opentelemetry/sdk-trace-base/build/src/export/BatchSpanProcessorBase.d.ts",
- "../../../node_modules/@opentelemetry/sdk-trace-base/build/src/platform/node/export/BatchSpanProcessor.d.ts",
- "../../../node_modules/@opentelemetry/sdk-trace-base/build/src/platform/node/RandomIdGenerator.d.ts",
- "../../../node_modules/@opentelemetry/sdk-trace-base/build/src/platform/node/index.d.ts",
- "../../../node_modules/@opentelemetry/sdk-trace-base/build/src/platform/index.d.ts",
- "../../../node_modules/@opentelemetry/sdk-trace-base/build/src/export/ConsoleSpanExporter.d.ts",
- "../../../node_modules/@opentelemetry/sdk-trace-base/build/src/export/InMemorySpanExporter.d.ts",
- "../../../node_modules/@opentelemetry/sdk-trace-base/build/src/export/SimpleSpanProcessor.d.ts",
- "../../../node_modules/@opentelemetry/sdk-trace-base/build/src/export/NoopSpanProcessor.d.ts",
- "../../../node_modules/@opentelemetry/sdk-trace-base/build/src/sampler/AlwaysOffSampler.d.ts",
- "../../../node_modules/@opentelemetry/sdk-trace-base/build/src/sampler/AlwaysOnSampler.d.ts",
- "../../../node_modules/@opentelemetry/sdk-trace-base/build/src/sampler/ParentBasedSampler.d.ts",
- "../../../node_modules/@opentelemetry/sdk-trace-base/build/src/sampler/TraceIdRatioBasedSampler.d.ts",
- "../../../node_modules/@opentelemetry/sdk-trace-base/build/src/index.d.ts",
- "../../../node_modules/@sentry/vercel-edge/build/types/client.d.ts",
- "../../../node_modules/@sentry/vercel-edge/build/types/transports/index.d.ts",
- "../../../node_modules/@sentry/vercel-edge/build/types/types.d.ts",
- "../../../node_modules/@sentry/vercel-edge/build/types/sdk.d.ts",
- "../../../node_modules/@sentry/vercel-edge/build/types/integrations/wintercg-fetch.d.ts",
- "../../../node_modules/@sentry/vercel-edge/build/types/integrations/tracing/vercelai.d.ts",
- "../../../node_modules/@sentry/vercel-edge/build/types/index.d.ts",
- "../../../node_modules/@sentry/nextjs/build/types/edge/wrapApiHandlerWithSentry.d.ts",
- "../../../node_modules/@sentry/nextjs/build/types/edge/index.d.ts",
- "../../../node_modules/@opentelemetry/api-logs/build/src/types/AnyValue.d.ts",
- "../../../node_modules/@opentelemetry/api-logs/build/src/types/LogRecord.d.ts",
- "../../../node_modules/@opentelemetry/api-logs/build/src/types/Logger.d.ts",
- "../../../node_modules/@opentelemetry/api-logs/build/src/types/LoggerOptions.d.ts",
- "../../../node_modules/@opentelemetry/api-logs/build/src/types/LoggerProvider.d.ts",
- "../../../node_modules/@opentelemetry/api-logs/build/src/NoopLogger.d.ts",
- "../../../node_modules/@opentelemetry/api-logs/build/src/api/logs.d.ts",
- "../../../node_modules/@opentelemetry/api-logs/build/src/index.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation/build/src/types.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation/build/src/types_internal.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation/build/src/autoLoader.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation/build/src/shimmer.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation/build/src/instrumentation.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation/build/src/platform/node/instrumentation.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation/build/src/platform/node/normalize.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation/build/src/platform/node/index.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation/build/src/platform/index.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation/build/src/instrumentationNodeModuleDefinition.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation/build/src/instrumentationNodeModuleFile.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation/build/src/utils.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation/build/src/semconvStability.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation/build/src/index.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-http/build/src/types.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-http/build/src/http.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-http/build/src/index.d.ts",
- "../../../node_modules/@sentry/node/node_modules/@sentry/core/build/types/index.d.ts",
- "../../../node_modules/@sentry/node-core/node_modules/@sentry/core/build/types/index.d.ts",
- "../../../node_modules/@sentry/node-core/build/types/integrations/http/SentryHttpInstrumentation.d.ts",
- "../../../node_modules/@sentry/node-core/build/types/integrations/http/index.d.ts",
- "../../../node_modules/@sentry/opentelemetry/build/types/semanticAttributes.d.ts",
- "../../../node_modules/@sentry/opentelemetry/node_modules/@sentry/core/build/types/index.d.ts",
- "../../../node_modules/@sentry/opentelemetry/build/types/utils/getRequestSpanData.d.ts",
- "../../../node_modules/@sentry/opentelemetry/build/types/types.d.ts",
- "../../../node_modules/@sentry/opentelemetry/build/types/custom/client.d.ts",
- "../../../node_modules/@sentry/opentelemetry/build/types/utils/getSpanKind.d.ts",
- "../../../node_modules/@sentry/opentelemetry/build/types/utils/contextData.d.ts",
- "../../../node_modules/@sentry/opentelemetry/build/types/utils/spanTypes.d.ts",
- "../../../node_modules/@sentry/opentelemetry/build/types/utils/isSentryRequest.d.ts",
- "../../../node_modules/@sentry/opentelemetry/build/types/utils/enhanceDscWithOpenTelemetryRootSpanName.d.ts",
- "../../../node_modules/@sentry/opentelemetry/build/types/utils/getActiveSpan.d.ts",
- "../../../node_modules/@sentry/opentelemetry/build/types/trace.d.ts",
- "../../../node_modules/@sentry/opentelemetry/build/types/utils/suppressTracing.d.ts",
- "../../../node_modules/@sentry/opentelemetry/build/types/setupEventContextTrace.d.ts",
- "../../../node_modules/@sentry/opentelemetry/build/types/asyncContextStrategy.d.ts",
- "../../../node_modules/@sentry/opentelemetry/build/types/contextManager.d.ts",
- "../../../node_modules/@sentry/opentelemetry/build/types/propagator.d.ts",
- "../../../node_modules/@sentry/opentelemetry/build/types/spanProcessor.d.ts",
- "../../../node_modules/@sentry/opentelemetry/build/types/sampler.d.ts",
- "../../../node_modules/@sentry/opentelemetry/build/types/utils/setupCheck.d.ts",
- "../../../node_modules/@sentry/opentelemetry/build/types/index.d.ts",
- "../../../node_modules/@sentry/node-core/build/types/transports/http-module.d.ts",
- "../../../node_modules/@sentry/node-core/build/types/transports/http.d.ts",
- "../../../node_modules/@sentry/node-core/build/types/transports/index.d.ts",
- "../../../node_modules/@sentry/node-core/build/types/types.d.ts",
- "../../../node_modules/@sentry/node-core/build/types/sdk/client.d.ts",
- "../../../node_modules/@sentry/node-core/build/types/integrations/http/httpServerSpansIntegration.d.ts",
- "../../../node_modules/@sentry/node-core/build/types/integrations/http/httpServerIntegration.d.ts",
- "../../../node_modules/@sentry/node-core/build/types/integrations/node-fetch/index.d.ts",
- "../../../node_modules/@sentry/node-core/build/types/integrations/node-fetch/SentryNodeFetchInstrumentation.d.ts",
- "../../../node_modules/@opentelemetry/context-async-hooks/build/src/AbstractAsyncHooksContextManager.d.ts",
- "../../../node_modules/@opentelemetry/context-async-hooks/build/src/AsyncHooksContextManager.d.ts",
- "../../../node_modules/@opentelemetry/context-async-hooks/build/src/AsyncLocalStorageContextManager.d.ts",
- "../../../node_modules/@opentelemetry/context-async-hooks/build/src/index.d.ts",
- "../../../node_modules/@sentry/node-core/build/types/otel/contextManager.d.ts",
- "../../../node_modules/@sentry/node-core/build/types/otel/logger.d.ts",
- "../../../node_modules/@sentry/node-core/build/types/otel/instrument.d.ts",
- "../../../node_modules/@sentry/node-core/build/types/sdk/index.d.ts",
- "../../../node_modules/@sentry/node-core/build/types/sdk/scope.d.ts",
- "../../../node_modules/@sentry/node-core/build/types/utils/ensureIsWrapped.d.ts",
- "../../../node_modules/@sentry/node-core/build/types/integrations/processSession.d.ts",
- "../../../node_modules/@sentry/node-core/build/types/integrations/anr/common.d.ts",
- "../../../node_modules/@sentry/node-core/build/types/integrations/anr/index.d.ts",
- "../../../node_modules/@sentry/node-core/build/types/logs/capture.d.ts",
- "../../../node_modules/@sentry/node-core/build/types/logs/exports.d.ts",
- "../../../node_modules/@sentry/node-core/build/types/integrations/context.d.ts",
- "../../../node_modules/@sentry/node-core/build/types/integrations/contextlines.d.ts",
- "../../../node_modules/@sentry/node-core/build/types/integrations/local-variables/common.d.ts",
- "../../../node_modules/@sentry/node-core/build/types/integrations/local-variables/index.d.ts",
- "../../../node_modules/@sentry/node-core/build/types/integrations/modules.d.ts",
- "../../../node_modules/@sentry/node-core/build/types/integrations/onuncaughtexception.d.ts",
- "../../../node_modules/@sentry/node-core/build/types/integrations/onunhandledrejection.d.ts",
- "../../../node_modules/@sentry/node-core/build/types/integrations/spotlight.d.ts",
- "../../../node_modules/@sentry/node-core/build/types/integrations/systemError.d.ts",
- "../../../node_modules/@sentry/node-core/build/types/integrations/childProcess.d.ts",
- "../../../node_modules/@sentry/node-core/build/types/integrations/winston.d.ts",
- "../../../node_modules/@sentry/node-core/build/types/integrations/pino.d.ts",
- "../../../node_modules/@sentry/node-core/build/types/sdk/api.d.ts",
- "../../../node_modules/@sentry/node-core/build/types/utils/module.d.ts",
- "../../../node_modules/@sentry/node-core/build/types/utils/addOriginToSpan.d.ts",
- "../../../node_modules/@sentry/node-core/build/types/utils/getRequestUrl.d.ts",
- "../../../node_modules/@sentry/node-core/build/types/sdk/esmLoader.d.ts",
- "../../../node_modules/@sentry/node-core/build/types/utils/detection.d.ts",
- "../../../node_modules/@sentry/node-core/build/types/utils/createMissingInstrumentationContext.d.ts",
- "../../../node_modules/@sentry/node-core/build/types/cron/cron.d.ts",
- "../../../node_modules/@sentry/node-core/build/types/cron/node-cron.d.ts",
- "../../../node_modules/@sentry/node-core/build/types/cron/node-schedule.d.ts",
- "../../../node_modules/@sentry/node-core/build/types/cron/index.d.ts",
- "../../../node_modules/@sentry/node-core/build/types/nodeVersion.d.ts",
- "../../../node_modules/@sentry/node-core/build/types/common-exports.d.ts",
- "../../../node_modules/@sentry/node-core/build/types/index.d.ts",
- "../../../node_modules/@sentry/node/build/types/types.d.ts",
- "../../../node_modules/@sentry/node/build/types/integrations/http.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-undici/build/src/types.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-undici/build/src/undici.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-undici/build/src/index.d.ts",
- "../../../node_modules/@sentry/node/build/types/integrations/node-fetch.d.ts",
- "../../../node_modules/@sentry/node/build/types/integrations/fs.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-express/build/src/enums/ExpressLayerType.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-express/build/src/types.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-express/build/src/instrumentation.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-express/build/src/enums/AttributeNames.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-express/build/src/index.d.ts",
- "../../../node_modules/@sentry/node/build/types/integrations/tracing/express.d.ts",
- "../../../node_modules/@sentry/node/build/types/integrations/tracing/fastify/types.d.ts",
- "../../../node_modules/@sentry/node/build/types/integrations/tracing/fastify/v3/types.d.ts",
- "../../../node_modules/@sentry/node/build/types/integrations/tracing/fastify/v3/instrumentation.d.ts",
- "../../../node_modules/@sentry/node/build/types/integrations/tracing/fastify/index.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-graphql/build/src/types.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-graphql/build/src/instrumentation.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-graphql/build/src/index.d.ts",
- "../../../node_modules/@sentry/node/build/types/integrations/tracing/graphql.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-kafkajs/build/src/types.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-kafkajs/build/src/instrumentation.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-kafkajs/build/src/index.d.ts",
- "../../../node_modules/@sentry/node/build/types/integrations/tracing/kafka.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-lru-memoizer/build/src/instrumentation.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-lru-memoizer/build/src/index.d.ts",
- "../../../node_modules/@sentry/node/build/types/integrations/tracing/lrumemoizer.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-mongodb/build/src/types.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-mongodb/build/src/instrumentation.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-mongodb/build/src/index.d.ts",
- "../../../node_modules/@sentry/node/build/types/integrations/tracing/mongo.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-mongoose/build/src/types.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-mongoose/build/src/mongoose.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-mongoose/build/src/index.d.ts",
- "../../../node_modules/@sentry/node/build/types/integrations/tracing/mongoose.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-mysql/build/src/types.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-mysql/build/src/instrumentation.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-mysql/build/src/index.d.ts",
- "../../../node_modules/@sentry/node/build/types/integrations/tracing/mysql.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-mysql2/build/src/types.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-mysql2/build/src/instrumentation.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-mysql2/build/src/index.d.ts",
- "../../../node_modules/@sentry/node/build/types/integrations/tracing/mysql2.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-ioredis/build/src/types.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-ioredis/build/src/instrumentation.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-ioredis/build/src/index.d.ts",
- "../../../node_modules/@sentry/node/build/types/integrations/tracing/redis.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/@opentelemetry/instrumentation-pg/build/src/types.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-pg/build/src/instrumentation.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-pg/build/src/enums/AttributeNames.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-pg/build/src/index.d.ts",
- "../../../node_modules/@sentry/node/build/types/integrations/tracing/postgres.d.ts",
- "../../../node_modules/@sentry/node/build/types/integrations/tracing/postgresjs.d.ts",
- "../../../node_modules/@prisma/instrumentation/node_modules/@opentelemetry/instrumentation/node_modules/@opentelemetry/api-logs/build/src/types/AnyValue.d.ts",
- "../../../node_modules/@prisma/instrumentation/node_modules/@opentelemetry/instrumentation/node_modules/@opentelemetry/api-logs/build/src/types/LogRecord.d.ts",
- "../../../node_modules/@prisma/instrumentation/node_modules/@opentelemetry/instrumentation/node_modules/@opentelemetry/api-logs/build/src/types/Logger.d.ts",
- "../../../node_modules/@prisma/instrumentation/node_modules/@opentelemetry/instrumentation/node_modules/@opentelemetry/api-logs/build/src/types/LoggerOptions.d.ts",
- "../../../node_modules/@prisma/instrumentation/node_modules/@opentelemetry/instrumentation/node_modules/@opentelemetry/api-logs/build/src/types/LoggerProvider.d.ts",
- "../../../node_modules/@prisma/instrumentation/node_modules/@opentelemetry/instrumentation/node_modules/@opentelemetry/api-logs/build/src/NoopLogger.d.ts",
- "../../../node_modules/@prisma/instrumentation/node_modules/@opentelemetry/instrumentation/node_modules/@opentelemetry/api-logs/build/src/NoopLoggerProvider.d.ts",
- "../../../node_modules/@prisma/instrumentation/node_modules/@opentelemetry/instrumentation/node_modules/@opentelemetry/api-logs/build/src/ProxyLogger.d.ts",
- "../../../node_modules/@prisma/instrumentation/node_modules/@opentelemetry/instrumentation/node_modules/@opentelemetry/api-logs/build/src/ProxyLoggerProvider.d.ts",
- "../../../node_modules/@prisma/instrumentation/node_modules/@opentelemetry/instrumentation/node_modules/@opentelemetry/api-logs/build/src/api/logs.d.ts",
- "../../../node_modules/@prisma/instrumentation/node_modules/@opentelemetry/instrumentation/node_modules/@opentelemetry/api-logs/build/src/index.d.ts",
- "../../../node_modules/@prisma/instrumentation/node_modules/@opentelemetry/instrumentation/build/src/types.d.ts",
- "../../../node_modules/@prisma/instrumentation/node_modules/@opentelemetry/instrumentation/build/src/types_internal.d.ts",
- "../../../node_modules/@prisma/instrumentation/node_modules/@opentelemetry/instrumentation/build/src/autoLoader.d.ts",
- "../../../node_modules/@prisma/instrumentation/node_modules/@opentelemetry/instrumentation/build/src/shimmer.d.ts",
- "../../../node_modules/@prisma/instrumentation/node_modules/@opentelemetry/instrumentation/build/src/instrumentation.d.ts",
- "../../../node_modules/@prisma/instrumentation/node_modules/@opentelemetry/instrumentation/build/src/platform/node/instrumentation.d.ts",
- "../../../node_modules/@prisma/instrumentation/node_modules/@opentelemetry/instrumentation/build/src/platform/node/normalize.d.ts",
- "../../../node_modules/@prisma/instrumentation/node_modules/@opentelemetry/instrumentation/build/src/platform/node/index.d.ts",
- "../../../node_modules/@prisma/instrumentation/node_modules/@opentelemetry/instrumentation/build/src/platform/index.d.ts",
- "../../../node_modules/@prisma/instrumentation/node_modules/@opentelemetry/instrumentation/build/src/instrumentationNodeModuleDefinition.d.ts",
- "../../../node_modules/@prisma/instrumentation/node_modules/@opentelemetry/instrumentation/build/src/instrumentationNodeModuleFile.d.ts",
- "../../../node_modules/@prisma/instrumentation/node_modules/@opentelemetry/instrumentation/build/src/utils.d.ts",
- "../../../node_modules/@prisma/instrumentation/node_modules/@opentelemetry/instrumentation/build/src/semconvStability.d.ts",
- "../../../node_modules/@prisma/instrumentation/node_modules/@opentelemetry/instrumentation/build/src/index.d.ts",
- "../../../node_modules/@prisma/instrumentation/dist/index.d.ts",
- "../../../node_modules/@sentry/node/build/types/integrations/tracing/prisma.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-hapi/build/src/instrumentation.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-hapi/build/src/enums/AttributeNames.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-hapi/build/src/index.d.ts",
- "../../../node_modules/@sentry/node/build/types/integrations/tracing/hapi/types.d.ts",
- "../../../node_modules/@sentry/node/build/types/integrations/tracing/hapi/index.d.ts",
- "../../../node_modules/@sentry/node/build/types/integrations/tracing/hono/instrumentation.d.ts",
- "../../../node_modules/@sentry/node/build/types/integrations/tracing/hono/types.d.ts",
- "../../../node_modules/@sentry/node/build/types/integrations/tracing/hono/index.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-koa/build/src/types.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-koa/build/src/instrumentation.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-koa/build/src/enums/AttributeNames.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-koa/build/src/index.d.ts",
- "../../../node_modules/@sentry/node/build/types/integrations/tracing/koa.d.ts",
- "../../../node_modules/@types/connect/index.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-connect/build/src/internal-types.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-connect/build/src/instrumentation.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-connect/build/src/enums/AttributeNames.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-connect/build/src/index.d.ts",
- "../../../node_modules/@sentry/node/build/types/integrations/tracing/connect.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-knex/build/src/types.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-knex/build/src/instrumentation.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-knex/build/src/index.d.ts",
- "../../../node_modules/@sentry/node/build/types/integrations/tracing/knex.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-tedious/build/src/types.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-tedious/build/src/instrumentation.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-tedious/build/src/index.d.ts",
- "../../../node_modules/@sentry/node/build/types/integrations/tracing/tedious.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-generic-pool/build/src/instrumentation.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-generic-pool/build/src/index.d.ts",
- "../../../node_modules/@sentry/node/build/types/integrations/tracing/genericPool.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-dataloader/build/src/types.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-dataloader/build/src/instrumentation.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-dataloader/build/src/index.d.ts",
- "../../../node_modules/@sentry/node/build/types/integrations/tracing/dataloader.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-amqplib/build/src/types.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-amqplib/build/src/amqplib.d.ts",
- "../../../node_modules/@opentelemetry/instrumentation-amqplib/build/src/index.d.ts",
- "../../../node_modules/@sentry/node/build/types/integrations/tracing/amqplib.d.ts",
- "../../../node_modules/@sentry/node/build/types/integrations/tracing/vercelai/instrumentation.d.ts",
- "../../../node_modules/@sentry/node/build/types/integrations/tracing/vercelai/types.d.ts",
- "../../../node_modules/@sentry/node/build/types/integrations/tracing/vercelai/index.d.ts",
- "../../../node_modules/@sentry/node/build/types/integrations/tracing/openai/index.d.ts",
- "../../../node_modules/@sentry/node/build/types/integrations/tracing/anthropic-ai/index.d.ts",
- "../../../node_modules/@sentry/node/build/types/integrations/tracing/google-genai/index.d.ts",
- "../../../node_modules/@sentry/node/build/types/integrations/tracing/langchain/index.d.ts",
- "../../../node_modules/@sentry/node/build/types/integrations/tracing/langgraph/index.d.ts",
- "../../../node_modules/@sentry/node/build/types/integrations/featureFlagShims/launchDarkly.d.ts",
- "../../../node_modules/@sentry/node/build/types/integrations/featureFlagShims/openFeature.d.ts",
- "../../../node_modules/@sentry/node/build/types/integrations/featureFlagShims/statsig.d.ts",
- "../../../node_modules/@sentry/node/build/types/integrations/featureFlagShims/unleash.d.ts",
- "../../../node_modules/@sentry/node/build/types/integrations/featureFlagShims/growthbook.d.ts",
- "../../../node_modules/@sentry/node/build/types/integrations/featureFlagShims/index.d.ts",
- "../../../node_modules/@sentry/node/build/types/integrations/tracing/firebase/otel/types.d.ts",
- "../../../node_modules/@sentry/node/build/types/integrations/tracing/firebase/otel/firebaseInstrumentation.d.ts",
- "../../../node_modules/@sentry/node/build/types/integrations/tracing/firebase/otel/index.d.ts",
- "../../../node_modules/@sentry/node/build/types/integrations/tracing/firebase/firebase.d.ts",
- "../../../node_modules/@sentry/node/build/types/integrations/tracing/firebase/index.d.ts",
- "../../../node_modules/@sentry/node/build/types/sdk/index.d.ts",
- "../../../node_modules/@sentry/node/build/types/sdk/initOtel.d.ts",
- "../../../node_modules/@sentry/node/build/types/integrations/tracing/index.d.ts",
- "../../../node_modules/@sentry/node/build/types/index.d.ts",
- "../../../node_modules/@sentry/nextjs/build/types/common/pages-router-instrumentation/wrapApiHandlerWithSentry.d.ts",
- "../../../node_modules/@sentry/nextjs/build/types/server/index.d.ts",
- "../../../node_modules/magic-string/dist/magic-string.es.d.mts",
- "../../../node_modules/@sentry/bundler-plugin-core/dist/types/utils.d.ts",
- "../../../node_modules/@sentry/bundler-plugin-core/dist/types/glob.d.ts",
- "../../../node_modules/@sentry/bundler-plugin-core/dist/types/logger.d.ts",
- "../../../node_modules/@sentry/bundler-plugin-core/dist/types/types.d.ts",
- "../../../node_modules/@sentry/bundler-plugin-core/dist/types/options-mapping.d.ts",
- "../../../node_modules/@sentry/bundler-plugin-core/dist/types/build-plugin-manager.d.ts",
- "../../../node_modules/@sentry/bundler-plugin-core/dist/types/debug-id-upload.d.ts",
- "../../../node_modules/@sentry/bundler-plugin-core/dist/types/index.d.ts",
- "../../../node_modules/@sentry/webpack-plugin/dist/types/webpack4and5.d.ts",
- "../../../node_modules/@sentry/webpack-plugin/dist/types/index.d.ts",
- "../../../node_modules/@sentry/nextjs/build/types/config/types.d.ts",
- "../../../node_modules/@sentry/nextjs/build/types/config/withSentryConfig/constants.d.ts",
- "../../../node_modules/@sentry/nextjs/build/types/config/withSentryConfig/index.d.ts",
- "../../../node_modules/@sentry/nextjs/build/types/config/index.d.ts",
- "../../../node_modules/@sentry/nextjs/build/types/index.types.d.ts",
- "../../../node_modules/jiti/lib/types.d.ts",
- "../../../node_modules/jiti/lib/jiti.d.mts",
- "../../../node_modules/next-plausible/dist/lib/usePlausible.d.ts",
- "../../../node_modules/next-plausible/dist/lib/common.d.ts",
- "../../../node_modules/next-plausible/dist/lib/withPlausibleProxy.d.ts",
- "../../../node_modules/next-plausible/dist/lib/PlausibleProvider.d.ts",
- "../../../node_modules/next-plausible/dist/index.d.ts",
- "../next.config.js",
- "../../../tools/tailwind/postcss-config.js",
- "../postcss.config.js",
- "../../../node_modules/@t3-oss/env-core/dist/standard.d.ts",
- "../../../node_modules/@t3-oss/env-core/dist/index.d.ts",
- "../../../node_modules/@t3-oss/env-nextjs/dist/index.d.ts",
- "../../../node_modules/zod/v4/core/json-schema.d.cts",
- "../../../node_modules/zod/v4/core/standard-schema.d.cts",
- "../../../node_modules/zod/v4/core/registries.d.cts",
- "../../../node_modules/zod/v4/core/to-json-schema.d.cts",
- "../../../node_modules/zod/v4/core/util.d.cts",
- "../../../node_modules/zod/v4/core/versions.d.cts",
- "../../../node_modules/zod/v4/core/schemas.d.cts",
- "../../../node_modules/zod/v4/core/checks.d.cts",
- "../../../node_modules/zod/v4/core/errors.d.cts",
- "../../../node_modules/zod/v4/core/core.d.cts",
- "../../../node_modules/zod/v4/core/parse.d.cts",
- "../../../node_modules/zod/v4/core/regexes.d.cts",
- "../../../node_modules/zod/v4/locales/ar.d.cts",
- "../../../node_modules/zod/v4/locales/az.d.cts",
- "../../../node_modules/zod/v4/locales/be.d.cts",
- "../../../node_modules/zod/v4/locales/bg.d.cts",
- "../../../node_modules/zod/v4/locales/ca.d.cts",
- "../../../node_modules/zod/v4/locales/cs.d.cts",
- "../../../node_modules/zod/v4/locales/da.d.cts",
- "../../../node_modules/zod/v4/locales/de.d.cts",
- "../../../node_modules/zod/v4/locales/en.d.cts",
- "../../../node_modules/zod/v4/locales/eo.d.cts",
- "../../../node_modules/zod/v4/locales/es.d.cts",
- "../../../node_modules/zod/v4/locales/fa.d.cts",
- "../../../node_modules/zod/v4/locales/fi.d.cts",
- "../../../node_modules/zod/v4/locales/fr.d.cts",
- "../../../node_modules/zod/v4/locales/fr-CA.d.cts",
- "../../../node_modules/zod/v4/locales/he.d.cts",
- "../../../node_modules/zod/v4/locales/hu.d.cts",
- "../../../node_modules/zod/v4/locales/hy.d.cts",
- "../../../node_modules/zod/v4/locales/id.d.cts",
- "../../../node_modules/zod/v4/locales/is.d.cts",
- "../../../node_modules/zod/v4/locales/it.d.cts",
- "../../../node_modules/zod/v4/locales/ja.d.cts",
- "../../../node_modules/zod/v4/locales/ka.d.cts",
- "../../../node_modules/zod/v4/locales/kh.d.cts",
- "../../../node_modules/zod/v4/locales/km.d.cts",
- "../../../node_modules/zod/v4/locales/ko.d.cts",
- "../../../node_modules/zod/v4/locales/lt.d.cts",
- "../../../node_modules/zod/v4/locales/mk.d.cts",
- "../../../node_modules/zod/v4/locales/ms.d.cts",
- "../../../node_modules/zod/v4/locales/nl.d.cts",
- "../../../node_modules/zod/v4/locales/no.d.cts",
- "../../../node_modules/zod/v4/locales/ota.d.cts",
- "../../../node_modules/zod/v4/locales/ps.d.cts",
- "../../../node_modules/zod/v4/locales/pl.d.cts",
- "../../../node_modules/zod/v4/locales/pt.d.cts",
- "../../../node_modules/zod/v4/locales/ru.d.cts",
- "../../../node_modules/zod/v4/locales/sl.d.cts",
- "../../../node_modules/zod/v4/locales/sv.d.cts",
- "../../../node_modules/zod/v4/locales/ta.d.cts",
- "../../../node_modules/zod/v4/locales/th.d.cts",
- "../../../node_modules/zod/v4/locales/tr.d.cts",
- "../../../node_modules/zod/v4/locales/ua.d.cts",
- "../../../node_modules/zod/v4/locales/uk.d.cts",
- "../../../node_modules/zod/v4/locales/ur.d.cts",
- "../../../node_modules/zod/v4/locales/uz.d.cts",
- "../../../node_modules/zod/v4/locales/vi.d.cts",
- "../../../node_modules/zod/v4/locales/zh-CN.d.cts",
- "../../../node_modules/zod/v4/locales/zh-TW.d.cts",
- "../../../node_modules/zod/v4/locales/yo.d.cts",
- "../../../node_modules/zod/v4/locales/index.d.cts",
- "../../../node_modules/zod/v4/core/doc.d.cts",
- "../../../node_modules/zod/v4/core/api.d.cts",
- "../../../node_modules/zod/v4/core/json-schema-processors.d.cts",
- "../../../node_modules/zod/v4/core/json-schema-generator.d.cts",
- "../../../node_modules/zod/v4/core/index.d.cts",
- "../../../node_modules/zod/v4/classic/errors.d.cts",
- "../../../node_modules/zod/v4/classic/parse.d.cts",
- "../../../node_modules/zod/v4/classic/schemas.d.cts",
- "../../../node_modules/zod/v4/classic/checks.d.cts",
- "../../../node_modules/zod/v4/classic/compat.d.cts",
- "../../../node_modules/zod/v4/classic/from-json-schema.d.cts",
- "../../../node_modules/zod/v4/classic/iso.d.cts",
- "../../../node_modules/zod/v4/classic/coerce.d.cts",
- "../../../node_modules/zod/v4/classic/external.d.cts",
- "../../../node_modules/zod/v4/classic/index.d.cts",
- "../../../node_modules/zod/v4/index.d.cts",
- "../src/env.ts",
- "../src/instrumentation-client.ts",
- "../src/sentry.server.config.ts",
- "../src/instrumentation.ts",
- "../src/lib/proxy/ban-sus-ips.ts",
- "../../../node_modules/@convex-dev/auth/dist/nextjs/server/routeMatcher.d.ts",
- "../../../node_modules/@convex-dev/auth/dist/nextjs/server/index.d.ts",
- "../src/proxy.ts",
- "../../../node_modules/next/dist/compiled/@next/font/dist/types.d.ts",
- "../../../node_modules/next/dist/compiled/@next/font/dist/google/index.d.ts",
- "../../../node_modules/next/font/google/index.d.ts",
- "../src/components/layout/footer/index.tsx",
- "../../../node_modules/lucide-react/dist/lucide-react.d.ts",
- "../../../node_modules/clsx/clsx.d.mts",
- "../../../node_modules/class-variance-authority/dist/types.d.ts",
- "../../../node_modules/class-variance-authority/dist/index.d.ts",
- "../../../node_modules/tailwind-merge/dist/types.d.ts",
- "../../../node_modules/@radix-ui/react-accessible-icon/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-context/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-primitive/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-collapsible/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-accordion/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-dismissable-layer/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-focus-scope/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-portal/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-dialog/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-alert-dialog/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-aspect-ratio/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-avatar/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-checkbox/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-arrow/dist/index.d.mts",
- "../../../node_modules/@radix-ui/rect/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-popper/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-roving-focus/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-menu/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-context-menu/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-direction/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-dropdown-menu/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-label/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-form/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-hover-card/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-menubar/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-visually-hidden/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-navigation-menu/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-one-time-password-field/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-password-toggle-field/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-popover/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-progress/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-radio-group/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-scroll-area/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-select/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-separator/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-slider/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-slot/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-switch/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-tabs/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-toast/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-toggle/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-toggle-group/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-toolbar/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-tooltip/dist/index.d.mts",
- "../../../node_modules/radix-ui/dist/index.d.mts",
- "../../../packages/ui/src/accordion.tsx",
- "../../../packages/ui/src/alert.tsx",
- "../../../packages/ui/src/alert-dialog.tsx",
- "../../../packages/ui/src/aspect-ratio.tsx",
- "../../../packages/ui/src/avatar.tsx",
- "../../../packages/ui/src/badge.tsx",
- "../../../packages/ui/src/based-avatar.tsx",
- "../../../packages/ui/src/based-progress.tsx",
- "../../../packages/ui/src/breadcrumb.tsx",
- "../../../packages/ui/src/button.tsx",
- "../../../packages/ui/src/button-group.tsx",
- "../../../node_modules/@date-fns/tz/constants/index.d.ts",
- "../../../node_modules/@date-fns/tz/date/index.d.ts",
- "../../../node_modules/@date-fns/tz/date/mini.d.ts",
- "../../../node_modules/@date-fns/tz/tz/index.d.ts",
- "../../../node_modules/@date-fns/tz/tzOffset/index.d.ts",
- "../../../node_modules/@date-fns/tz/tzScan/index.d.ts",
- "../../../node_modules/@date-fns/tz/tzName/index.d.ts",
- "../../../node_modules/@date-fns/tz/index.d.ts",
- "../../../node_modules/date-fns/constants.d.ts",
- "../../../node_modules/date-fns/locale/types.d.ts",
- "../../../node_modules/date-fns/fp/types.d.ts",
- "../../../node_modules/date-fns/types.d.ts",
- "../../../node_modules/date-fns/add.d.ts",
- "../../../node_modules/date-fns/addBusinessDays.d.ts",
- "../../../node_modules/date-fns/addDays.d.ts",
- "../../../node_modules/date-fns/addHours.d.ts",
- "../../../node_modules/date-fns/addISOWeekYears.d.ts",
- "../../../node_modules/date-fns/addMilliseconds.d.ts",
- "../../../node_modules/date-fns/addMinutes.d.ts",
- "../../../node_modules/date-fns/addMonths.d.ts",
- "../../../node_modules/date-fns/addQuarters.d.ts",
- "../../../node_modules/date-fns/addSeconds.d.ts",
- "../../../node_modules/date-fns/addWeeks.d.ts",
- "../../../node_modules/date-fns/addYears.d.ts",
- "../../../node_modules/date-fns/areIntervalsOverlapping.d.ts",
- "../../../node_modules/date-fns/clamp.d.ts",
- "../../../node_modules/date-fns/closestIndexTo.d.ts",
- "../../../node_modules/date-fns/closestTo.d.ts",
- "../../../node_modules/date-fns/compareAsc.d.ts",
- "../../../node_modules/date-fns/compareDesc.d.ts",
- "../../../node_modules/date-fns/constructFrom.d.ts",
- "../../../node_modules/date-fns/constructNow.d.ts",
- "../../../node_modules/date-fns/daysToWeeks.d.ts",
- "../../../node_modules/date-fns/differenceInBusinessDays.d.ts",
- "../../../node_modules/date-fns/differenceInCalendarDays.d.ts",
- "../../../node_modules/date-fns/differenceInCalendarISOWeekYears.d.ts",
- "../../../node_modules/date-fns/differenceInCalendarISOWeeks.d.ts",
- "../../../node_modules/date-fns/differenceInCalendarMonths.d.ts",
- "../../../node_modules/date-fns/differenceInCalendarQuarters.d.ts",
- "../../../node_modules/date-fns/differenceInCalendarWeeks.d.ts",
- "../../../node_modules/date-fns/differenceInCalendarYears.d.ts",
- "../../../node_modules/date-fns/differenceInDays.d.ts",
- "../../../node_modules/date-fns/differenceInHours.d.ts",
- "../../../node_modules/date-fns/differenceInISOWeekYears.d.ts",
- "../../../node_modules/date-fns/differenceInMilliseconds.d.ts",
- "../../../node_modules/date-fns/differenceInMinutes.d.ts",
- "../../../node_modules/date-fns/differenceInMonths.d.ts",
- "../../../node_modules/date-fns/differenceInQuarters.d.ts",
- "../../../node_modules/date-fns/differenceInSeconds.d.ts",
- "../../../node_modules/date-fns/differenceInWeeks.d.ts",
- "../../../node_modules/date-fns/differenceInYears.d.ts",
- "../../../node_modules/date-fns/eachDayOfInterval.d.ts",
- "../../../node_modules/date-fns/eachHourOfInterval.d.ts",
- "../../../node_modules/date-fns/eachMinuteOfInterval.d.ts",
- "../../../node_modules/date-fns/eachMonthOfInterval.d.ts",
- "../../../node_modules/date-fns/eachQuarterOfInterval.d.ts",
- "../../../node_modules/date-fns/eachWeekOfInterval.d.ts",
- "../../../node_modules/date-fns/eachWeekendOfInterval.d.ts",
- "../../../node_modules/date-fns/eachWeekendOfMonth.d.ts",
- "../../../node_modules/date-fns/eachWeekendOfYear.d.ts",
- "../../../node_modules/date-fns/eachYearOfInterval.d.ts",
- "../../../node_modules/date-fns/endOfDay.d.ts",
- "../../../node_modules/date-fns/endOfDecade.d.ts",
- "../../../node_modules/date-fns/endOfHour.d.ts",
- "../../../node_modules/date-fns/endOfISOWeek.d.ts",
- "../../../node_modules/date-fns/endOfISOWeekYear.d.ts",
- "../../../node_modules/date-fns/endOfMinute.d.ts",
- "../../../node_modules/date-fns/endOfMonth.d.ts",
- "../../../node_modules/date-fns/endOfQuarter.d.ts",
- "../../../node_modules/date-fns/endOfSecond.d.ts",
- "../../../node_modules/date-fns/endOfToday.d.ts",
- "../../../node_modules/date-fns/endOfTomorrow.d.ts",
- "../../../node_modules/date-fns/endOfWeek.d.ts",
- "../../../node_modules/date-fns/endOfYear.d.ts",
- "../../../node_modules/date-fns/endOfYesterday.d.ts",
- "../../../node_modules/date-fns/_lib/format/formatters.d.ts",
- "../../../node_modules/date-fns/_lib/format/longFormatters.d.ts",
- "../../../node_modules/date-fns/format.d.ts",
- "../../../node_modules/date-fns/formatDistance.d.ts",
- "../../../node_modules/date-fns/formatDistanceStrict.d.ts",
- "../../../node_modules/date-fns/formatDistanceToNow.d.ts",
- "../../../node_modules/date-fns/formatDistanceToNowStrict.d.ts",
- "../../../node_modules/date-fns/formatDuration.d.ts",
- "../../../node_modules/date-fns/formatISO.d.ts",
- "../../../node_modules/date-fns/formatISO9075.d.ts",
- "../../../node_modules/date-fns/formatISODuration.d.ts",
- "../../../node_modules/date-fns/formatRFC3339.d.ts",
- "../../../node_modules/date-fns/formatRFC7231.d.ts",
- "../../../node_modules/date-fns/formatRelative.d.ts",
- "../../../node_modules/date-fns/fromUnixTime.d.ts",
- "../../../node_modules/date-fns/getDate.d.ts",
- "../../../node_modules/date-fns/getDay.d.ts",
- "../../../node_modules/date-fns/getDayOfYear.d.ts",
- "../../../node_modules/date-fns/getDaysInMonth.d.ts",
- "../../../node_modules/date-fns/getDaysInYear.d.ts",
- "../../../node_modules/date-fns/getDecade.d.ts",
- "../../../node_modules/date-fns/_lib/defaultOptions.d.ts",
- "../../../node_modules/date-fns/getDefaultOptions.d.ts",
- "../../../node_modules/date-fns/getHours.d.ts",
- "../../../node_modules/date-fns/getISODay.d.ts",
- "../../../node_modules/date-fns/getISOWeek.d.ts",
- "../../../node_modules/date-fns/getISOWeekYear.d.ts",
- "../../../node_modules/date-fns/getISOWeeksInYear.d.ts",
- "../../../node_modules/date-fns/getMilliseconds.d.ts",
- "../../../node_modules/date-fns/getMinutes.d.ts",
- "../../../node_modules/date-fns/getMonth.d.ts",
- "../../../node_modules/date-fns/getOverlappingDaysInIntervals.d.ts",
- "../../../node_modules/date-fns/getQuarter.d.ts",
- "../../../node_modules/date-fns/getSeconds.d.ts",
- "../../../node_modules/date-fns/getTime.d.ts",
- "../../../node_modules/date-fns/getUnixTime.d.ts",
- "../../../node_modules/date-fns/getWeek.d.ts",
- "../../../node_modules/date-fns/getWeekOfMonth.d.ts",
- "../../../node_modules/date-fns/getWeekYear.d.ts",
- "../../../node_modules/date-fns/getWeeksInMonth.d.ts",
- "../../../node_modules/date-fns/getYear.d.ts",
- "../../../node_modules/date-fns/hoursToMilliseconds.d.ts",
- "../../../node_modules/date-fns/hoursToMinutes.d.ts",
- "../../../node_modules/date-fns/hoursToSeconds.d.ts",
- "../../../node_modules/date-fns/interval.d.ts",
- "../../../node_modules/date-fns/intervalToDuration.d.ts",
- "../../../node_modules/date-fns/intlFormat.d.ts",
- "../../../node_modules/date-fns/intlFormatDistance.d.ts",
- "../../../node_modules/date-fns/isAfter.d.ts",
- "../../../node_modules/date-fns/isBefore.d.ts",
- "../../../node_modules/date-fns/isDate.d.ts",
- "../../../node_modules/date-fns/isEqual.d.ts",
- "../../../node_modules/date-fns/isExists.d.ts",
- "../../../node_modules/date-fns/isFirstDayOfMonth.d.ts",
- "../../../node_modules/date-fns/isFriday.d.ts",
- "../../../node_modules/date-fns/isFuture.d.ts",
- "../../../node_modules/date-fns/isLastDayOfMonth.d.ts",
- "../../../node_modules/date-fns/isLeapYear.d.ts",
- "../../../node_modules/date-fns/isMatch.d.ts",
- "../../../node_modules/date-fns/isMonday.d.ts",
- "../../../node_modules/date-fns/isPast.d.ts",
- "../../../node_modules/date-fns/isSameDay.d.ts",
- "../../../node_modules/date-fns/isSameHour.d.ts",
- "../../../node_modules/date-fns/isSameISOWeek.d.ts",
- "../../../node_modules/date-fns/isSameISOWeekYear.d.ts",
- "../../../node_modules/date-fns/isSameMinute.d.ts",
- "../../../node_modules/date-fns/isSameMonth.d.ts",
- "../../../node_modules/date-fns/isSameQuarter.d.ts",
- "../../../node_modules/date-fns/isSameSecond.d.ts",
- "../../../node_modules/date-fns/isSameWeek.d.ts",
- "../../../node_modules/date-fns/isSameYear.d.ts",
- "../../../node_modules/date-fns/isSaturday.d.ts",
- "../../../node_modules/date-fns/isSunday.d.ts",
- "../../../node_modules/date-fns/isThisHour.d.ts",
- "../../../node_modules/date-fns/isThisISOWeek.d.ts",
- "../../../node_modules/date-fns/isThisMinute.d.ts",
- "../../../node_modules/date-fns/isThisMonth.d.ts",
- "../../../node_modules/date-fns/isThisQuarter.d.ts",
- "../../../node_modules/date-fns/isThisSecond.d.ts",
- "../../../node_modules/date-fns/isThisWeek.d.ts",
- "../../../node_modules/date-fns/isThisYear.d.ts",
- "../../../node_modules/date-fns/isThursday.d.ts",
- "../../../node_modules/date-fns/isToday.d.ts",
- "../../../node_modules/date-fns/isTomorrow.d.ts",
- "../../../node_modules/date-fns/isTuesday.d.ts",
- "../../../node_modules/date-fns/isValid.d.ts",
- "../../../node_modules/date-fns/isWednesday.d.ts",
- "../../../node_modules/date-fns/isWeekend.d.ts",
- "../../../node_modules/date-fns/isWithinInterval.d.ts",
- "../../../node_modules/date-fns/isYesterday.d.ts",
- "../../../node_modules/date-fns/lastDayOfDecade.d.ts",
- "../../../node_modules/date-fns/lastDayOfISOWeek.d.ts",
- "../../../node_modules/date-fns/lastDayOfISOWeekYear.d.ts",
- "../../../node_modules/date-fns/lastDayOfMonth.d.ts",
- "../../../node_modules/date-fns/lastDayOfQuarter.d.ts",
- "../../../node_modules/date-fns/lastDayOfWeek.d.ts",
- "../../../node_modules/date-fns/lastDayOfYear.d.ts",
- "../../../node_modules/date-fns/_lib/format/lightFormatters.d.ts",
- "../../../node_modules/date-fns/lightFormat.d.ts",
- "../../../node_modules/date-fns/max.d.ts",
- "../../../node_modules/date-fns/milliseconds.d.ts",
- "../../../node_modules/date-fns/millisecondsToHours.d.ts",
- "../../../node_modules/date-fns/millisecondsToMinutes.d.ts",
- "../../../node_modules/date-fns/millisecondsToSeconds.d.ts",
- "../../../node_modules/date-fns/min.d.ts",
- "../../../node_modules/date-fns/minutesToHours.d.ts",
- "../../../node_modules/date-fns/minutesToMilliseconds.d.ts",
- "../../../node_modules/date-fns/minutesToSeconds.d.ts",
- "../../../node_modules/date-fns/monthsToQuarters.d.ts",
- "../../../node_modules/date-fns/monthsToYears.d.ts",
- "../../../node_modules/date-fns/nextDay.d.ts",
- "../../../node_modules/date-fns/nextFriday.d.ts",
- "../../../node_modules/date-fns/nextMonday.d.ts",
- "../../../node_modules/date-fns/nextSaturday.d.ts",
- "../../../node_modules/date-fns/nextSunday.d.ts",
- "../../../node_modules/date-fns/nextThursday.d.ts",
- "../../../node_modules/date-fns/nextTuesday.d.ts",
- "../../../node_modules/date-fns/nextWednesday.d.ts",
- "../../../node_modules/date-fns/parse/_lib/types.d.ts",
- "../../../node_modules/date-fns/parse/_lib/Setter.d.ts",
- "../../../node_modules/date-fns/parse/_lib/Parser.d.ts",
- "../../../node_modules/date-fns/parse/_lib/parsers.d.ts",
- "../../../node_modules/date-fns/parse.d.ts",
- "../../../node_modules/date-fns/parseISO.d.ts",
- "../../../node_modules/date-fns/parseJSON.d.ts",
- "../../../node_modules/date-fns/previousDay.d.ts",
- "../../../node_modules/date-fns/previousFriday.d.ts",
- "../../../node_modules/date-fns/previousMonday.d.ts",
- "../../../node_modules/date-fns/previousSaturday.d.ts",
- "../../../node_modules/date-fns/previousSunday.d.ts",
- "../../../node_modules/date-fns/previousThursday.d.ts",
- "../../../node_modules/date-fns/previousTuesday.d.ts",
- "../../../node_modules/date-fns/previousWednesday.d.ts",
- "../../../node_modules/date-fns/quartersToMonths.d.ts",
- "../../../node_modules/date-fns/quartersToYears.d.ts",
- "../../../node_modules/date-fns/roundToNearestHours.d.ts",
- "../../../node_modules/date-fns/roundToNearestMinutes.d.ts",
- "../../../node_modules/date-fns/secondsToHours.d.ts",
- "../../../node_modules/date-fns/secondsToMilliseconds.d.ts",
- "../../../node_modules/date-fns/secondsToMinutes.d.ts",
- "../../../node_modules/date-fns/set.d.ts",
- "../../../node_modules/date-fns/setDate.d.ts",
- "../../../node_modules/date-fns/setDay.d.ts",
- "../../../node_modules/date-fns/setDayOfYear.d.ts",
- "../../../node_modules/date-fns/setDefaultOptions.d.ts",
- "../../../node_modules/date-fns/setHours.d.ts",
- "../../../node_modules/date-fns/setISODay.d.ts",
- "../../../node_modules/date-fns/setISOWeek.d.ts",
- "../../../node_modules/date-fns/setISOWeekYear.d.ts",
- "../../../node_modules/date-fns/setMilliseconds.d.ts",
- "../../../node_modules/date-fns/setMinutes.d.ts",
- "../../../node_modules/date-fns/setMonth.d.ts",
- "../../../node_modules/date-fns/setQuarter.d.ts",
- "../../../node_modules/date-fns/setSeconds.d.ts",
- "../../../node_modules/date-fns/setWeek.d.ts",
- "../../../node_modules/date-fns/setWeekYear.d.ts",
- "../../../node_modules/date-fns/setYear.d.ts",
- "../../../node_modules/date-fns/startOfDay.d.ts",
- "../../../node_modules/date-fns/startOfDecade.d.ts",
- "../../../node_modules/date-fns/startOfHour.d.ts",
- "../../../node_modules/date-fns/startOfISOWeek.d.ts",
- "../../../node_modules/date-fns/startOfISOWeekYear.d.ts",
- "../../../node_modules/date-fns/startOfMinute.d.ts",
- "../../../node_modules/date-fns/startOfMonth.d.ts",
- "../../../node_modules/date-fns/startOfQuarter.d.ts",
- "../../../node_modules/date-fns/startOfSecond.d.ts",
- "../../../node_modules/date-fns/startOfToday.d.ts",
- "../../../node_modules/date-fns/startOfTomorrow.d.ts",
- "../../../node_modules/date-fns/startOfWeek.d.ts",
- "../../../node_modules/date-fns/startOfWeekYear.d.ts",
- "../../../node_modules/date-fns/startOfYear.d.ts",
- "../../../node_modules/date-fns/startOfYesterday.d.ts",
- "../../../node_modules/date-fns/sub.d.ts",
- "../../../node_modules/date-fns/subBusinessDays.d.ts",
- "../../../node_modules/date-fns/subDays.d.ts",
- "../../../node_modules/date-fns/subHours.d.ts",
- "../../../node_modules/date-fns/subISOWeekYears.d.ts",
- "../../../node_modules/date-fns/subMilliseconds.d.ts",
- "../../../node_modules/date-fns/subMinutes.d.ts",
- "../../../node_modules/date-fns/subMonths.d.ts",
- "../../../node_modules/date-fns/subQuarters.d.ts",
- "../../../node_modules/date-fns/subSeconds.d.ts",
- "../../../node_modules/date-fns/subWeeks.d.ts",
- "../../../node_modules/date-fns/subYears.d.ts",
- "../../../node_modules/date-fns/toDate.d.ts",
- "../../../node_modules/date-fns/transpose.d.ts",
- "../../../node_modules/date-fns/weeksToDays.d.ts",
- "../../../node_modules/date-fns/yearsToDays.d.ts",
- "../../../node_modules/date-fns/yearsToMonths.d.ts",
- "../../../node_modules/date-fns/yearsToQuarters.d.ts",
- "../../../node_modules/date-fns/index.d.ts",
- "../../../node_modules/date-fns/locale/af.d.ts",
- "../../../node_modules/date-fns/locale/ar.d.ts",
- "../../../node_modules/date-fns/locale/ar-DZ.d.ts",
- "../../../node_modules/date-fns/locale/ar-EG.d.ts",
- "../../../node_modules/date-fns/locale/ar-MA.d.ts",
- "../../../node_modules/date-fns/locale/ar-SA.d.ts",
- "../../../node_modules/date-fns/locale/ar-TN.d.ts",
- "../../../node_modules/date-fns/locale/az.d.ts",
- "../../../node_modules/date-fns/locale/be.d.ts",
- "../../../node_modules/date-fns/locale/be-tarask.d.ts",
- "../../../node_modules/date-fns/locale/bg.d.ts",
- "../../../node_modules/date-fns/locale/bn.d.ts",
- "../../../node_modules/date-fns/locale/bs.d.ts",
- "../../../node_modules/date-fns/locale/ca.d.ts",
- "../../../node_modules/date-fns/locale/ckb.d.ts",
- "../../../node_modules/date-fns/locale/cs.d.ts",
- "../../../node_modules/date-fns/locale/cy.d.ts",
- "../../../node_modules/date-fns/locale/da.d.ts",
- "../../../node_modules/date-fns/locale/de.d.ts",
- "../../../node_modules/date-fns/locale/de-AT.d.ts",
- "../../../node_modules/date-fns/locale/el.d.ts",
- "../../../node_modules/date-fns/locale/en-AU.d.ts",
- "../../../node_modules/date-fns/locale/en-CA.d.ts",
- "../../../node_modules/date-fns/locale/en-GB.d.ts",
- "../../../node_modules/date-fns/locale/en-IE.d.ts",
- "../../../node_modules/date-fns/locale/en-IN.d.ts",
- "../../../node_modules/date-fns/locale/en-NZ.d.ts",
- "../../../node_modules/date-fns/locale/en-US.d.ts",
- "../../../node_modules/date-fns/locale/en-ZA.d.ts",
- "../../../node_modules/date-fns/locale/eo.d.ts",
- "../../../node_modules/date-fns/locale/es.d.ts",
- "../../../node_modules/date-fns/locale/et.d.ts",
- "../../../node_modules/date-fns/locale/eu.d.ts",
- "../../../node_modules/date-fns/locale/fa-IR.d.ts",
- "../../../node_modules/date-fns/locale/fi.d.ts",
- "../../../node_modules/date-fns/locale/fr.d.ts",
- "../../../node_modules/date-fns/locale/fr-CA.d.ts",
- "../../../node_modules/date-fns/locale/fr-CH.d.ts",
- "../../../node_modules/date-fns/locale/fy.d.ts",
- "../../../node_modules/date-fns/locale/gd.d.ts",
- "../../../node_modules/date-fns/locale/gl.d.ts",
- "../../../node_modules/date-fns/locale/gu.d.ts",
- "../../../node_modules/date-fns/locale/he.d.ts",
- "../../../node_modules/date-fns/locale/hi.d.ts",
- "../../../node_modules/date-fns/locale/hr.d.ts",
- "../../../node_modules/date-fns/locale/ht.d.ts",
- "../../../node_modules/date-fns/locale/hu.d.ts",
- "../../../node_modules/date-fns/locale/hy.d.ts",
- "../../../node_modules/date-fns/locale/id.d.ts",
- "../../../node_modules/date-fns/locale/is.d.ts",
- "../../../node_modules/date-fns/locale/it.d.ts",
- "../../../node_modules/date-fns/locale/it-CH.d.ts",
- "../../../node_modules/date-fns/locale/ja.d.ts",
- "../../../node_modules/date-fns/locale/ja-Hira.d.ts",
- "../../../node_modules/date-fns/locale/ka.d.ts",
- "../../../node_modules/date-fns/locale/kk.d.ts",
- "../../../node_modules/date-fns/locale/km.d.ts",
- "../../../node_modules/date-fns/locale/kn.d.ts",
- "../../../node_modules/date-fns/locale/ko.d.ts",
- "../../../node_modules/date-fns/locale/lb.d.ts",
- "../../../node_modules/date-fns/locale/lt.d.ts",
- "../../../node_modules/date-fns/locale/lv.d.ts",
- "../../../node_modules/date-fns/locale/mk.d.ts",
- "../../../node_modules/date-fns/locale/mn.d.ts",
- "../../../node_modules/date-fns/locale/ms.d.ts",
- "../../../node_modules/date-fns/locale/mt.d.ts",
- "../../../node_modules/date-fns/locale/nb.d.ts",
- "../../../node_modules/date-fns/locale/nl.d.ts",
- "../../../node_modules/date-fns/locale/nl-BE.d.ts",
- "../../../node_modules/date-fns/locale/nn.d.ts",
- "../../../node_modules/date-fns/locale/oc.d.ts",
- "../../../node_modules/date-fns/locale/pl.d.ts",
- "../../../node_modules/date-fns/locale/pt.d.ts",
- "../../../node_modules/date-fns/locale/pt-BR.d.ts",
- "../../../node_modules/date-fns/locale/ro.d.ts",
- "../../../node_modules/date-fns/locale/ru.d.ts",
- "../../../node_modules/date-fns/locale/se.d.ts",
- "../../../node_modules/date-fns/locale/sk.d.ts",
- "../../../node_modules/date-fns/locale/sl.d.ts",
- "../../../node_modules/date-fns/locale/sq.d.ts",
- "../../../node_modules/date-fns/locale/sr.d.ts",
- "../../../node_modules/date-fns/locale/sr-Latn.d.ts",
- "../../../node_modules/date-fns/locale/sv.d.ts",
- "../../../node_modules/date-fns/locale/ta.d.ts",
- "../../../node_modules/date-fns/locale/te.d.ts",
- "../../../node_modules/date-fns/locale/th.d.ts",
- "../../../node_modules/date-fns/locale/tr.d.ts",
- "../../../node_modules/date-fns/locale/ug.d.ts",
- "../../../node_modules/date-fns/locale/uk.d.ts",
- "../../../node_modules/date-fns/locale/uz.d.ts",
- "../../../node_modules/date-fns/locale/uz-Cyrl.d.ts",
- "../../../node_modules/date-fns/locale/vi.d.ts",
- "../../../node_modules/date-fns/locale/zh-CN.d.ts",
- "../../../node_modules/date-fns/locale/zh-HK.d.ts",
- "../../../node_modules/date-fns/locale/zh-TW.d.ts",
- "../../../node_modules/date-fns/locale.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/components/Button.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/components/CaptionLabel.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/components/Chevron.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/components/MonthCaption.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/components/Week.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/labels/labelDayButton.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/labels/labelGrid.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/labels/labelGridcell.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/labels/labelMonthDropdown.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/labels/labelNav.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/labels/labelNext.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/labels/labelPrevious.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/labels/labelWeekday.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/labels/labelWeekNumber.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/labels/labelWeekNumberHeader.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/labels/labelYearDropdown.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/labels/index.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/UI.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/classes/CalendarWeek.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/classes/CalendarMonth.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/types/props.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/types/selection.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/useDayPicker.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/types/deprecated.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/types/index.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/components/Day.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/components/DayButton.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/components/Dropdown.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/components/DropdownNav.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/components/Footer.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/components/Month.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/components/MonthGrid.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/components/Months.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/components/MonthsDropdown.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/components/Nav.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/components/NextMonthButton.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/components/Option.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/components/PreviousMonthButton.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/components/Root.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/components/Select.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/components/Weekday.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/components/Weekdays.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/components/WeekNumber.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/components/WeekNumberHeader.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/components/Weeks.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/components/YearsDropdown.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/components/custom-components.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/formatters/formatCaption.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/formatters/formatDay.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/formatters/formatMonthDropdown.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/formatters/formatWeekdayName.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/formatters/formatWeekNumber.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/formatters/formatWeekNumberHeader.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/formatters/formatYearDropdown.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/formatters/index.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/types/shared.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/locale/en-US.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/classes/DateLib.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/classes/CalendarDay.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/classes/index.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/DayPicker.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/helpers/getDefaultClassNames.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/helpers/index.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/utils/addToRange.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/utils/dateMatchModifiers.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/utils/rangeContainsDayOfWeek.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/utils/rangeContainsModifiers.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/utils/rangeIncludesDate.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/utils/rangeOverlaps.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/utils/typeguards.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/utils/index.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/index.d.ts",
- "../../../packages/ui/src/calendar.tsx",
- "../../../packages/ui/src/card.tsx",
- "../../../node_modules/embla-carousel/esm/components/Alignment.d.ts",
- "../../../node_modules/embla-carousel/esm/components/NodeRects.d.ts",
- "../../../node_modules/embla-carousel/esm/components/Axis.d.ts",
- "../../../node_modules/embla-carousel/esm/components/SlidesToScroll.d.ts",
- "../../../node_modules/embla-carousel/esm/components/Limit.d.ts",
- "../../../node_modules/embla-carousel/esm/components/ScrollContain.d.ts",
- "../../../node_modules/embla-carousel/esm/components/DragTracker.d.ts",
- "../../../node_modules/embla-carousel/esm/components/utils.d.ts",
- "../../../node_modules/embla-carousel/esm/components/Animations.d.ts",
- "../../../node_modules/embla-carousel/esm/components/Counter.d.ts",
- "../../../node_modules/embla-carousel/esm/components/EventHandler.d.ts",
- "../../../node_modules/embla-carousel/esm/components/EventStore.d.ts",
- "../../../node_modules/embla-carousel/esm/components/PercentOfView.d.ts",
- "../../../node_modules/embla-carousel/esm/components/ResizeHandler.d.ts",
- "../../../node_modules/embla-carousel/esm/components/Vector1d.d.ts",
- "../../../node_modules/embla-carousel/esm/components/ScrollBody.d.ts",
- "../../../node_modules/embla-carousel/esm/components/ScrollBounds.d.ts",
- "../../../node_modules/embla-carousel/esm/components/ScrollLooper.d.ts",
- "../../../node_modules/embla-carousel/esm/components/ScrollProgress.d.ts",
- "../../../node_modules/embla-carousel/esm/components/SlideRegistry.d.ts",
- "../../../node_modules/embla-carousel/esm/components/ScrollTarget.d.ts",
- "../../../node_modules/embla-carousel/esm/components/ScrollTo.d.ts",
- "../../../node_modules/embla-carousel/esm/components/SlideFocus.d.ts",
- "../../../node_modules/embla-carousel/esm/components/Translate.d.ts",
- "../../../node_modules/embla-carousel/esm/components/SlideLooper.d.ts",
- "../../../node_modules/embla-carousel/esm/components/SlidesHandler.d.ts",
- "../../../node_modules/embla-carousel/esm/components/SlidesInView.d.ts",
- "../../../node_modules/embla-carousel/esm/components/Engine.d.ts",
- "../../../node_modules/embla-carousel/esm/components/OptionsHandler.d.ts",
- "../../../node_modules/embla-carousel/esm/components/Plugins.d.ts",
- "../../../node_modules/embla-carousel/esm/components/EmblaCarousel.d.ts",
- "../../../node_modules/embla-carousel/esm/components/DragHandler.d.ts",
- "../../../node_modules/embla-carousel/esm/components/Options.d.ts",
- "../../../node_modules/embla-carousel/esm/index.d.ts",
- "../../../node_modules/embla-carousel-react/esm/components/useEmblaCarousel.d.ts",
- "../../../node_modules/embla-carousel-react/esm/index.d.ts",
- "../../../packages/ui/src/carousel.tsx",
- "../../../node_modules/@types/d3-time/index.d.ts",
- "../../../node_modules/@types/d3-scale/index.d.ts",
- "../../../node_modules/victory-vendor/d3-scale.d.ts",
- "../../../node_modules/recharts/types/shape/Dot.d.ts",
- "../../../node_modules/recharts/types/component/Text.d.ts",
- "../../../node_modules/recharts/types/zIndex/ZIndexLayer.d.ts",
- "../../../node_modules/recharts/types/cartesian/getCartesianPosition.d.ts",
- "../../../node_modules/recharts/types/component/Label.d.ts",
- "../../../node_modules/recharts/types/cartesian/CartesianAxis.d.ts",
- "../../../node_modules/recharts/types/util/scale/CustomScaleDefinition.d.ts",
- "../../../node_modules/redux/dist/redux.d.ts",
- "../../../node_modules/@reduxjs/toolkit/node_modules/immer/dist/immer.d.ts",
- "../../../node_modules/reselect/dist/reselect.d.ts",
- "../../../node_modules/redux-thunk/dist/redux-thunk.d.ts",
- "../../../node_modules/@reduxjs/toolkit/dist/uncheckedindexed.ts",
- "../../../node_modules/@reduxjs/toolkit/dist/index.d.mts",
- "../../../node_modules/recharts/types/state/cartesianAxisSlice.d.ts",
- "../../../node_modules/recharts/types/synchronisation/types.d.ts",
- "../../../node_modules/recharts/types/chart/types.d.ts",
- "../../../node_modules/recharts/types/component/DefaultTooltipContent.d.ts",
- "../../../node_modules/recharts/types/context/brushUpdateContext.d.ts",
- "../../../node_modules/recharts/types/state/chartDataSlice.d.ts",
- "../../../node_modules/recharts/types/state/types/LineSettings.d.ts",
- "../../../node_modules/recharts/types/state/types/ScatterSettings.d.ts",
- "../../../node_modules/@types/d3-path/index.d.ts",
- "../../../node_modules/@types/d3-shape/index.d.ts",
- "../../../node_modules/victory-vendor/d3-shape.d.ts",
- "../../../node_modules/recharts/types/shape/Curve.d.ts",
- "../../../node_modules/recharts/types/component/LabelList.d.ts",
- "../../../node_modules/recharts/types/component/DefaultLegendContent.d.ts",
- "../../../node_modules/recharts/types/util/payload/getUniqPayload.d.ts",
- "../../../node_modules/recharts/types/util/useElementOffset.d.ts",
- "../../../node_modules/recharts/types/component/Legend.d.ts",
- "../../../node_modules/recharts/types/state/legendSlice.d.ts",
- "../../../node_modules/recharts/types/state/types/StackedGraphicalItem.d.ts",
- "../../../node_modules/recharts/types/util/stacks/stackTypes.d.ts",
- "../../../node_modules/recharts/types/util/scale/RechartsScale.d.ts",
- "../../../node_modules/recharts/types/util/ChartUtils.d.ts",
- "../../../node_modules/recharts/types/state/selectors/areaSelectors.d.ts",
- "../../../node_modules/recharts/types/cartesian/Area.d.ts",
- "../../../node_modules/recharts/types/state/types/AreaSettings.d.ts",
- "../../../node_modules/recharts/types/animation/easing.d.ts",
- "../../../node_modules/recharts/types/shape/Rectangle.d.ts",
- "../../../node_modules/recharts/types/cartesian/Bar.d.ts",
- "../../../node_modules/recharts/types/util/BarUtils.d.ts",
- "../../../node_modules/recharts/types/state/types/BarSettings.d.ts",
- "../../../node_modules/recharts/types/state/types/RadialBarSettings.d.ts",
- "../../../node_modules/recharts/types/util/svgPropertiesNoEvents.d.ts",
- "../../../node_modules/recharts/types/util/useUniqueId.d.ts",
- "../../../node_modules/recharts/types/state/types/PieSettings.d.ts",
- "../../../node_modules/recharts/types/state/types/RadarSettings.d.ts",
- "../../../node_modules/recharts/types/state/graphicalItemsSlice.d.ts",
- "../../../node_modules/recharts/types/state/tooltipSlice.d.ts",
- "../../../node_modules/recharts/types/state/optionsSlice.d.ts",
- "../../../node_modules/recharts/types/state/layoutSlice.d.ts",
- "../../../node_modules/immer/dist/immer.d.ts",
- "../../../node_modules/recharts/types/util/IfOverflow.d.ts",
- "../../../node_modules/recharts/types/util/resolveDefaultProps.d.ts",
- "../../../node_modules/recharts/types/cartesian/ReferenceLine.d.ts",
- "../../../node_modules/recharts/types/state/referenceElementsSlice.d.ts",
- "../../../node_modules/recharts/types/state/brushSlice.d.ts",
- "../../../node_modules/recharts/types/state/rootPropsSlice.d.ts",
- "../../../node_modules/recharts/types/state/polarAxisSlice.d.ts",
- "../../../node_modules/recharts/types/state/polarOptionsSlice.d.ts",
- "../../../node_modules/recharts/types/cartesian/Line.d.ts",
- "../../../node_modules/recharts/types/util/Constants.d.ts",
- "../../../node_modules/recharts/types/util/ScatterUtils.d.ts",
- "../../../node_modules/recharts/types/shape/Symbols.d.ts",
- "../../../node_modules/recharts/types/cartesian/Scatter.d.ts",
- "../../../node_modules/recharts/types/cartesian/ErrorBar.d.ts",
- "../../../node_modules/recharts/types/state/errorBarSlice.d.ts",
- "../../../node_modules/recharts/types/state/zIndexSlice.d.ts",
- "../../../node_modules/recharts/types/state/eventSettingsSlice.d.ts",
- "../../../node_modules/recharts/types/state/renderedTicksSlice.d.ts",
- "../../../node_modules/recharts/types/state/store.d.ts",
- "../../../node_modules/recharts/types/cartesian/getTicks.d.ts",
- "../../../node_modules/recharts/types/cartesian/CartesianGrid.d.ts",
- "../../../node_modules/recharts/types/state/selectors/combiners/combineDisplayedStackedData.d.ts",
- "../../../node_modules/recharts/types/state/selectors/selectTooltipAxisType.d.ts",
- "../../../node_modules/recharts/types/types.d.ts",
- "../../../node_modules/recharts/types/hooks.d.ts",
- "../../../node_modules/recharts/types/state/selectors/axisSelectors.d.ts",
- "../../../node_modules/recharts/types/component/Dots.d.ts",
- "../../../node_modules/recharts/types/util/typedDataKey.d.ts",
- "../../../node_modules/recharts/types/util/types.d.ts",
- "../../../node_modules/recharts/types/container/Surface.d.ts",
- "../../../node_modules/recharts/types/container/Layer.d.ts",
- "../../../node_modules/recharts/types/component/Cursor.d.ts",
- "../../../node_modules/recharts/types/component/Tooltip.d.ts",
- "../../../node_modules/recharts/types/component/ResponsiveContainer.d.ts",
- "../../../node_modules/recharts/types/component/Cell.d.ts",
- "../../../node_modules/recharts/types/component/Customized.d.ts",
- "../../../node_modules/recharts/types/shape/Sector.d.ts",
- "../../../node_modules/recharts/types/shape/Polygon.d.ts",
- "../../../node_modules/recharts/types/shape/Cross.d.ts",
- "../../../node_modules/recharts/types/polar/PolarGrid.d.ts",
- "../../../node_modules/recharts/types/polar/defaultPolarRadiusAxisProps.d.ts",
- "../../../node_modules/recharts/types/polar/PolarRadiusAxis.d.ts",
- "../../../node_modules/recharts/types/polar/defaultPolarAngleAxisProps.d.ts",
- "../../../node_modules/recharts/types/polar/PolarAngleAxis.d.ts",
- "../../../node_modules/recharts/types/context/tooltipContext.d.ts",
- "../../../node_modules/recharts/types/polar/Pie.d.ts",
- "../../../node_modules/recharts/types/polar/Radar.d.ts",
- "../../../node_modules/recharts/types/util/RadialBarUtils.d.ts",
- "../../../node_modules/recharts/types/polar/RadialBar.d.ts",
- "../../../node_modules/recharts/types/cartesian/Brush.d.ts",
- "../../../node_modules/recharts/types/cartesian/ReferenceDot.d.ts",
- "../../../node_modules/recharts/types/util/excludeEventProps.d.ts",
- "../../../node_modules/recharts/types/util/svgPropertiesAndEvents.d.ts",
- "../../../node_modules/recharts/types/cartesian/ReferenceArea.d.ts",
- "../../../node_modules/recharts/types/cartesian/BarStack.d.ts",
- "../../../node_modules/recharts/types/cartesian/XAxis.d.ts",
- "../../../node_modules/recharts/types/cartesian/YAxis.d.ts",
- "../../../node_modules/recharts/types/cartesian/ZAxis.d.ts",
- "../../../node_modules/recharts/types/chart/LineChart.d.ts",
- "../../../node_modules/recharts/types/chart/BarChart.d.ts",
- "../../../node_modules/recharts/types/chart/PieChart.d.ts",
- "../../../node_modules/recharts/types/chart/Treemap.d.ts",
- "../../../node_modules/recharts/types/chart/Sankey.d.ts",
- "../../../node_modules/recharts/types/chart/RadarChart.d.ts",
- "../../../node_modules/recharts/types/chart/ScatterChart.d.ts",
- "../../../node_modules/recharts/types/chart/AreaChart.d.ts",
- "../../../node_modules/recharts/types/chart/RadialBarChart.d.ts",
- "../../../node_modules/recharts/types/chart/ComposedChart.d.ts",
- "../../../node_modules/recharts/types/chart/SunburstChart.d.ts",
- "../../../node_modules/recharts/types/shape/Trapezoid.d.ts",
- "../../../node_modules/recharts/types/cartesian/Funnel.d.ts",
- "../../../node_modules/recharts/types/chart/FunnelChart.d.ts",
- "../../../node_modules/recharts/types/util/Global.d.ts",
- "../../../node_modules/recharts/types/zIndex/DefaultZIndexes.d.ts",
- "../../../node_modules/decimal.js-light/decimal.d.ts",
- "../../../node_modules/recharts/types/util/scale/getNiceTickValues.d.ts",
- "../../../node_modules/recharts/types/context/chartLayoutContext.d.ts",
- "../../../node_modules/recharts/types/util/getRelativeCoordinate.d.ts",
- "../../../node_modules/recharts/types/util/createCartesianCharts.d.ts",
- "../../../node_modules/recharts/types/util/createPolarCharts.d.ts",
- "../../../node_modules/recharts/types/index.d.ts",
- "../../../packages/ui/src/chart.tsx",
- "../../../packages/ui/src/checkbox.tsx",
- "../../../packages/ui/src/collapsible.tsx",
- "../../../node_modules/@base-ui/react/esm/utils/reason-parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/utils/reasons.d.ts",
- "../../../node_modules/@base-ui/react/esm/utils/createBaseUIEventDetails.d.ts",
- "../../../node_modules/@base-ui/react/esm/types/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/utils/types.d.ts",
- "../../../node_modules/@base-ui/react/esm/accordion/root/AccordionRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/utils/useTransitionStatus.d.ts",
- "../../../node_modules/@base-ui/react/esm/collapsible/root/CollapsibleRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/collapsible/root/useCollapsibleRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/accordion/item/AccordionItem.d.ts",
- "../../../node_modules/@base-ui/react/esm/accordion/header/AccordionHeader.d.ts",
- "../../../node_modules/@base-ui/react/esm/accordion/trigger/AccordionTrigger.d.ts",
- "../../../node_modules/@base-ui/react/esm/accordion/panel/AccordionPanel.d.ts",
- "../../../node_modules/@base-ui/react/esm/accordion/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/accordion/index.d.ts",
- "../../../node_modules/@base-ui/utils/esm/store/createSelector.d.ts",
- "../../../node_modules/@base-ui/utils/esm/fastHooks.d.ts",
- "../../../node_modules/@base-ui/utils/esm/store/Store.d.ts",
- "../../../node_modules/@base-ui/utils/esm/store/useStore.d.ts",
- "../../../node_modules/@base-ui/utils/esm/store/ReactStore.d.ts",
- "../../../node_modules/@base-ui/utils/esm/store/StoreInspector.d.ts",
- "../../../node_modules/@base-ui/utils/esm/store/index.d.ts",
- "../../../node_modules/@base-ui/utils/esm/useEnhancedClickHandler.d.ts",
- "../../../node_modules/@floating-ui/utils/dist/floating-ui.utils.d.mts",
- "../../../node_modules/@floating-ui/core/dist/floating-ui.core.d.mts",
- "../../../node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.d.mts",
- "../../../node_modules/@floating-ui/dom/dist/floating-ui.dom.d.mts",
- "../../../node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.d.mts",
- "../../../node_modules/@base-ui/react/esm/floating-ui-react/utils/constants.d.ts",
- "../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useInteractions.d.ts",
- "../../../node_modules/@base-ui/react/esm/floating-ui-react/components/FloatingTreeStore.d.ts",
- "../../../node_modules/@base-ui/react/esm/floating-ui-react/components/FloatingRootStore.d.ts",
- "../../../node_modules/@base-ui/react/esm/floating-ui-react/components/FloatingFocusManager.d.ts",
- "../../../node_modules/@base-ui/react/esm/utils/getStateAttributesProps.d.ts",
- "../../../node_modules/@base-ui/react/esm/utils/useRenderElement.d.ts",
- "../../../node_modules/@base-ui/react/esm/floating-ui-react/components/FloatingPortal.d.ts",
- "../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useClientPoint.d.ts",
- "../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useDismiss.d.ts",
- "../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useFocus.d.ts",
- "../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useHoverShared.d.ts",
- "../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useHover.d.ts",
- "../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useHoverFloatingInteraction.d.ts",
- "../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useHoverReferenceInteraction.d.ts",
- "../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useListNavigation.d.ts",
- "../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useRole.d.ts",
- "../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useTypeahead.d.ts",
- "../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useFloatingRootContext.d.ts",
- "../../../node_modules/@base-ui/react/esm/floating-ui-react/safePolygon.d.ts",
- "../../../node_modules/@base-ui/react/esm/floating-ui-react/components/FloatingTree.d.ts",
- "../../../node_modules/@base-ui/react/esm/floating-ui-react/types.d.ts",
- "../../../node_modules/@base-ui/react/esm/floating-ui-react/components/FloatingDelayGroup.d.ts",
- "../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useClick.d.ts",
- "../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useFloating.d.ts",
- "../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useSyncedFloatingRootContext.d.ts",
- "../../../node_modules/@base-ui/react/esm/floating-ui-react/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/utils/popups/popupTriggerMap.d.ts",
- "../../../node_modules/@base-ui/react/esm/utils/popups/store.d.ts",
- "../../../node_modules/@base-ui/react/esm/utils/popups/popupStoreUtils.d.ts",
- "../../../node_modules/@base-ui/react/esm/utils/popups/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/dialog/root/DialogRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/dialog/store/DialogStore.d.ts",
- "../../../node_modules/@base-ui/react/esm/dialog/store/DialogHandle.d.ts",
- "../../../node_modules/@base-ui/react/esm/alert-dialog/root/AlertDialogRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/dialog/backdrop/DialogBackdrop.d.ts",
- "../../../node_modules/@base-ui/react/esm/dialog/close/DialogClose.d.ts",
- "../../../node_modules/@base-ui/react/esm/dialog/description/DialogDescription.d.ts",
- "../../../node_modules/@base-ui/react/esm/dialog/popup/DialogPopup.d.ts",
- "../../../node_modules/@base-ui/react/esm/dialog/portal/DialogPortal.d.ts",
- "../../../node_modules/@base-ui/react/esm/dialog/title/DialogTitle.d.ts",
- "../../../node_modules/@base-ui/react/esm/dialog/trigger/DialogTrigger.d.ts",
- "../../../node_modules/@base-ui/react/esm/dialog/viewport/DialogViewport.d.ts",
- "../../../node_modules/@base-ui/react/esm/alert-dialog/handle.d.ts",
- "../../../node_modules/@base-ui/react/esm/alert-dialog/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/alert-dialog/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/utils/resolveValueLabel.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/root/AriaCombobox.d.ts",
- "../../../node_modules/@base-ui/react/esm/autocomplete/root/AutocompleteRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/autocomplete/value/AutocompleteValue.d.ts",
- "../../../node_modules/@base-ui/react/esm/form/FormContext.d.ts",
- "../../../node_modules/@base-ui/react/esm/form/Form.d.ts",
- "../../../node_modules/@base-ui/react/esm/form/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/field/root/FieldRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/utils/useAnchorPositioning.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/trigger/ComboboxTrigger.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/input/ComboboxInput.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/input-group/ComboboxInputGroup.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/icon/ComboboxIcon.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/clear/ComboboxClear.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/list/ComboboxList.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/status/ComboboxStatus.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/portal/ComboboxPortal.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/backdrop/ComboboxBackdrop.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/positioner/ComboboxPositioner.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/popup/ComboboxPopup.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/arrow/ComboboxArrow.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/group/ComboboxGroup.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/group-label/ComboboxGroupLabel.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/item/ComboboxItem.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/row/ComboboxRow.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/collection/ComboboxCollection.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/empty/ComboboxEmpty.d.ts",
- "../../../node_modules/@base-ui/react/esm/separator/Separator.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/root/utils/useFilter.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/root/utils/useFilteredItems.d.ts",
- "../../../node_modules/@base-ui/react/esm/autocomplete/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/autocomplete/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/avatar/root/AvatarRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/avatar/image/useImageLoadingStatus.d.ts",
- "../../../node_modules/@base-ui/react/esm/avatar/image/AvatarImage.d.ts",
- "../../../node_modules/@base-ui/react/esm/avatar/fallback/AvatarFallback.d.ts",
- "../../../node_modules/@base-ui/react/esm/avatar/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/avatar/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/button/Button.d.ts",
- "../../../node_modules/@base-ui/react/esm/button/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/checkbox/root/CheckboxRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/checkbox/indicator/CheckboxIndicator.d.ts",
- "../../../node_modules/@base-ui/react/esm/checkbox/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/checkbox/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/checkbox-group/CheckboxGroup.d.ts",
- "../../../node_modules/@base-ui/react/esm/checkbox-group/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/collapsible/trigger/CollapsibleTrigger.d.ts",
- "../../../node_modules/@base-ui/react/esm/collapsible/panel/CollapsiblePanel.d.ts",
- "../../../node_modules/@base-ui/react/esm/collapsible/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/collapsible/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/root/ComboboxRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/label/ComboboxLabel.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/value/ComboboxValue.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/item-indicator/ComboboxItemIndicator.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/chips/ComboboxChips.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/chip/ComboboxChip.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/chip-remove/ComboboxChipRemove.d.ts",
- "../../../node_modules/@base-ui/react/esm/separator/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/menu/arrow/MenuArrow.d.ts",
- "../../../node_modules/@base-ui/react/esm/menu/backdrop/MenuBackdrop.d.ts",
- "../../../node_modules/@base-ui/react/esm/menu/store/MenuStore.d.ts",
- "../../../node_modules/@base-ui/react/esm/menu/root/MenuRootContext.d.ts",
- "../../../node_modules/@base-ui/react/esm/menubar/MenubarContext.d.ts",
- "../../../node_modules/@base-ui/react/esm/context-menu/root/ContextMenuRootContext.d.ts",
- "../../../node_modules/@base-ui/react/esm/menu/store/MenuHandle.d.ts",
- "../../../node_modules/@base-ui/react/esm/menu/root/MenuRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/menu/checkbox-item/MenuCheckboxItem.d.ts",
- "../../../node_modules/@base-ui/react/esm/menu/checkbox-item-indicator/MenuCheckboxItemIndicator.d.ts",
- "../../../node_modules/@base-ui/react/esm/menu/group/MenuGroup.d.ts",
- "../../../node_modules/@base-ui/react/esm/menu/group-label/MenuGroupLabel.d.ts",
- "../../../node_modules/@base-ui/react/esm/menu/item/MenuItem.d.ts",
- "../../../node_modules/@base-ui/react/esm/menu/link-item/MenuLinkItem.d.ts",
- "../../../node_modules/@base-ui/react/esm/menu/popup/MenuPopup.d.ts",
- "../../../node_modules/@base-ui/react/esm/menu/portal/MenuPortal.d.ts",
- "../../../node_modules/@base-ui/react/esm/menu/positioner/MenuPositioner.d.ts",
- "../../../node_modules/@base-ui/react/esm/menu/radio-group/MenuRadioGroup.d.ts",
- "../../../node_modules/@base-ui/react/esm/menu/radio-item/MenuRadioItem.d.ts",
- "../../../node_modules/@base-ui/react/esm/menu/radio-item-indicator/MenuRadioItemIndicator.d.ts",
- "../../../node_modules/@base-ui/react/esm/menu/submenu-root/MenuSubmenuRootContext.d.ts",
- "../../../node_modules/@base-ui/react/esm/menu/submenu-root/MenuSubmenuRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/menu/trigger/MenuTrigger.d.ts",
- "../../../node_modules/@base-ui/react/esm/menu/viewport/MenuViewport.d.ts",
- "../../../node_modules/@base-ui/react/esm/menu/submenu-trigger/MenuSubmenuTrigger.d.ts",
- "../../../node_modules/@base-ui/react/esm/menu/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/menu/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/context-menu/root/ContextMenuRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/context-menu/trigger/ContextMenuTrigger.d.ts",
- "../../../node_modules/@base-ui/react/esm/context-menu/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/context-menu/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/csp-provider/CSPProvider.d.ts",
- "../../../node_modules/@base-ui/react/esm/csp-provider/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/csp-provider/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/dialog/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/dialog/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/direction-provider/DirectionContext.d.ts",
- "../../../node_modules/@base-ui/react/esm/direction-provider/DirectionProvider.d.ts",
- "../../../node_modules/@base-ui/react/esm/direction-provider/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/direction-provider/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/drawer/backdrop/DrawerBackdrop.d.ts",
- "../../../node_modules/@base-ui/react/esm/drawer/close/DrawerClose.d.ts",
- "../../../node_modules/@base-ui/react/esm/drawer/content/DrawerContent.d.ts",
- "../../../node_modules/@base-ui/react/esm/drawer/description/DrawerDescription.d.ts",
- "../../../node_modules/@base-ui/react/esm/drawer/indent/DrawerIndent.d.ts",
- "../../../node_modules/@base-ui/react/esm/drawer/indent-background/DrawerIndentBackground.d.ts",
- "../../../node_modules/@base-ui/react/esm/utils/useSwipeDismiss.d.ts",
- "../../../node_modules/@base-ui/react/esm/drawer/root/DrawerRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/drawer/root/DrawerRootContext.d.ts",
- "../../../node_modules/@base-ui/react/esm/drawer/popup/DrawerPopup.d.ts",
- "../../../node_modules/@base-ui/react/esm/drawer/portal/DrawerPortal.d.ts",
- "../../../node_modules/@base-ui/react/esm/drawer/provider/DrawerProvider.d.ts",
- "../../../node_modules/@base-ui/react/esm/drawer/swipe-area/DrawerSwipeArea.d.ts",
- "../../../node_modules/@base-ui/react/esm/drawer/title/DrawerTitle.d.ts",
- "../../../node_modules/@base-ui/react/esm/drawer/trigger/DrawerTrigger.d.ts",
- "../../../node_modules/@base-ui/react/esm/drawer/viewport/DrawerViewport.d.ts",
- "../../../node_modules/@base-ui/react/esm/drawer/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/drawer/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/field/label/FieldLabel.d.ts",
- "../../../node_modules/@base-ui/react/esm/field/error/FieldError.d.ts",
- "../../../node_modules/@base-ui/react/esm/field/description/FieldDescription.d.ts",
- "../../../node_modules/@base-ui/react/esm/field/control/FieldControl.d.ts",
- "../../../node_modules/@base-ui/react/esm/field/validity/FieldValidity.d.ts",
- "../../../node_modules/@base-ui/react/esm/field/item/FieldItem.d.ts",
- "../../../node_modules/@base-ui/react/esm/field/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/field/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/fieldset/root/FieldsetRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/fieldset/legend/FieldsetLegend.d.ts",
- "../../../node_modules/@base-ui/react/esm/fieldset/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/fieldset/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/input/Input.d.ts",
- "../../../node_modules/@base-ui/react/esm/input/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/menubar/Menubar.d.ts",
- "../../../node_modules/@base-ui/react/esm/menubar/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/merge-props/mergeProps.d.ts",
- "../../../node_modules/@base-ui/react/esm/merge-props/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/meter/root/MeterRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/meter/track/MeterTrack.d.ts",
- "../../../node_modules/@base-ui/react/esm/meter/indicator/MeterIndicator.d.ts",
- "../../../node_modules/@base-ui/react/esm/meter/value/MeterValue.d.ts",
- "../../../node_modules/@base-ui/react/esm/meter/label/MeterLabel.d.ts",
- "../../../node_modules/@base-ui/react/esm/meter/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/meter/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/navigation-menu/root/NavigationMenuRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/navigation-menu/list/NavigationMenuList.d.ts",
- "../../../node_modules/@base-ui/react/esm/navigation-menu/item/NavigationMenuItem.d.ts",
- "../../../node_modules/@base-ui/react/esm/navigation-menu/content/NavigationMenuContent.d.ts",
- "../../../node_modules/@base-ui/react/esm/navigation-menu/trigger/NavigationMenuTrigger.d.ts",
- "../../../node_modules/@base-ui/react/esm/navigation-menu/portal/NavigationMenuPortal.d.ts",
- "../../../node_modules/@base-ui/react/esm/navigation-menu/positioner/NavigationMenuPositioner.d.ts",
- "../../../node_modules/@base-ui/react/esm/navigation-menu/viewport/NavigationMenuViewport.d.ts",
- "../../../node_modules/@base-ui/react/esm/navigation-menu/backdrop/NavigationMenuBackdrop.d.ts",
- "../../../node_modules/@base-ui/react/esm/navigation-menu/popup/NavigationMenuPopup.d.ts",
- "../../../node_modules/@base-ui/react/esm/navigation-menu/arrow/NavigationMenuArrow.d.ts",
- "../../../node_modules/@base-ui/react/esm/navigation-menu/link/NavigationMenuLink.d.ts",
- "../../../node_modules/@base-ui/react/esm/navigation-menu/icon/NavigationMenuIcon.d.ts",
- "../../../node_modules/@base-ui/react/esm/navigation-menu/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/navigation-menu/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/number-field/utils/types.d.ts",
- "../../../node_modules/@base-ui/react/esm/number-field/root/NumberFieldRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/number-field/group/NumberFieldGroup.d.ts",
- "../../../node_modules/@base-ui/react/esm/number-field/increment/NumberFieldIncrement.d.ts",
- "../../../node_modules/@base-ui/react/esm/number-field/decrement/NumberFieldDecrement.d.ts",
- "../../../node_modules/@base-ui/react/esm/number-field/input/NumberFieldInput.d.ts",
- "../../../node_modules/@base-ui/react/esm/number-field/scrub-area/NumberFieldScrubArea.d.ts",
- "../../../node_modules/@base-ui/react/esm/number-field/scrub-area-cursor/NumberFieldScrubAreaCursor.d.ts",
- "../../../node_modules/@base-ui/react/esm/number-field/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/number-field/index.d.ts",
- "../../../node_modules/@base-ui/utils/esm/useTimeout.d.ts",
- "../../../node_modules/@base-ui/react/esm/popover/store/PopoverStore.d.ts",
- "../../../node_modules/@base-ui/react/esm/popover/store/PopoverHandle.d.ts",
- "../../../node_modules/@base-ui/react/esm/popover/root/PopoverRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/popover/trigger/PopoverTrigger.d.ts",
- "../../../node_modules/@base-ui/react/esm/popover/portal/PopoverPortal.d.ts",
- "../../../node_modules/@base-ui/react/esm/popover/positioner/PopoverPositioner.d.ts",
- "../../../node_modules/@base-ui/react/esm/popover/popup/PopoverPopup.d.ts",
- "../../../node_modules/@base-ui/react/esm/popover/arrow/PopoverArrow.d.ts",
- "../../../node_modules/@base-ui/react/esm/popover/backdrop/PopoverBackdrop.d.ts",
- "../../../node_modules/@base-ui/react/esm/popover/title/PopoverTitle.d.ts",
- "../../../node_modules/@base-ui/react/esm/popover/description/PopoverDescription.d.ts",
- "../../../node_modules/@base-ui/react/esm/popover/close/PopoverClose.d.ts",
- "../../../node_modules/@base-ui/react/esm/popover/viewport/PopoverViewport.d.ts",
- "../../../node_modules/@base-ui/react/esm/popover/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/popover/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/preview-card/store/PreviewCardStore.d.ts",
- "../../../node_modules/@base-ui/react/esm/preview-card/store/PreviewCardHandle.d.ts",
- "../../../node_modules/@base-ui/react/esm/preview-card/root/PreviewCardRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/utils/FloatingPortalLite.d.ts",
- "../../../node_modules/@base-ui/react/esm/preview-card/portal/PreviewCardPortal.d.ts",
- "../../../node_modules/@base-ui/react/esm/preview-card/trigger/PreviewCardTrigger.d.ts",
- "../../../node_modules/@base-ui/react/esm/preview-card/positioner/PreviewCardPositioner.d.ts",
- "../../../node_modules/@base-ui/react/esm/preview-card/popup/PreviewCardPopup.d.ts",
- "../../../node_modules/@base-ui/react/esm/preview-card/arrow/PreviewCardArrow.d.ts",
- "../../../node_modules/@base-ui/react/esm/preview-card/backdrop/PreviewCardBackdrop.d.ts",
- "../../../node_modules/@base-ui/react/esm/preview-card/viewport/PreviewCardViewport.d.ts",
- "../../../node_modules/@base-ui/react/esm/preview-card/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/preview-card/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/progress/root/ProgressRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/progress/track/ProgressTrack.d.ts",
- "../../../node_modules/@base-ui/react/esm/progress/indicator/ProgressIndicator.d.ts",
- "../../../node_modules/@base-ui/react/esm/progress/value/ProgressValue.d.ts",
- "../../../node_modules/@base-ui/react/esm/progress/label/ProgressLabel.d.ts",
- "../../../node_modules/@base-ui/react/esm/progress/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/progress/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/radio/root/RadioRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/radio/indicator/RadioIndicator.d.ts",
- "../../../node_modules/@base-ui/react/esm/radio/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/radio/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/radio-group/RadioGroup.d.ts",
- "../../../node_modules/@base-ui/react/esm/radio-group/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/scroll-area/root/ScrollAreaRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/scroll-area/viewport/ScrollAreaViewport.d.ts",
- "../../../node_modules/@base-ui/react/esm/scroll-area/scrollbar/ScrollAreaScrollbar.d.ts",
- "../../../node_modules/@base-ui/react/esm/scroll-area/content/ScrollAreaContent.d.ts",
- "../../../node_modules/@base-ui/react/esm/scroll-area/thumb/ScrollAreaThumb.d.ts",
- "../../../node_modules/@base-ui/react/esm/scroll-area/corner/ScrollAreaCorner.d.ts",
- "../../../node_modules/@base-ui/react/esm/scroll-area/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/scroll-area/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/select/root/SelectRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/select/label/SelectLabel.d.ts",
- "../../../node_modules/@base-ui/react/esm/select/trigger/SelectTrigger.d.ts",
- "../../../node_modules/@base-ui/react/esm/select/value/SelectValue.d.ts",
- "../../../node_modules/@base-ui/react/esm/select/icon/SelectIcon.d.ts",
- "../../../node_modules/@base-ui/react/esm/select/portal/SelectPortal.d.ts",
- "../../../node_modules/@base-ui/react/esm/select/backdrop/SelectBackdrop.d.ts",
- "../../../node_modules/@base-ui/react/esm/select/positioner/SelectPositioner.d.ts",
- "../../../node_modules/@base-ui/react/esm/select/popup/SelectPopup.d.ts",
- "../../../node_modules/@base-ui/react/esm/select/list/SelectList.d.ts",
- "../../../node_modules/@base-ui/react/esm/select/item/SelectItem.d.ts",
- "../../../node_modules/@base-ui/react/esm/select/item-indicator/SelectItemIndicator.d.ts",
- "../../../node_modules/@base-ui/react/esm/select/item-text/SelectItemText.d.ts",
- "../../../node_modules/@base-ui/react/esm/select/arrow/SelectArrow.d.ts",
- "../../../node_modules/@base-ui/react/esm/select/scroll-down-arrow/SelectScrollDownArrow.d.ts",
- "../../../node_modules/@base-ui/react/esm/select/scroll-up-arrow/SelectScrollUpArrow.d.ts",
- "../../../node_modules/@base-ui/react/esm/select/group/SelectGroup.d.ts",
- "../../../node_modules/@base-ui/react/esm/select/group-label/SelectGroupLabel.d.ts",
- "../../../node_modules/@base-ui/react/esm/select/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/select/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/slider/root/SliderRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/slider/label/SliderLabel.d.ts",
- "../../../node_modules/@base-ui/react/esm/slider/value/SliderValue.d.ts",
- "../../../node_modules/@base-ui/react/esm/slider/control/SliderControl.d.ts",
- "../../../node_modules/@base-ui/react/esm/slider/track/SliderTrack.d.ts",
- "../../../node_modules/@base-ui/react/esm/labelable-provider/LabelableContext.d.ts",
- "../../../node_modules/@base-ui/react/esm/slider/thumb/SliderThumb.d.ts",
- "../../../node_modules/@base-ui/react/esm/slider/indicator/SliderIndicator.d.ts",
- "../../../node_modules/@base-ui/react/esm/slider/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/slider/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/switch/root/SwitchRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/switch/thumb/SwitchThumb.d.ts",
- "../../../node_modules/@base-ui/react/esm/switch/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/switch/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/tabs/tab/TabsTab.d.ts",
- "../../../node_modules/@base-ui/react/esm/tabs/root/TabsRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/tabs/indicator/TabsIndicator.d.ts",
- "../../../node_modules/@base-ui/react/esm/tabs/panel/TabsPanel.d.ts",
- "../../../node_modules/@base-ui/react/esm/tabs/list/TabsList.d.ts",
- "../../../node_modules/@base-ui/react/esm/tabs/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/tabs/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/toast/positioner/ToastPositioner.d.ts",
- "../../../node_modules/@base-ui/react/esm/toast/useToastManager.d.ts",
- "../../../node_modules/@base-ui/react/esm/toast/createToastManager.d.ts",
- "../../../node_modules/@base-ui/react/esm/toast/provider/ToastProvider.d.ts",
- "../../../node_modules/@base-ui/react/esm/toast/viewport/ToastViewport.d.ts",
- "../../../node_modules/@base-ui/react/esm/toast/root/ToastRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/toast/content/ToastContent.d.ts",
- "../../../node_modules/@base-ui/react/esm/toast/description/ToastDescription.d.ts",
- "../../../node_modules/@base-ui/react/esm/toast/title/ToastTitle.d.ts",
- "../../../node_modules/@base-ui/react/esm/toast/close/ToastClose.d.ts",
- "../../../node_modules/@base-ui/react/esm/toast/action/ToastAction.d.ts",
- "../../../node_modules/@base-ui/react/esm/toast/portal/ToastPortal.d.ts",
- "../../../node_modules/@base-ui/react/esm/toast/arrow/ToastArrow.d.ts",
- "../../../node_modules/@base-ui/react/esm/toast/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/toast/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/toggle/Toggle.d.ts",
- "../../../node_modules/@base-ui/react/esm/toggle/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/toggle-group/ToggleGroup.d.ts",
- "../../../node_modules/@base-ui/react/esm/toggle-group/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/toolbar/separator/ToolbarSeparator.d.ts",
- "../../../node_modules/@base-ui/react/esm/toolbar/root/ToolbarRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/toolbar/group/ToolbarGroup.d.ts",
- "../../../node_modules/@base-ui/react/esm/toolbar/button/ToolbarButton.d.ts",
- "../../../node_modules/@base-ui/react/esm/toolbar/link/ToolbarLink.d.ts",
- "../../../node_modules/@base-ui/react/esm/toolbar/input/ToolbarInput.d.ts",
- "../../../node_modules/@base-ui/react/esm/toolbar/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/toolbar/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/tooltip/store/TooltipStore.d.ts",
- "../../../node_modules/@base-ui/react/esm/tooltip/store/TooltipHandle.d.ts",
- "../../../node_modules/@base-ui/react/esm/tooltip/root/TooltipRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/tooltip/trigger/TooltipTrigger.d.ts",
- "../../../node_modules/@base-ui/react/esm/tooltip/portal/TooltipPortal.d.ts",
- "../../../node_modules/@base-ui/react/esm/tooltip/positioner/TooltipPositioner.d.ts",
- "../../../node_modules/@base-ui/react/esm/tooltip/popup/TooltipPopup.d.ts",
- "../../../node_modules/@base-ui/react/esm/tooltip/arrow/TooltipArrow.d.ts",
- "../../../node_modules/@base-ui/react/esm/tooltip/provider/TooltipProvider.d.ts",
- "../../../node_modules/@base-ui/react/esm/tooltip/viewport/TooltipViewport.d.ts",
- "../../../node_modules/@base-ui/react/esm/tooltip/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/tooltip/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/use-render/useRender.d.ts",
- "../../../node_modules/@base-ui/react/esm/use-render/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/index.d.ts",
- "../../../packages/ui/src/combobox.tsx",
- "../../../node_modules/cmdk/dist/index.d.ts",
- "../../../packages/ui/src/command.tsx",
- "../../../packages/ui/src/context-menu.tsx",
- "../../../packages/ui/src/dialog.tsx",
- "../../../node_modules/vaul/dist/index.d.mts",
- "../../../packages/ui/src/drawer.tsx",
- "../../../packages/ui/src/dropdown-menu.tsx",
- "../../../packages/ui/src/empty.tsx",
- "../../../packages/ui/src/field.tsx",
- "../../../node_modules/react-hook-form/dist/constants.d.ts",
- "../../../node_modules/react-hook-form/dist/utils/createSubject.d.ts",
- "../../../node_modules/react-hook-form/dist/types/events.d.ts",
- "../../../node_modules/react-hook-form/dist/types/path/common.d.ts",
- "../../../node_modules/react-hook-form/dist/types/path/eager.d.ts",
- "../../../node_modules/react-hook-form/dist/types/path/index.d.ts",
- "../../../node_modules/react-hook-form/dist/types/fieldArray.d.ts",
- "../../../node_modules/react-hook-form/dist/types/resolvers.d.ts",
- "../../../node_modules/react-hook-form/dist/types/form.d.ts",
- "../../../node_modules/react-hook-form/dist/types/utils.d.ts",
- "../../../node_modules/react-hook-form/dist/types/fields.d.ts",
- "../../../node_modules/react-hook-form/dist/types/errors.d.ts",
- "../../../node_modules/react-hook-form/dist/types/validator.d.ts",
- "../../../node_modules/react-hook-form/dist/types/controller.d.ts",
- "../../../node_modules/react-hook-form/dist/types/index.d.ts",
- "../../../node_modules/react-hook-form/dist/controller.d.ts",
- "../../../node_modules/react-hook-form/dist/form.d.ts",
- "../../../node_modules/react-hook-form/dist/logic/appendErrors.d.ts",
- "../../../node_modules/react-hook-form/dist/logic/createFormControl.d.ts",
- "../../../node_modules/react-hook-form/dist/logic/index.d.ts",
- "../../../node_modules/react-hook-form/dist/useController.d.ts",
- "../../../node_modules/react-hook-form/dist/useFieldArray.d.ts",
- "../../../node_modules/react-hook-form/dist/useForm.d.ts",
- "../../../node_modules/react-hook-form/dist/useFormContext.d.ts",
- "../../../node_modules/react-hook-form/dist/useFormState.d.ts",
- "../../../node_modules/react-hook-form/dist/useWatch.d.ts",
- "../../../node_modules/react-hook-form/dist/utils/get.d.ts",
- "../../../node_modules/react-hook-form/dist/utils/set.d.ts",
- "../../../node_modules/react-hook-form/dist/utils/index.d.ts",
- "../../../node_modules/react-hook-form/dist/watch.d.ts",
- "../../../node_modules/react-hook-form/dist/index.d.ts",
- "../../../packages/ui/src/form.tsx",
- "../../../packages/ui/src/hover-card.tsx",
- "../../../node_modules/react-image-crop/dist/index.d.ts",
- "../../../packages/ui/src/image-crop.tsx",
- "../../../packages/ui/src/input.tsx",
- "../../../packages/ui/src/input-group.tsx",
- "../../../node_modules/input-otp/dist/index.d.ts",
- "../../../packages/ui/src/input-otp.tsx",
- "../../../packages/ui/src/item.tsx",
- "../../../packages/ui/src/kbd.tsx",
- "../../../packages/ui/src/label.tsx",
- "../../../packages/ui/src/native-select.tsx",
- "../../../packages/ui/src/navigation-menu.tsx",
- "../../../packages/ui/src/pagination.tsx",
- "../../../packages/ui/src/popover.tsx",
- "../../../packages/ui/src/progress.tsx",
- "../../../packages/ui/src/radio-group.tsx",
- "../../../node_modules/react-resizable-panels/dist/react-resizable-panels.d.ts",
- "../../../packages/ui/src/resizable.tsx",
- "../../../packages/ui/src/scroll-area.tsx",
- "../../../packages/ui/src/select.tsx",
- "../../../packages/ui/src/separator.tsx",
- "../../../packages/ui/src/sheet.tsx",
- "../../../packages/ui/src/sidebar.tsx",
- "../../../packages/ui/src/skeleton.tsx",
- "../../../packages/ui/src/slider.tsx",
- "../../../packages/ui/src/spinner.tsx",
- "../../../packages/ui/src/status-message.tsx",
- "../../../packages/ui/src/submit-button.tsx",
- "../../../packages/ui/src/switch.tsx",
- "../../../packages/ui/src/table.tsx",
- "../../../packages/ui/src/tabs.tsx",
- "../../../packages/ui/src/textarea.tsx",
- "../../../node_modules/next-themes/dist/index.d.ts",
- "../../../packages/ui/src/theme.tsx",
- "../../../node_modules/sonner/dist/index.d.mts",
- "../../../packages/ui/src/sonner.tsx",
- "../../../packages/ui/src/toggle.tsx",
- "../../../packages/ui/src/toggle-group.tsx",
- "../../../packages/ui/src/tooltip.tsx",
- "../../../packages/ui/src/hooks/use-mobile.ts",
- "../../../packages/ui/src/hooks/use-on-click-outside.tsx",
- "../../../packages/ui/src/hooks/index.tsx",
- "../../../packages/ui/src/index.tsx",
- "../../../node_modules/convex/dist/esm-types/values/value.d.ts",
- "../../../node_modules/convex/dist/esm-types/type_utils.d.ts",
- "../../../node_modules/convex/dist/esm-types/values/validators.d.ts",
- "../../../node_modules/convex/dist/esm-types/values/validator.d.ts",
- "../../../node_modules/convex/dist/esm-types/values/base64.d.ts",
- "../../../node_modules/convex/dist/esm-types/values/errors.d.ts",
- "../../../node_modules/convex/dist/esm-types/values/compare.d.ts",
- "../../../node_modules/convex/dist/esm-types/values/size.d.ts",
- "../../../node_modules/convex/dist/esm-types/values/index.d.ts",
- "../../../node_modules/convex/dist/esm-types/browser/sync/function_result.d.ts",
- "../../../node_modules/convex/dist/esm-types/browser/logging.d.ts",
- "../../../node_modules/convex/dist/esm-types/server/authentication.d.ts",
- "../../../node_modules/convex/dist/esm-types/server/data_model.d.ts",
- "../../../node_modules/convex/dist/esm-types/server/filter_builder.d.ts",
- "../../../node_modules/convex/dist/esm-types/server/index_range_builder.d.ts",
- "../../../node_modules/convex/dist/esm-types/server/pagination.d.ts",
- "../../../node_modules/convex/dist/esm-types/server/search_filter_builder.d.ts",
- "../../../node_modules/convex/dist/esm-types/server/query.d.ts",
- "../../../node_modules/convex/dist/esm-types/server/system_fields.d.ts",
- "../../../node_modules/convex/dist/esm-types/server/schema.d.ts",
- "../../../node_modules/convex/dist/esm-types/server/database.d.ts",
- "../../../node_modules/convex/dist/esm-types/server/impl/registration_impl.d.ts",
- "../../../node_modules/convex/dist/esm-types/server/storage.d.ts",
- "../../../node_modules/convex/dist/esm-types/server/scheduler.d.ts",
- "../../../node_modules/convex/dist/esm-types/server/cron.d.ts",
- "../../../node_modules/convex/dist/esm-types/server/router.d.ts",
- "../../../node_modules/convex/dist/esm-types/server/components/paths.d.ts",
- "../../../node_modules/convex/dist/esm-types/server/components/index.d.ts",
- "../../../node_modules/convex/dist/esm-types/server/vector_search.d.ts",
- "../../../node_modules/convex/dist/esm-types/server/index.d.ts",
- "../../../node_modules/convex/dist/esm-types/server/registration.d.ts",
- "../../../node_modules/convex/dist/esm-types/server/api.d.ts",
- "../../../node_modules/convex/dist/esm-types/browser/sync/optimistic_updates.d.ts",
- "../../../node_modules/convex/dist/esm-types/vendor/long.d.ts",
- "../../../node_modules/convex/dist/esm-types/browser/sync/protocol.d.ts",
- "../../../node_modules/convex/dist/esm-types/browser/sync/udf_path_utils.d.ts",
- "../../../node_modules/convex/dist/esm-types/browser/sync/local_state.d.ts",
- "../../../node_modules/convex/dist/esm-types/browser/sync/authentication_manager.d.ts",
- "../../../node_modules/convex/dist/esm-types/browser/sync/client.d.ts",
- "../../../node_modules/convex/dist/esm-types/browser/sync/pagination.d.ts",
- "../../../node_modules/convex/dist/esm-types/browser/simple_client.d.ts",
- "../../../node_modules/convex/dist/esm-types/browser/http_client.d.ts",
- "../../../node_modules/convex/dist/esm-types/browser/index.d.ts",
- "../../../node_modules/convex/dist/esm-types/react/use_paginated_query.d.ts",
- "../../../node_modules/convex/dist/esm-types/react/use_paginated_query2.d.ts",
- "../../../node_modules/convex/dist/esm-types/browser/query_options.d.ts",
- "../../../node_modules/convex/dist/esm-types/react/client.d.ts",
- "../../../node_modules/convex/dist/esm-types/browser/sync/paginated_query_client.d.ts",
- "../../../node_modules/convex/dist/esm-types/react/queries_observer.d.ts",
- "../../../node_modules/convex/dist/esm-types/react/use_queries.d.ts",
- "../../../node_modules/convex/dist/esm-types/react/auth_helpers.d.ts",
- "../../../node_modules/convex/dist/esm-types/react/ConvexAuthState.d.ts",
- "../../../node_modules/convex/dist/esm-types/react/hydration.d.ts",
- "../../../node_modules/convex/dist/esm-types/react/index.d.ts",
- "../../../node_modules/@convex-dev/auth/dist/react/index.d.ts",
- "../../../node_modules/@convex-dev/auth/dist/server/convex_types.d.ts",
- "../../../node_modules/@auth/core/lib/vendored/cookie.d.ts",
- "../../../node_modules/oauth4webapi/build/index.d.ts",
- "../../../node_modules/@auth/core/lib/utils/cookie.d.ts",
- "../../../node_modules/@auth/core/lib/symbols.d.ts",
- "../../../node_modules/@auth/core/lib/index.d.ts",
- "../../../node_modules/@auth/core/lib/utils/env.d.ts",
- "../../../node_modules/@auth/core/adapters.d.ts",
- "../../../node_modules/@auth/core/jwt.d.ts",
- "../../../node_modules/@auth/core/lib/utils/actions.d.ts",
- "../../../node_modules/@auth/core/index.d.ts",
- "../../../node_modules/@auth/core/lib/utils/logger.d.ts",
- "../../../node_modules/@auth/core/providers/webauthn.d.ts",
- "../../../node_modules/@auth/core/lib/utils/webauthn-utils.d.ts",
- "../../../node_modules/@auth/core/types.d.ts",
- "../../../node_modules/preact/src/jsx.d.ts",
- "../../../node_modules/preact/src/index.d.ts",
- "../../../node_modules/@auth/core/providers/credentials.d.ts",
- "../../../node_modules/@auth/core/providers/nodemailer.d.ts",
- "../../../node_modules/@auth/core/providers/email.d.ts",
- "../../../node_modules/@auth/core/providers/oauth-types.d.ts",
- "../../../node_modules/@auth/core/providers/oauth.d.ts",
- "../../../node_modules/@auth/core/providers/index.d.ts",
- "../../../node_modules/@convex-dev/auth/dist/providers/ConvexCredentials.d.ts",
- "../../../node_modules/@convex-dev/auth/dist/server/types.d.ts",
- "../../../node_modules/@convex-dev/auth/dist/server/implementation/types.d.ts",
- "../../../node_modules/@convex-dev/auth/dist/server/implementation/sessions.d.ts",
- "../../../node_modules/@convex-dev/auth/dist/server/implementation/index.d.ts",
- "../../../node_modules/@convex-dev/auth/dist/server/index.d.ts",
- "../../../packages/backend/convex/schema.ts",
- "../../../packages/backend/convex/_generated/dataModel.d.ts",
- "../../../node_modules/@auth/core/providers/authentik.d.ts",
- "../../../packages/backend/convex/_generated/server.d.ts",
- "../../../node_modules/@convex-dev/auth/dist/providers/Password.d.ts",
- "../../../packages/backend/convex/custom/auth/providers/password.ts",
- "../../../node_modules/@oslojs/crypto/dist/random/index.d.ts",
- "../../../node_modules/oslo/dist/index.d.ts",
- "../../../node_modules/oslo/dist/crypto/sha.d.ts",
- "../../../node_modules/oslo/dist/crypto/ecdsa.d.ts",
- "../../../node_modules/oslo/dist/crypto/hmac.d.ts",
- "../../../node_modules/oslo/dist/crypto/rsa.d.ts",
- "../../../node_modules/oslo/dist/crypto/random.d.ts",
- "../../../node_modules/oslo/dist/crypto/buffer.d.ts",
- "../../../node_modules/oslo/dist/crypto/index.d.ts",
- "../../../node_modules/usesend-js/dist/index.d.ts",
- "../../../packages/backend/convex/custom/auth/providers/usesend.ts",
- "../../../packages/backend/convex/custom/auth/index.ts",
- "../../../packages/backend/convex/auth.ts",
- "../../../packages/backend/convex/crons.ts",
- "../../../packages/backend/convex/files.ts",
- "../../../packages/backend/convex/http.ts",
- "../../../packages/backend/convex/utils.ts",
- "../../../packages/backend/convex/_generated/api.d.ts",
- "../src/components/layout/header/controls/AvatarDropdown.tsx",
- "../src/components/layout/header/controls/index.tsx",
- "../src/components/layout/header/index.tsx",
- "../../../node_modules/@convex-dev/auth/dist/nextjs/index.d.ts",
- "../src/components/providers/ConvexClientProvider.tsx",
- "../src/components/providers/index.tsx",
- "../src/lib/metadata.ts",
- "../src/app/global-error.tsx",
- "../src/app/layout.tsx",
- "../src/components/landing/hero.tsx",
- "../src/components/landing/features.tsx",
- "../src/components/landing/tech-stack.tsx",
- "../src/components/landing/cta.tsx",
- "../src/components/landing/index.tsx",
- "../src/app/page.tsx",
- "../src/app/(auth)/forgot-password/layout.tsx",
- "../../../node_modules/zod/v3/helpers/typeAliases.d.cts",
- "../../../node_modules/zod/v3/helpers/util.d.cts",
- "../../../node_modules/zod/v3/ZodError.d.cts",
- "../../../node_modules/zod/v3/locales/en.d.cts",
- "../../../node_modules/zod/v3/errors.d.cts",
- "../../../node_modules/zod/v3/helpers/parseUtil.d.cts",
- "../../../node_modules/zod/v3/helpers/enumUtil.d.cts",
- "../../../node_modules/zod/v3/helpers/errorUtil.d.cts",
- "../../../node_modules/zod/v3/helpers/partialUtil.d.cts",
- "../../../node_modules/zod/v3/standard-schema.d.cts",
- "../../../node_modules/zod/v3/types.d.cts",
- "../../../node_modules/zod/v3/external.d.cts",
- "../../../node_modules/zod/v3/index.d.cts",
- "../../../node_modules/@hookform/resolvers/zod/dist/zod.d.ts",
- "../../../node_modules/@hookform/resolvers/zod/dist/index.d.ts",
- "../../../node_modules/zod/index.d.cts",
- "../../../packages/backend/types/auth.ts",
- "../../../packages/backend/types/index.ts",
- "../src/app/(auth)/forgot-password/page.tsx",
- "../src/app/(auth)/profile/layout.tsx",
- "../src/components/layout/auth/profile/avatar-upload.tsx",
- "../src/components/layout/auth/profile/header.tsx",
- "../src/components/layout/auth/profile/reset-password.tsx",
- "../src/components/layout/auth/profile/sign-out.tsx",
- "../src/components/layout/auth/profile/user-info.tsx",
- "../src/components/layout/auth/profile/index.tsx",
- "../../../node_modules/convex/dist/esm-types/nextjs/index.d.ts",
- "../src/app/(auth)/profile/page.tsx",
- "../src/app/(auth)/sign-in/layout.tsx",
- "../src/components/layout/auth/buttons/gibs-auth.tsx",
- "../src/components/layout/auth/buttons/index.tsx",
- "../src/app/(auth)/sign-in/page.tsx"
- ],
- "fileIdsList": [
- [219, 268, 285, 286],
- [64, 197, 199, 203, 219, 268, 285, 286],
- [219, 268, 285, 286, 655, 656, 657],
- [219, 268, 285, 286, 655, 1385, 1387, 1392],
- [219, 268, 285, 286, 1394],
- [219, 268, 285, 286, 655],
- [207, 219, 268, 285, 286, 644, 2578, 2614, 2622, 2677, 2761, 2762, 2764],
- [219, 268, 285, 286, 2622, 2730, 2772, 2773],
- [
- 207, 219, 268, 285, 286, 634, 644, 2578, 2614, 2622, 2631, 2677, 2761,
- 2762, 2764, 2777
- ],
- [
- 207, 219, 268, 285, 286, 622, 652, 655, 1385, 1392, 1477, 1487, 1488,
- 2622, 2733, 2736, 2737
- ],
- [
- 219, 268, 285, 286, 652, 655, 1392, 1477, 1483, 1487, 1488, 2622, 2733,
- 2736, 2737
- ],
- [219, 268, 285, 286, 2744],
- [219, 268, 285, 286, 2622],
- [219, 268, 285, 286, 632, 634, 1487, 2622],
- [219, 268, 285, 286, 2740, 2741, 2742, 2743],
- [207, 219, 268, 285, 286, 632, 1492, 2622, 2677],
- [219, 268, 285, 286, 2776],
- [207, 219, 268, 285, 286, 1489, 2614, 2622, 2676, 2708, 2730],
- [219, 268, 285, 286, 2767, 2768, 2769, 2770, 2771],
- [207, 219, 268, 285, 286, 2578, 2614, 2622, 2676, 2730, 2761, 2762, 2764],
- [207, 219, 268, 285, 286, 644, 1489, 2622, 2677],
- [207, 219, 268, 285, 286, 2578, 2614, 2622, 2676, 2730, 2761, 2762],
- [219, 268, 285, 286, 634, 1487],
- [219, 268, 285, 286, 634, 644, 2622, 2676, 2677, 2708, 2730],
- [219, 268, 285, 286, 2622, 2731],
- [207, 219, 268, 285, 286, 632, 634, 1487, 1489, 2732],
- [207, 219, 268, 285, 286, 1477, 2676, 2734],
- [219, 268, 285, 286, 2735],
- [219, 268, 285, 286, 1398, 1476],
- [219, 268, 285, 286, 1385, 1477],
- [219, 268, 285, 286, 655, 1385, 1479],
- [219, 268, 285, 286, 655, 1385],
- [219, 268, 285, 286, 651],
- [219, 268, 285, 286, 1481, 1483],
- [219, 268, 285, 286, 2692, 2700],
- [219, 268, 285, 286, 2682, 2683, 2684, 2685, 2686, 2687, 2689, 2692, 2700],
- [219, 268, 285, 286, 2689, 2692],
- [219, 268, 285, 286, 2682],
- [219, 268, 285, 286, 2692],
- [219, 268, 285, 286, 2688, 2692],
- [219, 268, 285, 286, 2688],
- [219, 268, 285, 286, 2681, 2685, 2690, 2692],
- [219, 268, 285, 286, 2700],
- [219, 268, 285, 286, 2692, 2694, 2700],
- [219, 268, 285, 286, 2692, 2696, 2700],
- [219, 268, 285, 286, 2690, 2692, 2695, 2697, 2699],
- [219, 268, 285, 286, 2692, 2697],
- [219, 268, 285, 286, 2680, 2682, 2688, 2692, 2698, 2700],
- [219, 268, 285, 286, 2679, 2680, 2681, 2688, 2689, 2691, 2700],
- [207, 219, 268, 285, 286, 2167, 2172],
- [219, 268, 285, 286, 2168, 2172, 2173, 2174, 2175, 2176],
- [219, 268, 285, 286, 2168, 2172, 2173, 2174, 2175],
- [207, 219, 268, 285, 286, 2164, 2165, 2167, 2168, 2171],
- [207, 219, 268, 285, 286, 2167, 2168, 2169, 2172],
- [207, 219, 268, 285, 286, 2164, 2165, 2167],
- [219, 268, 285, 286, 2224],
- [219, 268, 285, 286, 2225, 2235],
- [
- 219, 268, 285, 286, 2224, 2225, 2226, 2227, 2228, 2229, 2230, 2231, 2232,
- 2233, 2234
- ],
- [207, 219, 268, 285, 286, 355, 2165, 2222, 2224],
- [
- 219, 268, 285, 286, 2239, 2240, 2246, 2247, 2248, 2251, 2252, 2253, 2254,
- 2255, 2256, 2257, 2258, 2259, 2260, 2262, 2263, 2265, 2267
- ],
- [
- 219, 268, 285, 286, 2239, 2240, 2246, 2247, 2248, 2249, 2250, 2251, 2252,
- 2253, 2254, 2255, 2256, 2257, 2258, 2259, 2260, 2261, 2262, 2263, 2264,
- 2265, 2266
- ],
- [207, 219, 268, 285, 286, 2238],
- [207, 219, 268, 285, 286],
- [207, 219, 268, 285, 286, 2167, 2269],
- [207, 219, 268, 285, 286, 2167, 2169, 2269, 2270],
- [219, 268, 285, 286, 2269, 2271, 2272, 2273],
- [219, 268, 285, 286, 2269, 2271, 2272],
- [207, 219, 268, 285, 286, 2167],
- [219, 268, 285, 286, 2275],
- [207, 219, 268, 285, 286, 2164, 2165, 2167, 2244],
- [219, 268, 285, 286, 2281],
- [219, 268, 285, 286, 2277, 2278, 2279],
- [219, 268, 285, 286, 2277, 2278],
- [207, 219, 268, 285, 286, 2167, 2169, 2277],
- [219, 268, 285, 286, 2170, 2283, 2284, 2285],
- [219, 268, 285, 286, 2170, 2283, 2284],
- [207, 219, 268, 285, 286, 2167, 2169, 2170],
- [207, 219, 268, 285, 286, 2164, 2165, 2167, 2171],
- [207, 219, 268, 285, 286, 2169, 2170],
- [207, 219, 268, 285, 286, 2167, 2170],
- [207, 219, 268, 285, 286, 2167, 2245],
- [207, 219, 268, 285, 286, 2167, 2169],
- [
- 219, 268, 285, 286, 2246, 2247, 2248, 2249, 2250, 2251, 2252, 2253, 2254,
- 2255, 2256, 2257, 2258, 2259, 2260, 2261, 2262, 2263, 2265, 2287, 2288,
- 2289, 2290, 2291, 2292, 2293, 2295
- ],
- [
- 219, 268, 285, 286, 2246, 2247, 2248, 2249, 2250, 2251, 2252, 2253, 2254,
- 2255, 2256, 2257, 2258, 2259, 2260, 2261, 2262, 2263, 2265, 2266, 2287,
- 2288, 2289, 2290, 2291, 2292, 2293, 2294
- ],
- [207, 219, 268, 285, 286, 2167, 2244, 2245],
- [207, 219, 268, 285, 286, 2167, 2244],
- [207, 219, 268, 285, 286, 2167, 2169, 2185, 2245],
- [207, 219, 268, 285, 286, 2217],
- [207, 219, 268, 285, 286, 2164, 2165, 2237],
- [
- 219, 268, 285, 286, 2297, 2298, 2305, 2306, 2307, 2308, 2309, 2310, 2311,
- 2312, 2313, 2314, 2315, 2316, 2318, 2321, 2324, 2325, 2326
- ],
- [
- 219, 268, 285, 286, 2264, 2297, 2298, 2305, 2306, 2307, 2308, 2309, 2310,
- 2311, 2312, 2313, 2314, 2315, 2316, 2318, 2321, 2324, 2325
- ],
- [219, 268, 285, 286, 355, 2166, 2304, 2323],
- [207, 219, 268, 285, 286, 2324],
- [207, 219, 268, 285, 286, 355],
- [219, 268, 285, 286, 2328, 2329],
- [219, 268, 285, 286, 2328],
- [
- 219, 268, 285, 286, 2222, 2226, 2227, 2228, 2229, 2230, 2231, 2232, 2233,
- 2331
- ],
- [
- 219, 268, 285, 286, 2222, 2224, 2226, 2227, 2228, 2229, 2230, 2231, 2232,
- 2233
- ],
- [207, 219, 268, 285, 286, 2167, 2169, 2185],
- [207, 219, 268, 285, 286, 355, 2164, 2165, 2221, 2224],
- [219, 268, 285, 286, 2223],
- [207, 219, 268, 285, 286, 2169, 2184, 2185, 2194, 2217, 2221, 2222, 2537],
- [207, 219, 268, 285, 286, 2167, 2224],
- [207, 219, 268, 285, 286, 2333],
- [219, 268, 285, 286, 2334, 2335],
- [219, 268, 285, 286, 2333, 2334],
- [
- 219, 268, 285, 286, 2337, 2338, 2339, 2340, 2341, 2342, 2344, 2346, 2347,
- 2348, 2349, 2350, 2351, 2352, 2353
- ],
- [
- 219, 268, 285, 286, 2224, 2337, 2338, 2339, 2340, 2341, 2342, 2344, 2346,
- 2347, 2348, 2349, 2350, 2351, 2352
- ],
- [207, 219, 268, 285, 286, 2167, 2169, 2185, 2345],
- [207, 219, 268, 285, 286, 355, 2164, 2165, 2221, 2224, 2345],
- [207, 219, 268, 285, 286, 2343, 2344],
- [207, 219, 268, 285, 286, 2167, 2343, 2345],
- [207, 219, 268, 285, 286, 2167, 2169, 2244],
- [219, 268, 285, 286, 2244, 2355, 2356, 2357, 2358, 2359, 2360, 2361],
- [219, 268, 285, 286, 2244, 2355, 2356, 2357, 2358, 2359, 2360],
- [207, 219, 268, 285, 286, 2167, 2243],
- [207, 219, 268, 285, 286, 2169, 2244],
- [219, 268, 285, 286, 2363, 2364, 2365],
- [219, 268, 285, 286, 2363, 2364],
- [207, 219, 268, 285, 286, 2212],
- [207, 219, 268, 285, 286, 2185, 2193, 2212],
- [207, 219, 268, 285, 286, 2167, 2197],
- [207, 219, 268, 285, 286, 2165, 2184, 2212, 2221],
- [207, 219, 268, 285, 286, 2193, 2212],
- [219, 268, 285, 286, 2212],
- [219, 268, 285, 286, 2164, 2212],
- [219, 268, 285, 286, 2193, 2212],
- [219, 268, 285, 286, 2165, 2194, 2212],
- [219, 268, 285, 286, 2202, 2212],
- [207, 219, 268, 285, 286, 2167, 2193, 2202, 2212],
- [207, 219, 268, 285, 286, 2191, 2212],
- [219, 268, 285, 286, 2166, 2184, 2194, 2221],
- [
- 219, 268, 285, 286, 2190, 2192, 2193, 2195, 2198, 2199, 2200, 2201, 2203,
- 2204, 2205, 2206, 2207, 2208, 2209, 2210, 2211, 2212, 2213, 2214, 2215,
- 2216
- ],
- [219, 268, 285, 286, 2202],
- [
- 207, 219, 268, 285, 286, 2165, 2190, 2192, 2193, 2194, 2195, 2198, 2199,
- 2200, 2201, 2202, 2203, 2204, 2205, 2206, 2207, 2208, 2209, 2210, 2211,
- 2213, 2217
- ],
- [207, 219, 268, 285, 286, 2164, 2165, 2167, 2241],
- [207, 219, 268, 285, 286, 2242, 2244],
- [219, 268, 285, 286, 2242],
- [
- 219, 268, 285, 286, 2166, 2177, 2236, 2243, 2268, 2274, 2276, 2280, 2282,
- 2286, 2294, 2296, 2323, 2327, 2330, 2332, 2336, 2354, 2362, 2366, 2368,
- 2370, 2372, 2379, 2394, 2404, 2420, 2433, 2440, 2444, 2446, 2454, 2474,
- 2484, 2488, 2495, 2510, 2512, 2514, 2522, 2534, 2536
- ],
- [207, 219, 268, 285, 286, 2167, 2362],
- [219, 268, 285, 286, 2367],
- [207, 219, 268, 285, 286, 2167, 2304],
- [
- 219, 268, 285, 286, 2297, 2298, 2304, 2305, 2306, 2307, 2308, 2309, 2310,
- 2311, 2312, 2313, 2314, 2315, 2316, 2318, 2319, 2320, 2321, 2322
- ],
- [
- 219, 268, 285, 286, 2264, 2297, 2298, 2303, 2304, 2305, 2306, 2307, 2308,
- 2309, 2310, 2311, 2312, 2313, 2314, 2315, 2316, 2318, 2319, 2320, 2321
- ],
- [
- 207, 219, 268, 285, 286, 355, 2164, 2165, 2221, 2299, 2300, 2301, 2302,
- 2303
- ],
- [207, 219, 268, 285, 286, 2299, 2304],
- [219, 268, 285, 286, 2299],
- [
- 207, 219, 268, 285, 286, 2167, 2169, 2184, 2193, 2194, 2217, 2221, 2304,
- 2323
- ],
- [219, 268, 285, 286, 355, 2304, 2317],
- [207, 219, 268, 285, 286, 2299],
- [207, 219, 268, 285, 286, 2167, 2303],
- [207, 219, 268, 285, 286, 2304],
- [219, 268, 285, 286, 2369],
- [219, 268, 285, 286, 2371],
- [219, 268, 285, 286, 2373, 2374, 2375, 2376, 2377, 2378],
- [219, 268, 285, 286, 2373, 2374, 2375, 2376, 2377],
- [207, 219, 268, 285, 286, 2167, 2373],
- [
- 219, 268, 285, 286, 2380, 2381, 2382, 2383, 2384, 2385, 2386, 2387, 2388,
- 2389, 2390, 2391, 2392, 2393
- ],
- [
- 219, 268, 285, 286, 2380, 2381, 2382, 2383, 2384, 2385, 2386, 2387, 2388,
- 2389, 2390, 2391, 2392
- ],
- [207, 219, 268, 285, 286, 2167, 2169, 2245],
- [207, 219, 268, 285, 286, 2167, 2396],
- [219, 268, 285, 286, 2396, 2397, 2398, 2399, 2400, 2401, 2402, 2403],
- [219, 268, 285, 286, 2396, 2397, 2398, 2399, 2400, 2401, 2402],
- [207, 219, 268, 285, 286, 2164, 2165, 2167, 2244, 2395],
- [
- 219, 268, 285, 286, 2408, 2409, 2410, 2411, 2412, 2413, 2414, 2415, 2416,
- 2417, 2418, 2419
- ],
- [
- 219, 268, 285, 286, 2407, 2408, 2409, 2410, 2411, 2412, 2413, 2414, 2415,
- 2416, 2417, 2418
- ],
- [207, 219, 268, 285, 286, 355, 2164, 2165, 2221, 2407],
- [219, 268, 285, 286, 2406],
- [
- 207, 219, 268, 285, 286, 2169, 2184, 2185, 2194, 2217, 2221, 2405, 2408,
- 2420, 2537
- ],
- [207, 219, 268, 285, 286, 2167, 2407],
- [219, 268, 285, 286, 2423, 2425, 2426, 2427, 2428, 2429, 2430, 2432],
- [219, 268, 285, 286, 2422, 2423, 2425, 2426, 2427, 2428, 2429, 2430, 2431],
- [207, 219, 268, 285, 286, 2424],
- [207, 219, 268, 285, 286, 355, 2164, 2165, 2221, 2422],
- [219, 268, 285, 286, 2421],
- [207, 219, 268, 285, 286, 2169, 2184, 2194, 2217, 2221, 2423, 2537],
- [207, 219, 268, 285, 286, 2167, 2422],
- [219, 268, 285, 286, 2434, 2435, 2436, 2437, 2438, 2439],
- [219, 268, 285, 286, 2434, 2435, 2436, 2437, 2438],
- [207, 219, 268, 285, 286, 2167, 2434],
- [219, 268, 285, 286, 2445],
- [219, 268, 285, 286, 2441, 2442, 2443],
- [219, 268, 285, 286, 2441, 2442],
- [207, 219, 268, 285, 286, 2167, 2447],
- [219, 268, 285, 286, 2447, 2448, 2449, 2450, 2451, 2452, 2453],
- [219, 268, 285, 286, 2447, 2448, 2449, 2450, 2451, 2452],
- [
- 219, 268, 285, 286, 2455, 2456, 2457, 2458, 2459, 2460, 2461, 2462, 2463,
- 2464, 2465, 2466, 2467, 2468, 2469, 2470, 2471, 2472, 2473
- ],
- [
- 219, 268, 285, 286, 2264, 2455, 2456, 2457, 2458, 2459, 2460, 2461, 2462,
- 2463, 2464, 2465, 2466, 2467, 2468, 2469, 2470, 2471, 2472
- ],
- [219, 268, 285, 286, 2264],
- [207, 219, 268, 285, 286, 2167, 2475],
- [219, 268, 285, 286, 2475, 2476, 2477, 2478, 2479, 2481, 2482, 2483],
- [219, 268, 285, 286, 2475, 2476, 2477, 2478, 2479, 2481, 2482],
- [207, 219, 268, 285, 286, 2167, 2475, 2480],
- [219, 268, 285, 286, 2485, 2486, 2487],
- [219, 268, 285, 286, 2485, 2486],
- [207, 219, 268, 285, 286, 2164, 2166, 2167, 2244],
- [207, 219, 268, 285, 286, 2167, 2485],
- [219, 268, 285, 286, 2489, 2490, 2491, 2492, 2493, 2494],
- [219, 268, 285, 286, 2489, 2490, 2491, 2492, 2493],
- [207, 219, 268, 285, 286, 2167, 2489, 2490],
- [207, 219, 268, 285, 286, 2167, 2490],
- [207, 219, 268, 285, 286, 2167, 2169, 2489, 2490],
- [207, 219, 268, 285, 286, 2164, 2165, 2167, 2489],
- [219, 268, 285, 286, 2497],
- [
- 219, 268, 285, 286, 2496, 2497, 2498, 2499, 2500, 2501, 2502, 2503, 2504,
- 2505, 2506, 2507, 2508, 2509
- ],
- [
- 219, 268, 285, 286, 2496, 2497, 2498, 2499, 2500, 2501, 2502, 2503, 2504,
- 2505, 2506, 2507, 2508
- ],
- [207, 219, 268, 285, 286, 2167, 2245, 2497],
- [207, 219, 268, 285, 286, 2498],
- [207, 219, 268, 285, 286, 2167, 2169, 2497],
- [207, 219, 268, 285, 286, 2496],
- [219, 268, 285, 286, 2513],
- [219, 268, 285, 286, 2511],
- [207, 219, 268, 285, 286, 2167, 2516],
- [219, 268, 285, 286, 2515, 2516, 2517, 2518, 2519, 2520, 2521],
- [219, 268, 285, 286, 2167, 2515, 2516, 2517, 2518, 2519, 2520],
- [207, 219, 268, 285, 286, 2167, 2294],
- [219, 268, 285, 286, 2525, 2526, 2527, 2528, 2529, 2530, 2531, 2533],
- [219, 268, 285, 286, 2524, 2525, 2526, 2527, 2528, 2529, 2530, 2531, 2532],
- [207, 219, 268, 285, 286, 355, 2164, 2165, 2221, 2524],
- [219, 268, 285, 286, 2523],
- [207, 219, 268, 285, 286, 2169, 2184, 2194, 2217, 2221, 2525, 2534, 2537],
- [207, 219, 268, 285, 286, 2167, 2524],
- [207, 219, 268, 285, 286, 2165],
- [219, 268, 285, 286, 2167, 2535],
- [207, 219, 268, 285, 286, 2167, 2196],
- [219, 268, 285, 286, 2164],
- [219, 268, 285, 286, 2218, 2219, 2220],
- [207, 219, 268, 285, 286, 2169, 2184, 2219],
- [219, 268, 285, 286, 2167, 2169, 2194, 2217, 2218],
- [219, 268, 285, 286, 2163],
- [207, 219, 268, 285, 286, 2166],
- [207, 219, 268, 285, 286, 2186, 2217],
- [219, 268, 285, 286, 2180],
- [207, 219, 268, 285, 286, 355, 2180],
- [219, 268, 285, 286, 2035],
- [219, 268, 285, 286, 2178, 2180, 2181, 2182, 2183],
- [219, 268, 285, 286, 2179, 2180],
- [207, 219, 268, 285, 286, 355, 2676],
- [207, 219, 268, 285, 286, 355, 528, 651, 652, 1482],
- [219, 268, 285, 286, 634, 651],
- [219, 268, 285, 286, 2631, 2652, 2706],
- [219, 268, 285, 286, 2631, 2652, 2701, 2706],
- [207, 219, 268, 285, 286, 355, 2631, 2676],
- [219, 268, 285, 286, 2631, 2652],
- [219, 268, 285, 286, 2631, 2652, 2678, 2702, 2703, 2704],
- [219, 268, 285, 286, 2631, 2652, 2703, 2706],
- [219, 268, 285, 286, 2631, 2652, 2678],
- [219, 268, 285, 286, 2678, 2702, 2705],
- [219, 268, 285, 286, 2631, 2652, 2678, 2692, 2700, 2701],
- [219, 268, 285, 286, 1550],
- [219, 268, 285, 286, 1551],
- [219, 268, 285, 286, 1550, 1551, 1552, 1553, 1554, 1555, 1556],
- [65, 219, 268, 285, 286],
- [60, 219, 268, 285, 286],
- [61, 62, 219, 268, 285, 286],
- [61, 219, 268, 285, 286],
- [69, 219, 268, 285, 286],
- [219, 268, 285, 286, 2186],
- [219, 268, 285, 286, 2187, 2188],
- [207, 219, 268, 285, 286, 2189],
- [219, 268, 285, 286, 2760],
- [219, 268, 285, 286, 1465, 2578, 2759],
- [219, 268, 285, 286, 1119, 1120],
- [219, 268, 285, 286, 1120, 1121, 1122],
- [219, 268, 285, 286, 1118, 1119, 1120, 1121, 1122, 1123, 1124],
- [219, 268, 285, 286, 1042, 1118],
- [219, 268, 285, 286, 1119],
- [219, 268, 285, 286, 1042],
- [219, 268, 285, 286, 1120, 1121],
- [219, 268, 285, 286, 1001],
- [219, 268, 285, 286, 1004],
- [219, 268, 285, 286, 1009, 1011],
- [219, 268, 285, 286, 997, 1001, 1013, 1014],
- [219, 268, 285, 286, 1024, 1027, 1033, 1035],
- [219, 268, 285, 286, 996, 1001],
- [219, 268, 285, 286, 995],
- [219, 268, 285, 286, 996],
- [219, 268, 285, 286, 1003],
- [219, 268, 285, 286, 1006],
- [
- 219, 268, 285, 286, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004,
- 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1015, 1016, 1017,
- 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028, 1029,
- 1030, 1031, 1032, 1033, 1034, 1036, 1037, 1038, 1039, 1040, 1041
- ],
- [219, 268, 285, 286, 1012],
- [219, 268, 285, 286, 1008],
- [219, 268, 285, 286, 1009],
- [219, 268, 285, 286, 1000, 1001, 1007],
- [219, 268, 285, 286, 1008, 1009],
- [219, 268, 285, 286, 1015],
- [219, 268, 285, 286, 1036],
- [219, 268, 285, 286, 1001, 1021, 1023, 1024, 1025],
- [219, 268, 285, 286, 1024, 1025, 1027],
- [219, 268, 285, 286, 1001, 1016, 1019, 1022, 1029],
- [219, 268, 285, 286, 1016, 1017],
- [219, 268, 285, 286, 999, 1016, 1019, 1022],
- [219, 268, 285, 286, 1000],
- [219, 268, 285, 286, 1001, 1018, 1021],
- [219, 268, 285, 286, 1017],
- [219, 268, 285, 286, 1018],
- [219, 268, 285, 286, 1016, 1018],
- [219, 268, 285, 286, 998, 999, 1016, 1018, 1019, 1020],
- [219, 268, 285, 286, 1018, 1021],
- [219, 268, 285, 286, 1001, 1021, 1023],
- [219, 268, 285, 286, 1024, 1025],
- [219, 268, 285, 286, 1042, 1177],
- [219, 268, 285, 286, 1178, 1179],
- [219, 268, 285, 286, 1042, 1064],
- [219, 268, 285, 286, 1064],
- [
- 219, 268, 285, 286, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069,
- 1070, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085,
- 1086
- ],
- [219, 268, 285, 286, 1069],
- [219, 268, 285, 286, 1074],
- [219, 268, 285, 286, 1071, 1072, 1073],
- [219, 268, 285, 286, 1139, 1341],
- [219, 268, 285, 286, 1341, 1342],
- [219, 268, 285, 286, 318, 1042, 1139],
- [219, 268, 285, 286, 1322, 1323],
- [219, 268, 285, 286, 1042, 1139, 1320, 1321],
- [219, 268, 285, 286, 1320],
- [219, 268, 285, 286, 1337, 1338],
- [219, 268, 285, 286, 1139, 1337],
- [219, 268, 285, 286, 1139],
- [219, 268, 285, 286, 1225, 1226, 1227, 1228],
- [219, 268, 285, 286, 1139, 1226],
- [219, 268, 285, 286, 1042, 1139, 1225],
- [219, 268, 285, 286, 1334],
- [219, 268, 285, 286, 1235, 1236],
- [219, 268, 285, 286, 1139, 1235],
- [219, 268, 285, 286, 1042, 1139],
- [219, 268, 285, 286, 1307, 1308],
- [219, 268, 285, 286, 1139, 1140],
- [219, 268, 285, 286, 1140, 1141],
- [219, 268, 282, 285, 286, 318, 1042, 1139],
- [219, 268, 285, 286, 1262, 1263],
- [219, 268, 285, 286, 1139, 1262],
- [219, 268, 285, 286, 1239, 1240],
- [219, 268, 285, 286, 1139, 1239],
- [219, 268, 285, 286, 1326, 1327],
- [219, 268, 285, 286, 1139, 1326],
- [219, 268, 285, 286, 1315, 1316, 1317],
- [219, 268, 285, 286, 1139, 1315],
- [219, 268, 285, 286, 1243],
- [219, 268, 285, 286, 1246, 1247],
- [219, 268, 285, 286, 1139, 1246],
- [219, 268, 285, 286, 1250, 1251],
- [219, 268, 285, 286, 1139, 1250],
- [219, 268, 285, 286, 1254, 1255],
- [219, 268, 285, 286, 1139, 1254],
- [219, 268, 285, 286, 1258, 1259],
- [219, 268, 285, 286, 1139, 1258],
- [219, 268, 285, 286, 1274, 1275, 1276],
- [219, 268, 285, 286, 1139, 1274],
- [219, 268, 285, 286, 1042, 1139, 1273],
- [219, 268, 285, 286, 1330, 1331],
- [219, 268, 285, 286, 1139, 1330],
- [219, 268, 285, 286, 1220, 1221],
- [219, 268, 285, 286, 1139, 1220],
- [219, 268, 285, 286, 1127],
- [219, 268, 285, 286, 1126, 1127, 1128, 1134, 1135, 1136, 1137, 1138],
- [219, 268, 285, 286, 1042, 1125, 1126],
- [219, 268, 285, 286, 1126],
- [219, 268, 285, 286, 1133],
- [219, 268, 285, 286, 1131, 1132],
- [219, 268, 285, 286, 1126, 1129, 1130],
- [219, 268, 285, 286, 290],
- [219, 268, 285, 286, 1042, 1125],
- [219, 268, 285, 286, 1042, 1043],
- [219, 268, 285, 286, 1043, 1045],
- [219, 268, 285, 286, 1043],
- [219, 268, 285, 286, 1044, 1045],
- [219, 268, 285, 286, 1043, 1044],
- [219, 268, 285, 286, 1047, 1053, 1054],
- [219, 268, 285, 286, 1052],
- [219, 268, 285, 286, 1048, 1049, 1050, 1051],
- [219, 268, 285, 286, 1043, 1044, 1045, 1046, 1055, 1056, 1057],
- [219, 268, 285, 286, 1042, 1044],
- [219, 268, 285, 286, 1042, 1092],
- [219, 268, 285, 286, 1042, 1058, 1087, 1088, 1089, 1091, 1092],
- [219, 268, 285, 286, 1042, 1089, 1090],
- [219, 268, 285, 286, 1042, 1089, 1090, 1091, 1092, 1094],
- [219, 268, 285, 286, 1087, 1089, 1094],
- [219, 268, 285, 286, 1042, 1089, 1090, 1091],
- [219, 268, 285, 286, 1042, 1058, 1087, 1088],
- [219, 268, 285, 286, 1042, 1089, 1090, 1091, 1094],
- [219, 268, 285, 286, 1087, 1089],
- [
- 219, 268, 285, 286, 1059, 1060, 1088, 1089, 1090, 1091, 1092, 1093, 1094,
- 1099, 1100, 1101, 1102, 1103, 1104, 1105, 1106, 1107
- ],
- [219, 268, 285, 286, 1098],
- [219, 268, 285, 286, 1059],
- [219, 268, 285, 286, 1092, 1095],
- [219, 268, 285, 286, 1096, 1097],
- [219, 268, 285, 286, 1060],
- [219, 268, 285, 286, 1042, 1060],
- [219, 268, 285, 286, 1042, 1058, 1059, 1060, 1091],
- [219, 268, 285, 286, 1042, 1304],
- [219, 268, 285, 286, 1292],
- [219, 268, 285, 286, 1291, 1292, 1293, 1299, 1300, 1301, 1302, 1303],
- [219, 268, 285, 286, 1042, 1290, 1291],
- [219, 268, 285, 286, 1291],
- [219, 268, 285, 286, 1298],
- [219, 268, 285, 286, 1296, 1297],
- [219, 268, 285, 286, 1291, 1294, 1295],
- [219, 268, 285, 286, 1042, 1290],
- [219, 268, 285, 286, 1281, 1282],
- [219, 268, 285, 286, 1282, 1283, 1284],
- [219, 268, 285, 286, 1281, 1282, 1283],
- [
- 219, 268, 285, 286, 1280, 1281, 1282, 1283, 1284, 1285, 1286, 1287, 1288,
- 1289
- ],
- [219, 268, 285, 286, 1042, 1280],
- [219, 268, 285, 286, 1281],
- [219, 268, 285, 286, 1282, 1283],
- [207, 219, 268, 285, 286, 1495, 1496, 1497],
- [207, 219, 268, 285, 286, 1495, 1502],
- [207, 219, 268, 285, 286, 1496],
- [207, 219, 268, 285, 286, 1495, 1496],
- [207, 219, 268, 285, 286, 355, 1495, 1496],
- [207, 219, 268, 285, 286, 1495, 1496, 1511],
- [207, 219, 268, 285, 286, 1495, 1496, 1499, 1500, 1501],
- [207, 219, 268, 285, 286, 355, 1495, 1496, 1515],
- [207, 219, 268, 285, 286, 1495, 1496, 1499, 1501, 1509],
- [207, 219, 268, 285, 286, 1495, 1496, 1499, 1500, 1501, 1509, 1510],
- [207, 219, 268, 285, 286, 355, 1495, 1496, 1510, 1511],
- [207, 219, 268, 285, 286, 1495, 1496, 1499, 1519],
- [207, 219, 268, 285, 286, 1496, 1510],
- [207, 219, 268, 285, 286, 1495, 1496, 1499, 1500, 1501, 1509],
- [207, 219, 268, 285, 286, 1495, 1496, 1507, 1508],
- [207, 219, 268, 285, 286, 1495, 1496, 1510],
- [207, 219, 268, 285, 286, 1495, 1496, 1499],
- [207, 219, 268, 285, 286, 1495, 1496, 1510, 1534],
- [207, 219, 268, 285, 286, 1495, 1496, 1510, 1528, 1535],
- [219, 268, 285, 286, 2033, 2034, 2035, 2036, 2037],
- [219, 268, 285, 286, 902],
- [219, 268, 285, 286, 894, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906],
- [219, 268, 285, 286, 870],
- [219, 268, 285, 286, 870, 896],
- [219, 268, 285, 286, 894],
- [219, 268, 285, 286, 870, 902],
- [
- 219, 268, 285, 286, 659, 661, 662, 663, 664, 666, 667, 668, 670, 671, 672,
- 673, 674, 675, 676, 677, 678, 682, 684, 685, 686, 687, 688, 689, 690, 691,
- 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706,
- 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 718, 719, 721, 722, 723,
- 724, 725, 729, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748,
- 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763,
- 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778,
- 779, 780, 781, 782, 783, 784, 785, 788, 789, 790, 791, 792, 794, 795, 796,
- 797, 798, 799, 800, 801, 802, 804, 805, 806, 807, 808, 809, 810, 811, 812,
- 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827,
- 828, 829, 830, 831, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843,
- 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858,
- 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869
- ],
- [219, 268, 285, 286, 1373, 1374, 1375],
- [219, 268, 285, 286, 1373, 1374, 1376],
- [219, 268, 285, 286, 1371, 1372, 1373, 1374, 1376, 1377],
- [219, 268, 285, 286, 1373, 1374],
- [219, 268, 285, 286, 1370],
- [219, 268, 285, 286, 870, 970],
- [219, 268, 285, 286, 870, 970, 988, 989, 990, 991, 992],
- [
- 219, 268, 285, 286, 971, 972, 973, 974, 975, 976, 979, 980, 981, 983, 984,
- 985, 986, 987
- ],
- [219, 268, 285, 286, 655, 978],
- [219, 268, 285, 286, 978],
- [219, 268, 285, 286, 609],
- [219, 268, 285, 286, 616],
- [219, 268, 285, 286, 622, 655],
- [219, 268, 285, 286, 655, 870, 977],
- [219, 268, 285, 286, 982],
- [219, 268, 285, 286, 1381, 1383],
- [219, 268, 285, 286, 870, 1380],
- [219, 268, 285, 286, 1381, 1382],
- [219, 268, 285, 286, 988, 989, 990, 1115, 1116],
- [219, 268, 285, 286, 870, 978, 987, 993, 1117, 1369, 1384],
- [219, 268, 285, 286, 988, 989, 990, 1367, 1368],
- [219, 268, 285, 286, 678, 692, 747],
- [219, 268, 285, 286, 719, 723],
- [219, 268, 285, 286, 698, 713, 719],
- [219, 268, 285, 286, 698, 715, 717, 718],
- [219, 268, 285, 286, 659],
- [219, 268, 285, 286, 663],
- [219, 268, 285, 286, 686, 687, 698, 713, 719, 720, 722],
- [219, 268, 285, 286, 674, 678, 694, 707],
- [
- 219, 268, 285, 286, 662, 663, 668, 671, 674, 675, 676, 678, 684, 685, 686,
- 687, 693, 694, 695, 698, 704, 705, 707, 708, 709, 710, 711, 712
- ],
- [219, 268, 285, 286, 673, 698, 713],
- [219, 268, 285, 286, 698],
- [219, 268, 285, 286, 677, 678, 692, 693, 694, 704, 707, 713, 730],
- [219, 268, 285, 286, 695, 704],
- [219, 268, 285, 286, 662, 672, 674, 682, 693, 695, 696, 698, 704, 740],
- [219, 268, 285, 286, 684, 698, 704],
- [219, 268, 285, 286, 668, 671, 784],
- [219, 268, 285, 286, 784],
- [219, 268, 285, 286, 705, 709, 713],
- [219, 268, 285, 286, 705],
- [219, 268, 285, 286, 686, 713],
- [219, 268, 285, 286, 784, 870],
- [219, 268, 285, 286, 704, 705],
- [219, 268, 285, 286, 786, 787],
- [219, 268, 285, 286, 793],
- [219, 268, 285, 286, 668],
- [219, 268, 285, 286, 700, 870],
- [219, 268, 285, 286, 705, 784],
- [219, 268, 285, 286, 686, 713, 870],
- [219, 268, 285, 286, 685, 686, 698, 758],
- [219, 268, 285, 286, 701, 704],
- [219, 268, 285, 286, 687, 698, 713],
- [219, 268, 285, 286, 687, 698],
- [219, 268, 285, 286, 689],
- [219, 268, 285, 286, 678],
- [
- 219, 268, 285, 286, 660, 661, 662, 663, 668, 671, 672, 673, 682, 693, 694,
- 695, 696, 697, 704, 713
- ],
- [219, 268, 285, 286, 709, 713],
- [219, 268, 285, 286, 662, 674, 685, 698, 704, 708, 709, 713],
- [219, 268, 285, 286, 693],
- [219, 268, 285, 286, 810],
- [219, 268, 285, 286, 809],
- [219, 268, 285, 286, 668, 694, 698, 713],
- [219, 268, 285, 286, 813],
- [219, 268, 285, 286, 812],
- [219, 268, 285, 286, 668, 711],
- [219, 268, 285, 286, 717, 726, 727, 728, 730, 731, 732, 733, 734, 735, 736],
- [219, 268, 285, 286, 815],
- [219, 268, 285, 286, 818],
- [219, 268, 285, 286, 659, 729, 870],
- [219, 268, 285, 286, 807],
- [219, 268, 285, 286, 806],
- [219, 268, 285, 286, 706, 709],
- [219, 268, 285, 286, 666, 668],
- [219, 268, 285, 286, 666, 668, 669, 729],
- [219, 268, 285, 286, 668, 698, 711, 716],
- [219, 268, 285, 286, 668, 698],
- [219, 268, 285, 286, 803],
- [219, 268, 285, 286, 713],
- [219, 268, 285, 286, 668, 673, 803],
- [219, 268, 285, 286, 708, 712],
- [219, 268, 285, 286, 694, 704, 708],
- [219, 268, 285, 286, 694, 708],
- [219, 268, 285, 286, 662],
- [219, 268, 285, 286, 673],
- [219, 268, 285, 286, 675],
- [219, 268, 285, 286, 664, 668, 669, 672],
- [
- 219, 268, 285, 286, 661, 668, 674, 676, 677, 678, 684, 686, 687, 689, 690,
- 692, 693, 704
- ],
- [
- 219, 268, 285, 286, 659, 661, 662, 663, 667, 668, 671, 672, 673, 682, 688,
- 692, 696, 698, 699, 702, 703
- ],
- [219, 268, 285, 286, 704],
- [219, 268, 285, 286, 699, 701],
- [219, 268, 285, 286, 672, 679, 680],
- [219, 268, 285, 286, 661],
- [219, 268, 285, 286, 661, 679, 681, 683, 705],
- [219, 268, 285, 286, 672, 682, 704],
- [219, 268, 285, 286, 670],
- [219, 268, 285, 286, 704, 713],
- [219, 268, 285, 286, 660, 685],
- [219, 268, 285, 286, 660],
- [219, 268, 285, 286, 671],
- [
- 219, 268, 285, 286, 663, 668, 686, 687, 697, 698, 701, 704, 705, 706, 707,
- 708
- ],
- [219, 268, 285, 286, 659, 688, 705, 713],
- [219, 268, 285, 286, 668, 671, 672],
- [219, 268, 285, 286, 691],
- [219, 268, 285, 286, 692],
- [219, 268, 285, 286, 682],
- [219, 268, 285, 286, 659, 665, 666, 667, 669],
- [219, 268, 285, 286, 700],
- [219, 268, 285, 286, 668, 669, 698],
- [219, 268, 285, 286, 701],
- [219, 268, 285, 286, 694],
- [219, 268, 285, 286, 694, 713],
- [219, 268, 285, 286, 701, 702, 704],
- [219, 268, 285, 286, 676, 694],
- [219, 268, 285, 286, 688, 701],
- [219, 268, 285, 286, 678, 713],
- [219, 268, 285, 286, 661, 668, 675, 678, 692, 694, 704, 707],
- [219, 268, 285, 286, 662, 685, 700, 701, 702, 704, 713],
- [219, 268, 285, 286, 709],
- [219, 268, 285, 286, 682, 693],
- [219, 268, 285, 286, 672, 685, 831, 832],
- [219, 268, 285, 286, 697],
- [219, 268, 285, 286, 699, 700, 704],
- [219, 268, 285, 286, 839],
- [219, 268, 285, 286, 685],
- [219, 268, 285, 286, 698, 701, 704, 709, 713],
- [219, 268, 285, 286, 675, 708],
- [219, 268, 285, 286, 670, 671],
- [219, 268, 285, 286, 698, 704],
- [219, 268, 285, 286, 666, 668, 669, 673],
- [219, 268, 285, 286, 700, 701, 704, 832],
- [219, 268, 285, 286, 846],
- [219, 268, 285, 286, 668, 697, 698, 713],
- [219, 268, 285, 286, 709, 764],
- [219, 268, 285, 286, 667, 697, 713],
- [219, 268, 285, 286, 721, 723],
- [207, 219, 268, 285, 286, 954],
- [207, 219, 268, 285, 286, 870, 954],
- [219, 268, 285, 286, 954, 955, 956, 957, 958, 959, 961, 962, 963, 968, 969],
- [207, 219, 268, 285, 286, 870],
- [219, 268, 285, 286, 964, 965, 966],
- [207, 219, 268, 285, 286, 870, 954, 960],
- [219, 268, 285, 286, 870, 960],
- [219, 268, 285, 286, 870, 954, 960],
- [219, 268, 285, 286, 870, 954, 960, 967],
- [219, 268, 285, 286, 870, 954],
- [219, 268, 285, 286, 870, 873],
- [
- 219, 268, 285, 286, 870, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883,
- 884, 885, 886, 887, 888, 889
- ],
- [
- 219, 268, 285, 286, 870, 871, 872, 890, 891, 892, 893, 908, 918, 920, 928,
- 929, 930, 931, 932, 933, 934, 935, 936, 939, 942, 945, 948, 951, 952, 953
- ],
- [219, 268, 285, 286, 947],
- [219, 268, 285, 286, 870, 946],
- [219, 268, 285, 286, 938],
- [219, 268, 285, 286, 870, 937],
- [219, 268, 285, 286, 941],
- [219, 268, 285, 286, 870, 940],
- [219, 268, 285, 286, 950],
- [219, 268, 285, 286, 870, 949],
- [219, 268, 285, 286, 944],
- [219, 268, 285, 286, 870, 943],
- [219, 268, 285, 286, 870, 907],
- [219, 268, 285, 286, 870, 874],
- [219, 268, 285, 286, 870, 873, 875],
- [219, 268, 285, 286, 924],
- [219, 268, 285, 286, 870, 922, 923],
- [219, 268, 285, 286, 921, 924, 925, 926, 927],
- [219, 268, 285, 286, 870, 918],
- [219, 268, 285, 286, 919],
- [219, 268, 285, 286, 915, 916, 917],
- [219, 268, 285, 286, 870, 915],
- [219, 268, 285, 286, 909, 910, 912, 913, 914],
- [219, 268, 285, 286, 909],
- [219, 268, 285, 286, 870, 909, 910, 911, 912, 913],
- [219, 268, 285, 286, 870, 910, 912],
- [219, 268, 285, 286, 907],
- [219, 268, 285, 286, 916],
- [
- 219, 268, 285, 286, 870, 1168, 1170, 1171, 1191, 1192, 1193, 1195, 1196,
- 1197, 1198, 1199, 1200, 1201, 1202, 1203, 1204, 1205, 1206, 1207, 1208,
- 1209, 1210, 1214, 1215
- ],
- [219, 268, 285, 286, 1211, 1212, 1213],
- [
- 219, 268, 285, 286, 870, 1145, 1146, 1167, 1171, 1172, 1173, 1174, 1175,
- 1176, 1181, 1182, 1183, 1184, 1185, 1186, 1187, 1189, 1216
- ],
- [219, 268, 285, 286, 870, 1188],
- [219, 268, 280, 285, 286, 870],
- [219, 268, 282, 285, 286, 870, 1139],
- [219, 268, 279, 282, 285, 286, 870],
- [219, 268, 282, 285, 286, 870, 1172],
- [219, 268, 282, 285, 286, 870, 1139, 1145],
- [219, 268, 285, 286, 870, 1194],
- [219, 268, 285, 286, 870, 1172],
- [219, 268, 285, 286, 870, 1190],
- [219, 268, 285, 286, 1167, 1180],
- [219, 268, 285, 286, 870, 1042, 1108, 1167, 1171],
- [219, 268, 285, 286, 870, 1171, 1172],
- [219, 268, 282, 284, 285, 286],
- [219, 268, 285, 286, 870, 1168],
- [219, 268, 285, 286, 1169],
- [219, 268, 285, 286, 870, 1042, 1108, 1139, 1170],
- [219, 268, 285, 286, 870, 1042],
- [
- 219, 268, 285, 286, 870, 1167, 1217, 1218, 1219, 1223, 1224, 1230, 1234,
- 1238, 1242, 1245, 1249, 1253, 1257, 1261, 1265, 1278, 1279, 1306, 1311,
- 1314, 1319, 1325, 1329, 1333, 1336, 1340, 1344, 1347, 1348, 1349, 1350,
- 1351, 1352, 1358, 1363, 1364, 1365, 1366
- ],
- [219, 268, 285, 286, 1353, 1354, 1355, 1356, 1357],
- [219, 268, 282, 285, 286, 870, 1139, 1142, 1217, 1218],
- [219, 268, 285, 286, 870, 1222],
- [219, 268, 285, 286, 870, 1343],
- [219, 268, 285, 286, 870, 1139],
- [219, 268, 285, 286, 870, 1324],
- [219, 268, 285, 286, 870, 1339],
- [219, 268, 282, 285, 286, 870, 1229],
- [219, 268, 285, 286, 870, 1139, 1231, 1233],
- [219, 268, 285, 286, 1139, 1232],
- [219, 268, 285, 286, 870, 1361],
- [219, 268, 285, 286, 1362],
- [219, 268, 285, 286, 1139, 1359],
- [219, 268, 285, 286, 1359, 1360],
- [219, 268, 285, 286, 870, 1335],
- [219, 268, 285, 286, 870, 1237],
- [219, 268, 285, 286, 870, 1309, 1310],
- [219, 268, 285, 286, 300],
- [219, 268, 285, 286, 870, 1312, 1313],
- [219, 268, 285, 286, 870, 1241],
- [219, 268, 285, 286, 870, 1328],
- [219, 268, 285, 286, 870, 1318],
- [219, 268, 285, 286, 870, 1244],
- [219, 268, 285, 286, 870, 1248],
- [219, 268, 285, 286, 870, 1252],
- [219, 268, 285, 286, 870, 1256],
- [219, 268, 285, 286, 870, 1260],
- [219, 268, 285, 286, 870, 1277],
- [219, 268, 285, 286, 870, 1139, 1305],
- [219, 268, 285, 286, 870, 1264],
- [219, 268, 285, 286, 870, 1332],
- [219, 268, 285, 286, 870, 1345, 1346],
- [219, 268, 285, 286, 870, 1217, 1218],
- [219, 268, 285, 286, 1108, 1167, 1217],
- [219, 268, 285, 286, 870, 1042, 1108, 1217],
- [219, 267, 268, 285, 286, 1042],
- [219, 268, 285, 286, 870, 1150],
- [
- 219, 268, 285, 286, 870, 1147, 1149, 1150, 1151, 1152, 1153, 1154, 1155,
- 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1164, 1165, 1166
- ],
- [219, 268, 285, 286, 870, 1042, 1087],
- [219, 268, 285, 286, 870, 1042, 1108],
- [219, 268, 285, 286, 1042, 1108],
- [219, 268, 285, 286, 870, 1042, 1150],
- [219, 268, 285, 286, 1042, 1150],
- [219, 268, 285, 286, 1150],
- [219, 268, 285, 286, 1042, 1108, 1150],
- [219, 268, 285, 286, 870, 1108, 1111],
- [219, 268, 285, 286, 870, 1109, 1111, 1112, 1113, 1114],
- [219, 268, 285, 286, 870, 1109, 1111],
- [219, 268, 285, 286, 870, 1109, 1110],
- [219, 268, 285, 286, 1378, 1379],
- [219, 268, 285, 286, 1378],
- [219, 268, 285, 286, 1396],
- [219, 268, 285, 286, 1397],
- [219, 268, 282, 285, 286, 318],
- [219, 268, 285, 286, 2023],
- [219, 268, 285, 286, 2047],
- [219, 265, 266, 268, 285, 286],
- [219, 267, 268, 285, 286],
- [268, 285, 286],
- [219, 268, 273, 285, 286, 303],
- [219, 268, 269, 274, 279, 285, 286, 288, 300, 311],
- [219, 268, 269, 270, 279, 285, 286, 288],
- [214, 215, 216, 219, 268, 285, 286],
- [219, 268, 271, 285, 286, 312],
- [219, 268, 272, 273, 280, 285, 286, 289],
- [219, 268, 273, 285, 286, 300, 308],
- [219, 268, 274, 276, 279, 285, 286, 288],
- [219, 267, 268, 275, 285, 286],
- [219, 268, 276, 277, 285, 286],
- [219, 268, 278, 279, 285, 286],
- [219, 267, 268, 279, 285, 286],
- [219, 268, 279, 280, 281, 285, 286, 300, 311],
- [219, 268, 279, 280, 281, 285, 286, 295, 300, 303],
- [219, 261, 268, 276, 279, 282, 285, 286, 288, 300, 311],
- [219, 268, 279, 280, 282, 283, 285, 286, 288, 300, 308, 311],
- [219, 268, 282, 284, 285, 286, 300, 308, 311],
- [
- 217, 218, 219, 220, 221, 222, 223, 262, 263, 264, 265, 266, 267, 268, 269,
- 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284,
- 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299,
- 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314,
- 315, 316, 317
- ],
- [219, 268, 279, 285, 286],
- [219, 268, 285, 286, 287, 311],
- [219, 268, 276, 279, 285, 286, 288, 300],
- [219, 268, 285, 286, 289],
- [219, 267, 268, 285, 286, 291],
- [
- 219, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278,
- 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293,
- 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308,
- 309, 310, 311, 312, 313, 314, 315, 316, 317
- ],
- [219, 268, 285, 286, 293],
- [219, 268, 285, 286, 294],
- [219, 268, 279, 285, 286, 295, 296],
- [219, 268, 285, 286, 295, 297, 312, 314],
- [219, 268, 280, 285, 286],
- [219, 268, 279, 285, 286, 300, 301, 303],
- [219, 268, 285, 286, 302, 303],
- [219, 268, 285, 286, 300, 301],
- [219, 268, 285, 286, 303],
- [219, 268, 285, 286, 304],
- [219, 265, 268, 285, 286, 300, 305, 311],
- [219, 268, 279, 285, 286, 306, 307],
- [219, 268, 285, 286, 306, 307],
- [219, 268, 273, 285, 286, 288, 300, 308],
- [219, 268, 285, 286, 309],
- [219, 268, 285, 286, 288, 310],
- [219, 268, 282, 285, 286, 294, 311],
- [219, 268, 273, 285, 286, 312],
- [219, 268, 285, 286, 300, 313],
- [219, 268, 285, 286, 287, 314],
- [219, 268, 285, 286, 315],
- [219, 261, 268, 285, 286],
- [219, 261, 268, 279, 281, 285, 286, 291, 300, 303, 311, 313, 314, 316],
- [219, 268, 285, 286, 300, 317],
- [219, 268, 285, 286, 1272],
- [219, 268, 279, 285, 286, 300, 308, 318, 1266, 1267, 1270, 1271, 1272],
- [207, 211, 219, 268, 285, 286, 319, 320, 321, 323, 324, 325, 588, 605, 650],
- [207, 211, 219, 268, 285, 286, 319, 320, 321, 322, 324, 605, 650],
- [207, 219, 268, 285, 286, 322, 325],
- [207, 211, 219, 268, 285, 286, 320, 324, 325, 605, 650],
- [207, 211, 219, 268, 285, 286, 319, 324, 325, 605, 650],
- [205, 206, 219, 268, 285, 286],
- [77, 80, 219, 268, 285, 286],
- [81, 219, 268, 285, 286],
- [77, 126, 135, 146, 149, 219, 268, 285, 286],
- [77, 147, 154, 219, 268, 285, 286],
- [77, 106, 107, 219, 268, 285, 286],
- [108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 219, 268, 285, 286],
- [77, 106, 219, 268, 285, 286],
- [
- 106, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 219, 268,
- 285, 286
- ],
- [120, 121, 126, 147, 149, 151, 152, 155, 219, 268, 285, 286],
- [77, 150, 219, 268, 285, 286],
- [77, 126, 149, 219, 268, 285, 286],
- [77, 121, 147, 149, 152, 219, 268, 285, 286],
- [77, 150, 151, 219, 268, 285, 286],
- [77, 97, 219, 268, 285, 286],
- [153, 219, 268, 285, 286],
- [77, 127, 132, 145, 147, 219, 268, 285, 286],
- [77, 121, 126, 127, 132, 145, 147, 219, 268, 285, 286],
- [77, 126, 127, 132, 145, 147, 219, 268, 285, 286],
- [
- 128, 129, 130, 131, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143,
- 144, 146, 148, 219, 268, 285, 286
- ],
- [77, 120, 121, 126, 127, 128, 129, 130, 131, 145, 147, 219, 268, 285, 286],
- [
- 127, 128, 129, 130, 131, 133, 134, 136, 137, 138, 139, 140, 141, 142, 143,
- 144, 145, 146, 148, 219, 268, 285, 286
- ],
- [77, 122, 219, 268, 285, 286],
- [123, 124, 149, 219, 268, 285, 286],
- [122, 219, 268, 285, 286],
- [77, 120, 121, 149, 219, 268, 285, 286],
- [123, 124, 125, 219, 268, 285, 286],
- [72, 219, 268, 285, 286],
- [73, 74, 75, 76, 219, 268, 285, 286],
- [72, 74, 219, 268, 285, 286],
- [73, 76, 219, 268, 285, 286],
- [72, 87, 219, 268, 285, 286],
- [72, 87, 88, 219, 268, 285, 286],
- [
- 78, 79, 85, 88, 89, 90, 91, 92, 93, 94, 98, 99, 100, 101, 219, 268, 285,
- 286
- ],
- [72, 85, 219, 268, 285, 286],
- [77, 219, 268, 285, 286],
- [72, 82, 83, 85, 86, 88, 219, 268, 285, 286],
- [72, 77, 85, 219, 268, 285, 286],
- [72, 85, 92, 219, 268, 285, 286],
- [85, 97, 219, 268, 285, 286],
- [72, 77, 83, 219, 268, 285, 286],
- [77, 83, 84, 219, 268, 285, 286],
- [103, 170, 219, 268, 285, 286],
- [171, 172, 173, 174, 175, 219, 268, 285, 286],
- [103, 219, 268, 285, 286],
- [176, 177, 178, 179, 219, 268, 285, 286],
- [170, 219, 268, 285, 286],
- [161, 219, 268, 285, 286],
- [181, 182, 183, 184, 185, 186, 219, 268, 285, 286],
- [103, 159, 170, 180, 187, 190, 219, 268, 285, 286],
- [105, 158, 161, 163, 219, 268, 285, 286],
- [166, 167, 219, 268, 285, 286],
- [158, 160, 161, 163, 164, 219, 268, 285, 286],
- [103, 105, 157, 219, 268, 285, 286],
- [162, 219, 268, 285, 286],
- [103, 104, 157, 159, 160, 162, 164, 219, 268, 285, 286],
- [103, 105, 161, 162, 164, 219, 268, 285, 286],
- [156, 219, 268, 285, 286],
- [103, 157, 158, 219, 268, 285, 286],
- [161, 162, 219, 268, 285, 286],
- [164, 165, 219, 268, 285, 286],
- [162, 164, 165, 219, 268, 285, 286],
- [104, 105, 157, 158, 160, 161, 162, 163, 164, 168, 169, 219, 268, 285, 286],
- [77, 102, 219, 268, 285, 286],
- [188, 189, 219, 268, 285, 286],
- [95, 96, 219, 268, 285, 286],
- [219, 268, 285, 286, 1490, 1491],
- [219, 268, 285, 286, 1490],
- [207, 219, 268, 285, 286, 1502],
- [219, 268, 285, 286, 2633, 2652, 2654],
- [219, 268, 285, 286, 2632, 2655, 2657, 2658, 2661, 2662, 2663, 2664],
- [219, 268, 285, 286, 2631, 2632],
- [219, 268, 285, 286, 2654],
- [219, 268, 285, 286, 2652, 2660, 2661, 2662, 2665],
- [219, 268, 285, 286, 2633, 2657, 2659],
- [219, 268, 285, 286, 2631, 2632, 2633, 2655, 2656, 2657, 2658, 2660],
- [219, 268, 285, 286, 2631],
- [219, 268, 285, 286, 2631, 2657, 2658],
- [219, 268, 285, 286, 2631, 2654],
- [219, 268, 285, 286, 2631, 2658, 2661, 2662],
- [219, 268, 285, 286, 2631, 2634, 2656],
- [219, 268, 285, 286, 2652, 2676],
- [207, 219, 268, 285, 286, 2661],
- [
- 207, 219, 268, 285, 286, 2631, 2633, 2653, 2654, 2657, 2661, 2662, 2665,
- 2668
- ],
- [219, 268, 285, 286, 2661, 2666, 2667, 2669, 2672, 2673, 2674, 2675],
- [219, 268, 285, 286, 2631, 2654, 2657, 2662, 2669, 2670, 2672],
- [219, 268, 285, 286, 2624, 2631, 2652, 2654, 2665],
- [219, 268, 285, 286, 2666],
- [219, 268, 285, 286, 2631, 2654, 2671],
- [219, 268, 285, 286, 2624, 2638, 2653],
- [219, 268, 285, 286, 2649, 2653, 2654],
- [219, 268, 285, 286, 2631, 2646, 2654],
- [219, 268, 285, 286, 2631, 2635, 2640, 2641, 2642],
- [219, 268, 285, 286, 2631, 2635],
- [219, 268, 285, 286, 2635, 2653],
- [
- 219, 268, 285, 286, 2624, 2634, 2635, 2636, 2637, 2638, 2639, 2640, 2641,
- 2642, 2643, 2644, 2645, 2646, 2647, 2648, 2650, 2651, 2653, 2654
- ],
- [219, 268, 285, 286, 2635],
- [219, 268, 285, 286, 2623, 2625],
- [219, 268, 285, 286, 2635, 2636, 2637, 2638, 2639],
- [219, 268, 285, 286, 2623, 2624, 2625, 2626, 2635, 2646, 2651, 2652, 2654],
- [219, 268, 285, 286, 2653],
- [219, 268, 285, 286, 2623, 2654],
- [219, 268, 285, 286, 2624, 2625, 2626, 2635, 2641],
- [219, 268, 285, 286, 2624, 2631, 2635],
- [219, 268, 285, 286, 2623, 2635],
- [219, 268, 285, 286, 2623],
- [219, 268, 285, 286, 2623, 2625, 2626, 2627, 2628, 2629, 2630],
- [219, 268, 285, 286, 2624, 2625, 2631],
- [219, 268, 285, 286, 2623, 2624, 2626, 2631],
- [219, 268, 285, 286, 1561],
- [219, 268, 285, 286, 1559, 1561],
- [219, 268, 285, 286, 1559],
- [219, 268, 285, 286, 1561, 1625, 1626],
- [219, 268, 285, 286, 1561, 1628],
- [219, 268, 285, 286, 1561, 1629],
- [219, 268, 285, 286, 1646],
- [
- 219, 268, 285, 286, 1561, 1562, 1563, 1564, 1565, 1566, 1567, 1568, 1569,
- 1570, 1571, 1572, 1573, 1574, 1575, 1576, 1577, 1578, 1579, 1580, 1581,
- 1582, 1583, 1584, 1585, 1586, 1587, 1588, 1589, 1590, 1591, 1592, 1593,
- 1594, 1595, 1596, 1597, 1598, 1599, 1600, 1601, 1602, 1603, 1604, 1605,
- 1606, 1607, 1608, 1609, 1610, 1611, 1612, 1613, 1614, 1615, 1616, 1617,
- 1618, 1619, 1620, 1621, 1622, 1623, 1624, 1627, 1628, 1629, 1630, 1631,
- 1632, 1633, 1634, 1635, 1636, 1637, 1638, 1639, 1640, 1641, 1642, 1643,
- 1644, 1645, 1647, 1648, 1649, 1650, 1651, 1652, 1653, 1654, 1655, 1656,
- 1657, 1658, 1659, 1660, 1661, 1662, 1663, 1664, 1665, 1666, 1667, 1668,
- 1669, 1670, 1671, 1672, 1673, 1674, 1675, 1676, 1677, 1678, 1679, 1680,
- 1681, 1682, 1683, 1684, 1685, 1686, 1687, 1688, 1689, 1690, 1691, 1692,
- 1693, 1694, 1695, 1696, 1697, 1698, 1699, 1700, 1701, 1702, 1703, 1704,
- 1705, 1706, 1707, 1708, 1709, 1710, 1711, 1712, 1713, 1714, 1715, 1716,
- 1717, 1718, 1719, 1720, 1721, 1723, 1724, 1725, 1726, 1727, 1728, 1729,
- 1730, 1731, 1732, 1733, 1734, 1735, 1736, 1737, 1738, 1739, 1740, 1741,
- 1742, 1747, 1748, 1749, 1750, 1751, 1752, 1753, 1754, 1755, 1756, 1757,
- 1758, 1759, 1760, 1761, 1762, 1763, 1764, 1765, 1766, 1767, 1768, 1769,
- 1770, 1771, 1772, 1773, 1774, 1775, 1776, 1777, 1778, 1779, 1780, 1781,
- 1782, 1783, 1784, 1785, 1786, 1787, 1788, 1789, 1790, 1791, 1792, 1793,
- 1794, 1795, 1796, 1797, 1798, 1799, 1800, 1801, 1802, 1803, 1804, 1805,
- 1806, 1807, 1808, 1809, 1810, 1811, 1812, 1813, 1814
- ],
- [219, 268, 285, 286, 1561, 1722],
- [
- 219, 268, 285, 286, 1559, 1816, 1817, 1818, 1819, 1820, 1821, 1822, 1823,
- 1824, 1825, 1826, 1827, 1828, 1829, 1830, 1831, 1832, 1833, 1834, 1835,
- 1836, 1837, 1838, 1839, 1840, 1841, 1842, 1843, 1844, 1845, 1846, 1847,
- 1848, 1849, 1850, 1851, 1852, 1853, 1854, 1855, 1856, 1857, 1858, 1859,
- 1860, 1861, 1862, 1863, 1864, 1865, 1866, 1867, 1868, 1869, 1870, 1871,
- 1872, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1881, 1882, 1883,
- 1884, 1885, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1893, 1894, 1895,
- 1896, 1897, 1898, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907,
- 1908, 1909, 1910
- ],
- [219, 268, 285, 286, 1561, 1626, 1746],
- [219, 268, 285, 286, 1559, 1743, 1744],
- [219, 268, 285, 286, 1561, 1743],
- [219, 268, 285, 286, 1745],
- [219, 268, 285, 286, 1558, 1559, 1560],
- [219, 268, 285, 286, 2019],
- [219, 268, 285, 286, 2020],
- [219, 268, 285, 286, 1993, 2013],
- [219, 268, 285, 286, 1987],
- [
- 219, 268, 285, 286, 1988, 1992, 1993, 1994, 1995, 1996, 1998, 2000, 2001,
- 2006, 2007, 2016
- ],
- [219, 268, 285, 286, 1988, 1993],
- [219, 268, 285, 286, 1996, 2013, 2015, 2018],
- [
- 219, 268, 285, 286, 1987, 1988, 1989, 1990, 1993, 1994, 1995, 1996, 1997,
- 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009,
- 2010, 2011, 2012, 2017, 2018
- ],
- [219, 268, 285, 286, 2016],
- [219, 268, 285, 286, 1986, 1988, 1989, 1991, 1999, 2008, 2011, 2012, 2017],
- [219, 268, 285, 286, 1993, 2018],
- [219, 268, 285, 286, 2014, 2016, 2018],
- [219, 268, 285, 286, 1987, 1988, 1993, 1996, 2016],
- [219, 268, 285, 286, 2000],
- [219, 268, 285, 286, 1990, 1998, 2000, 2001],
- [219, 268, 285, 286, 1990],
- [219, 268, 285, 286, 1990, 2000],
- [219, 268, 285, 286, 1994, 1995, 1996, 2000, 2001, 2006],
- [219, 268, 285, 286, 1996, 1997, 2001, 2005, 2007, 2016],
- [219, 268, 285, 286, 1988, 2000, 2009],
- [219, 268, 285, 286, 1989, 1990, 1991],
- [219, 268, 285, 286, 1996, 2016],
- [219, 268, 285, 286, 1996],
- [219, 268, 285, 286, 1987, 1988],
- [219, 268, 285, 286, 1988],
- [219, 268, 285, 286, 1992],
- [219, 268, 285, 286, 1996, 2001, 2013, 2014, 2015, 2016, 2018],
- [191, 219, 268, 285, 286],
- [67, 69, 219, 268, 285, 286],
- [201, 219, 268, 285, 286],
- [63, 219, 268, 285, 286],
- [61, 67, 68, 219, 268, 285, 286],
- [219, 268, 285, 286, 1386],
- [219, 268, 285, 286, 1388, 1390, 1391],
- [219, 268, 285, 286, 655, 1389],
- [219, 268, 285, 286, 608],
- [219, 268, 285, 286, 610, 611, 612, 613],
- [219, 268, 285, 286, 558, 619, 620],
- [219, 268, 285, 286, 330, 331, 333, 345, 369, 484, 495, 601],
- [219, 268, 285, 286, 333, 364, 365, 366, 368, 601],
- [219, 268, 285, 286, 333, 501, 503, 505, 506, 508, 601, 603],
- [219, 268, 285, 286, 333, 367, 404, 601],
- [
- 219, 268, 285, 286, 331, 333, 344, 345, 351, 357, 362, 483, 484, 485, 494,
- 601, 603
- ],
- [219, 268, 285, 286, 601],
- [219, 268, 285, 286, 340, 346, 365, 385, 480],
- [219, 268, 285, 286, 333],
- [219, 268, 285, 286, 326, 340, 346],
- [219, 268, 285, 286, 512],
- [219, 268, 285, 286, 509, 510, 512],
- [219, 268, 285, 286, 509, 511, 601],
- [219, 268, 282, 285, 286, 385, 582, 598],
- [219, 268, 282, 285, 286, 456, 459, 475, 480, 598],
- [219, 268, 282, 285, 286, 428, 598],
- [219, 268, 285, 286, 488],
- [219, 268, 285, 286, 487, 488, 489],
- [219, 268, 285, 286, 487],
- [
- 213, 219, 268, 282, 285, 286, 326, 333, 345, 351, 357, 363, 365, 369, 370,
- 383, 384, 451, 481, 482, 495, 601, 605
- ],
- [219, 268, 285, 286, 330, 333, 367, 404, 501, 502, 507, 601, 653],
- [219, 268, 285, 286, 367, 653],
- [219, 268, 285, 286, 330, 384, 553, 601, 653],
- [219, 268, 285, 286, 653],
- [219, 268, 285, 286, 333, 367, 368, 653],
- [219, 268, 285, 286, 504, 653],
- [219, 268, 285, 286, 370, 483, 486, 493],
- [207, 219, 268, 285, 286, 558],
- [219, 268, 285, 286, 294, 340, 355],
- [219, 268, 285, 286, 340, 355],
- [207, 219, 268, 285, 286, 425],
- [207, 219, 268, 285, 286, 346, 355, 558],
- [219, 268, 285, 286, 340, 411, 425, 426, 635, 642],
- [219, 268, 285, 286, 410, 636, 637, 638, 639, 641],
- [219, 268, 285, 286, 461],
- [219, 268, 285, 286, 461, 462],
- [219, 268, 285, 286, 344, 346, 413, 414],
- [219, 268, 285, 286, 346, 420, 421],
- [219, 268, 285, 286, 346, 415, 423],
- [219, 268, 285, 286, 420],
- [219, 268, 285, 286, 338, 346, 413, 414, 415, 416, 417, 418, 419, 420, 423],
- [219, 268, 285, 286, 346, 413, 420, 421, 422, 424],
- [219, 268, 285, 286, 346, 414, 416, 417],
- [219, 268, 285, 286, 414, 416, 419, 421],
- [219, 268, 285, 286, 640],
- [219, 268, 285, 286, 346],
- [207, 219, 268, 285, 286, 334, 629],
- [207, 219, 268, 285, 286, 311],
- [207, 219, 268, 285, 286, 367, 402],
- [207, 219, 268, 285, 286, 367, 495],
- [219, 268, 285, 286, 400, 405],
- [207, 219, 268, 285, 286, 401, 607],
- [219, 268, 285, 286, 1485],
- [207, 211, 219, 268, 282, 285, 286, 319, 320, 324, 325, 605, 649],
- [219, 268, 282, 285, 286, 346],
- [
- 219, 268, 282, 285, 286, 345, 350, 431, 448, 490, 491, 495, 550, 552, 601,
- 602
- ],
- [219, 268, 285, 286, 383, 492],
- [219, 268, 285, 286, 605],
- [219, 268, 285, 286, 332],
- [207, 219, 268, 285, 286, 337, 340, 555, 571, 573],
- [219, 268, 285, 286, 294, 340, 555, 570, 571, 572, 652],
- [219, 268, 285, 286, 564, 565, 566, 567, 568, 569],
- [219, 268, 285, 286, 566],
- [219, 268, 285, 286, 570],
- [219, 268, 285, 286, 355, 519, 520, 522],
- [207, 219, 268, 285, 286, 346, 513, 514, 515, 516, 521],
- [219, 268, 285, 286, 519, 521],
- [219, 268, 285, 286, 517],
- [219, 268, 285, 286, 518],
- [207, 219, 268, 285, 286, 355, 401, 607],
- [207, 219, 268, 285, 286, 355, 606, 607],
- [207, 219, 268, 285, 286, 355, 607],
- [219, 268, 285, 286, 448, 449],
- [219, 268, 285, 286, 449],
- [219, 268, 282, 285, 286, 602, 607],
- [219, 268, 285, 286, 478],
- [219, 267, 268, 285, 286, 477],
- [
- 219, 268, 285, 286, 340, 346, 352, 354, 456, 469, 473, 475, 552, 555, 590,
- 591, 598, 602
- ],
- [219, 268, 285, 286, 346, 395, 417],
- [219, 268, 285, 286, 456, 467, 470, 475],
- [
- 207, 219, 268, 285, 286, 337, 340, 456, 459, 475, 478, 512, 559, 560, 561,
- 562, 563, 574, 575, 576, 577, 578, 579, 580, 581, 653
- ],
- [219, 268, 285, 286, 337, 340, 365, 456, 463, 464, 465, 468, 469],
- [219, 268, 285, 286, 300, 346, 365, 467, 474, 555, 556, 598],
- [219, 268, 285, 286, 471],
- [
- 219, 268, 282, 285, 286, 294, 334, 346, 350, 360, 392, 393, 396, 448, 451,
- 516, 550, 551, 590, 601, 602, 603, 605, 653
- ],
- [219, 268, 285, 286, 337, 338, 340],
- [219, 268, 285, 286, 456],
- [219, 267, 268, 285, 286, 365, 392, 393, 450, 451, 452, 453, 454, 455, 602],
- [219, 268, 285, 286, 475],
- [
- 219, 267, 268, 285, 286, 339, 340, 350, 354, 390, 456, 463, 464, 465, 466,
- 467, 470, 471, 472, 473, 474, 591
- ],
- [219, 268, 282, 285, 286, 390, 391, 463, 602, 603],
- [219, 268, 285, 286, 365, 393, 448, 451, 456, 552, 602],
- [219, 268, 282, 285, 286, 601, 603],
- [219, 268, 282, 285, 286, 300, 598, 602, 603],
- [
- 219, 268, 282, 285, 286, 294, 326, 340, 345, 352, 354, 357, 360, 367, 387,
- 392, 393, 394, 395, 396, 431, 432, 434, 437, 439, 442, 443, 444, 445, 447,
- 495, 550, 552, 598, 601, 602, 603
- ],
- [219, 268, 282, 285, 286, 300],
- [219, 268, 285, 286, 333, 334, 335, 363, 598, 599, 600, 605, 607, 653],
- [219, 268, 285, 286, 330, 331, 601],
- [219, 268, 285, 286, 524],
- [
- 219, 268, 282, 285, 286, 300, 311, 342, 508, 512, 513, 514, 515, 516, 522,
- 523, 653
- ],
- [
- 219, 268, 285, 286, 294, 311, 326, 340, 342, 354, 357, 393, 432, 437, 447,
- 448, 501, 528, 529, 530, 536, 539, 540, 550, 552, 598, 601
- ],
- [219, 268, 285, 286, 357, 363, 370, 383, 393, 451, 601],
- [219, 268, 282, 285, 286, 311, 334, 345, 354, 393, 534, 598, 601],
- [219, 268, 285, 286, 554],
- [219, 268, 282, 285, 286, 524, 537, 538, 547],
- [219, 268, 285, 286, 598, 601],
- [219, 268, 285, 286, 453, 591],
- [219, 268, 285, 286, 354, 392, 495, 607],
- [219, 268, 282, 285, 286, 294, 332, 437, 497, 501, 530, 536, 539, 542, 598],
- [219, 268, 282, 285, 286, 370, 383, 501, 543],
- [219, 268, 285, 286, 333, 394, 495, 545, 601, 603],
- [219, 268, 282, 285, 286, 311, 516, 601],
- [219, 268, 282, 285, 286, 367, 394, 495, 496, 497, 506, 524, 544, 546, 601],
- [213, 219, 268, 282, 285, 286, 392, 549, 605, 607],
- [219, 268, 285, 286, 446, 550],
- [
- 219, 268, 282, 285, 286, 294, 340, 343, 345, 346, 352, 354, 360, 369, 370,
- 383, 393, 396, 432, 434, 444, 447, 448, 495, 528, 529, 530, 531, 533, 535,
- 550, 552, 598, 607
- ],
- [219, 268, 282, 285, 286, 300, 370, 536, 541, 547, 598],
- [219, 268, 285, 286, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382],
- [219, 268, 285, 286, 387, 438],
- [219, 268, 285, 286, 440],
- [219, 268, 285, 286, 438],
- [219, 268, 285, 286, 440, 441],
- [219, 268, 282, 285, 286, 344, 345, 346, 350, 351, 602],
- [
- 219, 268, 282, 285, 286, 294, 332, 334, 352, 356, 392, 395, 396, 430, 550,
- 598, 603, 605, 607
- ],
- [
- 219, 268, 282, 285, 286, 294, 311, 336, 343, 344, 354, 356, 393, 548, 591,
- 597, 602
- ],
- [219, 268, 285, 286, 463],
- [219, 268, 285, 286, 464],
- [219, 268, 285, 286, 346, 357, 590],
- [219, 268, 285, 286, 465],
- [219, 268, 285, 286, 339],
- [219, 268, 285, 286, 341, 353],
- [219, 268, 282, 285, 286, 341, 345, 352],
- [219, 268, 285, 286, 348, 353],
- [219, 268, 285, 286, 349],
- [219, 268, 285, 286, 341, 342],
- [219, 268, 285, 286, 341, 397],
- [219, 268, 285, 286, 341],
- [219, 268, 285, 286, 343, 387, 436],
- [219, 268, 285, 286, 435],
- [219, 268, 285, 286, 340, 342, 343],
- [219, 268, 285, 286, 343, 433],
- [219, 268, 285, 286, 340, 342],
- [219, 268, 285, 286, 392, 495],
- [219, 268, 285, 286, 590],
- [
- 219, 268, 282, 285, 286, 311, 352, 354, 358, 392, 495, 549, 552, 555, 556,
- 557, 583, 584, 587, 589, 591, 598, 602
- ],
- [219, 268, 285, 286, 406, 409, 411, 412, 425, 426],
- [207, 219, 268, 285, 286, 321, 325, 355, 585, 586],
- [207, 219, 268, 285, 286, 321, 324, 325, 355, 585, 586, 588],
- [219, 268, 285, 286, 479],
- [
- 219, 268, 285, 286, 365, 386, 391, 392, 456, 457, 458, 459, 460, 462, 475,
- 476, 478, 481, 549, 552, 601, 603
- ],
- [219, 268, 285, 286, 425],
- [219, 268, 282, 285, 286, 430, 598],
- [219, 268, 285, 286, 430],
- [219, 268, 282, 285, 286, 352, 398, 427, 429, 431, 549, 598, 605, 607],
- [219, 268, 285, 286, 406, 407, 408, 409, 411, 412, 425, 426, 606],
- [
- 213, 219, 268, 282, 285, 286, 294, 311, 341, 342, 354, 360, 392, 393, 396,
- 495, 547, 548, 550, 598, 601, 602, 605
- ],
- [219, 268, 285, 286, 337, 340, 347],
- [219, 268, 285, 286, 391, 393, 525, 528],
- [219, 268, 285, 286, 391, 526, 592, 593, 594, 595, 596],
- [219, 268, 282, 285, 286, 387, 601],
- [219, 268, 282, 285, 286],
- [219, 268, 285, 286, 390, 475],
- [219, 268, 285, 286, 389],
- [219, 268, 285, 286, 391, 444],
- [219, 268, 285, 286, 388, 390, 601],
- [219, 268, 282, 285, 286, 336, 391, 525, 526, 527, 598, 601, 602],
- [207, 219, 268, 285, 286, 340, 346, 424],
- [207, 219, 268, 285, 286, 338],
- [219, 268, 285, 286, 328, 329],
- [207, 219, 268, 285, 286, 334],
- [207, 219, 268, 285, 286, 340, 410],
- [207, 213, 219, 268, 285, 286, 392, 396, 605, 607],
- [219, 268, 285, 286, 334, 629, 630],
- [207, 219, 268, 285, 286, 405],
- [207, 219, 268, 285, 286, 294, 311, 332, 399, 401, 403, 404, 607],
- [219, 268, 285, 286, 340, 367, 602],
- [219, 268, 285, 286, 340, 532],
- [207, 219, 268, 280, 282, 285, 286, 294, 330, 332, 405, 503, 605, 606],
- [207, 219, 268, 285, 286, 319, 320, 324, 325, 605, 650],
- [207, 208, 209, 210, 211, 219, 268, 285, 286],
- [219, 268, 273, 285, 286],
- [219, 268, 285, 286, 498, 499, 500],
- [219, 268, 285, 286, 498],
- [
- 207, 211, 219, 268, 282, 284, 285, 286, 294, 318, 319, 320, 321, 324, 325,
- 326, 332, 360, 365, 542, 570, 603, 604, 607, 650
- ],
- [219, 268, 285, 286, 615],
- [219, 268, 285, 286, 617],
- [219, 268, 285, 286, 621],
- [219, 268, 285, 286, 1486],
- [219, 268, 285, 286, 623],
- [219, 268, 285, 286, 625, 626, 627],
- [219, 268, 285, 286, 631],
- [
- 212, 219, 268, 285, 286, 609, 614, 616, 618, 622, 624, 628, 632, 634, 644,
- 645, 647, 651, 652, 653, 654
- ],
- [219, 268, 285, 286, 633],
- [219, 268, 285, 286, 643],
- [219, 268, 285, 286, 401],
- [219, 268, 285, 286, 646],
- [219, 267, 268, 285, 286, 391, 525, 526, 528, 592, 593, 595, 596, 648, 650],
- [219, 268, 285, 286, 318],
- [219, 268, 285, 286, 2714],
- [219, 268, 285, 286, 2714, 2715, 2721],
- [219, 268, 285, 286, 2714, 2715],
- [219, 268, 285, 286, 2714, 2715, 2716, 2717, 2718, 2719, 2720],
- [219, 268, 285, 286, 318, 1267, 1268, 1269],
- [219, 268, 285, 286, 300, 318, 1267],
- [219, 268, 285, 286, 2693],
- [219, 268, 285, 286, 2694],
- [
- 219, 268, 285, 286, 1494, 1497, 1498, 1501, 1502, 1503, 1504, 1505, 1506,
- 1512, 1513, 1514, 1515, 1516, 1517, 1518, 1519, 1520, 1521, 1522, 1523,
- 1524, 1525, 1526, 1527, 1528, 1529, 1530, 1531, 1532, 1533, 1534, 1535,
- 1536, 1537
- ],
- [207, 219, 268, 285, 286, 1936],
- [219, 268, 285, 286, 1969],
- [219, 268, 285, 286, 1930],
- [219, 268, 285, 286, 1970],
- [219, 268, 285, 286, 1815, 1911, 1967, 1968],
- [219, 268, 285, 286, 1930, 1931, 1969, 1970],
- [207, 219, 268, 285, 286, 1936, 1971],
- [207, 219, 268, 285, 286, 1931],
- [207, 219, 268, 285, 286, 1971],
- [207, 219, 268, 285, 286, 1939],
- [
- 219, 268, 285, 286, 1912, 1913, 1914, 1915, 1916, 1937, 1938, 1939, 1940,
- 1941, 1942, 1943, 1944, 1945, 1946, 1947, 1948, 1949, 1950, 1951, 1952,
- 1953, 1954, 1955, 1956, 1957
- ],
- [219, 268, 285, 286, 1959, 1960, 1961, 1962, 1963, 1964, 1965],
- [219, 268, 285, 286, 1936],
- [219, 268, 285, 286, 1973],
- [
- 219, 268, 285, 286, 1557, 1928, 1929, 1934, 1936, 1958, 1966, 1971, 1972,
- 1974, 1982
- ],
- [
- 219, 268, 285, 286, 1917, 1918, 1919, 1920, 1921, 1922, 1923, 1924, 1925,
- 1926, 1927
- ],
- [219, 268, 285, 286, 1936, 1969],
- [219, 268, 285, 286, 1915, 1916, 1928, 1929, 1932, 1934, 1967],
- [219, 268, 285, 286, 1932, 1933, 1935, 1967],
- [207, 219, 268, 285, 286, 1929, 1967, 1969],
- [219, 268, 285, 286, 1932, 1967],
- [207, 219, 268, 285, 286, 1928, 1929, 1958, 1966],
- [207, 219, 268, 285, 286, 1931, 1932, 1933, 1967, 1970],
- [219, 268, 285, 286, 1975, 1976, 1977, 1978, 1979, 1980, 1981],
- [207, 219, 268, 285, 286, 2562],
- [
- 219, 268, 285, 286, 2562, 2563, 2564, 2567, 2568, 2569, 2570, 2571, 2572,
- 2573, 2576, 2577
- ],
- [219, 268, 285, 286, 2562],
- [219, 268, 285, 286, 2565, 2566],
- [207, 219, 268, 285, 286, 2560, 2562],
- [219, 268, 285, 286, 2557, 2558, 2560],
- [219, 268, 285, 286, 2553, 2556, 2558, 2560],
- [219, 268, 285, 286, 2557, 2560],
- [
- 207, 219, 268, 285, 286, 2548, 2549, 2550, 2553, 2554, 2555, 2557, 2558,
- 2559, 2560
- ],
- [
- 219, 268, 285, 286, 2550, 2553, 2554, 2555, 2556, 2557, 2558, 2559, 2560,
- 2561
- ],
- [219, 268, 285, 286, 2557],
- [219, 268, 285, 286, 2551, 2557, 2558],
- [219, 268, 285, 286, 2551, 2552],
- [219, 268, 285, 286, 2556, 2558, 2559],
- [219, 268, 285, 286, 2556],
- [219, 268, 285, 286, 2548, 2553, 2558, 2559],
- [219, 268, 285, 286, 2574, 2575],
- [
- 207, 219, 268, 285, 286, 2028, 2039, 2044, 2050, 2051, 2058, 2060, 2061,
- 2063, 2104, 2107
- ],
- [
- 207, 219, 268, 285, 286, 2028, 2039, 2044, 2049, 2051, 2060, 2064, 2065,
- 2067, 2068, 2104, 2107
- ],
- [207, 219, 268, 285, 286, 2060, 2065, 2109],
- [207, 219, 268, 285, 286, 2043, 2107],
- [207, 219, 268, 285, 286, 2027, 2028, 2030, 2039, 2107],
- [207, 219, 268, 285, 286, 2028, 2039, 2060, 2098, 2107],
- [207, 219, 268, 285, 286, 2028, 2066, 2087, 2091, 2107],
- [207, 219, 268, 285, 286, 2051, 2074, 2075, 2107, 2148],
- [207, 219, 268, 285, 286, 2028, 2039, 2044, 2050, 2051, 2104, 2107],
- [207, 219, 268, 285, 286, 2028, 2030, 2065, 2079, 2131],
- [207, 219, 268, 285, 286, 2026, 2028, 2030, 2079],
- [207, 219, 268, 285, 286, 2028, 2030, 2059, 2079, 2080, 2107],
- [
- 207, 219, 268, 285, 286, 2028, 2039, 2042, 2046, 2050, 2051, 2075, 2089,
- 2090, 2104, 2107
- ],
- [207, 219, 268, 285, 286, 2032, 2039, 2107],
- [207, 219, 268, 285, 286, 2032, 2039, 2104, 2107],
- [219, 268, 285, 286, 2027, 2107],
- [219, 268, 285, 286, 2039, 2107],
- [207, 219, 268, 285, 286, 2107],
- [207, 219, 268, 285, 286, 2065, 2075, 2107],
- [207, 219, 268, 285, 286, 2027, 2075, 2107],
- [207, 219, 268, 285, 286, 2075, 2107],
- [207, 219, 268, 285, 286, 2040],
- [207, 219, 268, 285, 286, 2028, 2075, 2107],
- [207, 219, 268, 285, 286, 2026, 2028, 2107],
- [207, 219, 268, 285, 286, 2027, 2028, 2029, 2107],
- [207, 219, 268, 285, 286, 2027, 2028, 2030, 2107, 2159],
- [207, 219, 268, 285, 286, 2052, 2053, 2054],
- [207, 219, 268, 285, 286, 2039, 2041, 2042, 2053, 2075, 2107, 2110],
- [219, 268, 285, 286, 2097, 2107],
- [219, 268, 285, 286, 2039, 2040, 2059, 2102, 2104, 2107],
- [
- 219, 268, 285, 286, 2026, 2027, 2028, 2030, 2031, 2032, 2039, 2040, 2042,
- 2050, 2051, 2052, 2055, 2059, 2062, 2065, 2066, 2075, 2079, 2081, 2087,
- 2089, 2090, 2091, 2092, 2099, 2102, 2103, 2104, 2107, 2108, 2109, 2111,
- 2112, 2113, 2114, 2115, 2116, 2117, 2118, 2120, 2122, 2124, 2125, 2126,
- 2127, 2128, 2129, 2132, 2133, 2134, 2135, 2136, 2137, 2138, 2139, 2140,
- 2141, 2142, 2143, 2144, 2145, 2146, 2147, 2148, 2149, 2150, 2151, 2152,
- 2154, 2155, 2156, 2157, 2158
- ],
- [207, 219, 268, 285, 286, 2028, 2044, 2051, 2070, 2072, 2107, 2123],
- [207, 219, 268, 285, 286, 2028, 2032, 2039, 2080, 2107, 2121],
- [207, 219, 268, 285, 286, 2028, 2039],
- [207, 219, 268, 285, 286, 2028, 2032, 2039, 2080, 2107, 2119],
- [207, 219, 268, 285, 286, 2028, 2051, 2059, 2071, 2080, 2107],
- [
- 207, 219, 268, 285, 286, 2028, 2039, 2044, 2049, 2051, 2060, 2104, 2107,
- 2115, 2123, 2126
- ],
- [207, 219, 268, 285, 286, 2049, 2107],
- [207, 219, 268, 285, 286, 2064, 2107],
- [219, 268, 285, 286, 2033, 2038, 2107],
- [219, 268, 285, 286, 2031, 2032, 2033, 2038, 2104, 2107],
- [219, 268, 285, 286, 2033, 2038, 2043],
- [219, 268, 285, 286, 2033, 2038, 2074, 2092, 2107],
- [
- 219, 268, 285, 286, 2033, 2038, 2039, 2044, 2045, 2046, 2063, 2068, 2069,
- 2072, 2073, 2107
- ],
- [219, 268, 285, 286, 2033, 2038, 2052, 2055, 2107],
- [219, 268, 285, 286, 2033, 2038, 2075, 2107],
- [219, 268, 285, 286, 2033, 2038, 2039],
- [219, 268, 285, 286, 2033, 2038],
- [219, 268, 285, 286, 2033, 2038, 2039, 2078, 2079, 2081],
- [219, 268, 285, 286, 2033, 2038, 2039, 2078, 2107],
- [219, 268, 285, 286, 2033, 2038, 2040, 2062, 2107],
- [219, 268, 285, 286, 2058, 2074, 2097, 2107],
- [
- 219, 268, 285, 286, 2039, 2044, 2057, 2058, 2059, 2074, 2082, 2085, 2093,
- 2097, 2099, 2100, 2101, 2103, 2107
- ],
- [219, 268, 285, 286, 2039, 2044, 2057, 2058],
- [219, 268, 285, 286, 2097],
- [
- 219, 268, 285, 286, 2038, 2039, 2044, 2056, 2074, 2075, 2076, 2077, 2082,
- 2083, 2084, 2085, 2086, 2093, 2094, 2095, 2096
- ],
- [219, 268, 285, 286, 2033, 2038, 2039, 2041, 2042, 2074, 2107],
- [219, 268, 285, 286, 2044, 2057, 2062, 2074, 2107],
- [219, 268, 285, 286, 2057, 2067, 2074],
- [219, 268, 285, 286, 2044, 2074, 2107],
- [207, 219, 268, 285, 286, 2042, 2070, 2071, 2074, 2107],
- [219, 268, 285, 286, 2074],
- [219, 268, 285, 286, 2057, 2074],
- [219, 268, 285, 286, 2042, 2044, 2074, 2107],
- [219, 268, 285, 286, 2060, 2074, 2107],
- [219, 268, 285, 286, 2075, 2107],
- [207, 219, 268, 285, 286, 2065, 2066, 2107],
- [219, 268, 285, 286, 2042, 2049, 2056, 2058, 2059, 2075, 2104, 2107],
- [207, 219, 268, 285, 286, 2127],
- [207, 219, 268, 285, 286, 2074, 2088, 2091, 2107],
- [
- 207, 219, 268, 285, 286, 2062, 2066, 2087, 2091, 2107, 2134, 2135, 2136,
- 2149
- ],
- [207, 219, 268, 285, 286, 2107, 2120, 2122, 2124, 2125, 2127],
- [219, 268, 285, 286, 2107],
- [219, 268, 285, 286, 2032, 2107],
- [219, 268, 285, 286, 2039, 2107, 2153],
- [219, 268, 285, 286, 2049, 2057, 2060, 2074],
- [207, 219, 268, 285, 286, 2070, 2130],
- [
- 207, 219, 268, 285, 286, 2025, 2026, 2027, 2030, 2031, 2032, 2039, 2040,
- 2041, 2044, 2062, 2070, 2104, 2105, 2106, 2159
- ],
- [219, 268, 285, 286, 2033],
- [219, 268, 285, 286, 300, 318],
- [170, 191, 194, 195, 219, 268, 285, 286],
- [219, 233, 237, 268, 285, 286, 311],
- [219, 233, 268, 285, 286, 300, 311],
- [219, 228, 268, 285, 286],
- [219, 230, 233, 268, 285, 286, 308, 311],
- [219, 268, 285, 286, 288, 308],
- [219, 228, 268, 285, 286, 318],
- [219, 230, 233, 268, 285, 286, 288, 311],
- [219, 225, 226, 229, 232, 268, 279, 285, 286, 300, 311],
- [219, 233, 240, 268, 285, 286],
- [219, 225, 231, 268, 285, 286],
- [219, 233, 254, 255, 268, 285, 286],
- [219, 229, 233, 268, 285, 286, 303, 311, 318],
- [219, 254, 268, 285, 286, 318],
- [219, 227, 228, 268, 285, 286, 318],
- [219, 233, 268, 285, 286],
- [
- 219, 227, 228, 229, 230, 231, 232, 233, 234, 235, 237, 238, 239, 240, 241,
- 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 255, 256, 257,
- 258, 259, 260, 268, 285, 286
- ],
- [219, 233, 248, 268, 285, 286],
- [219, 233, 240, 241, 268, 285, 286],
- [219, 231, 233, 241, 242, 268, 285, 286],
- [219, 232, 268, 285, 286],
- [219, 225, 228, 233, 268, 285, 286],
- [219, 233, 237, 241, 242, 268, 285, 286],
- [219, 237, 268, 285, 286],
- [219, 231, 233, 236, 268, 285, 286, 311],
- [219, 225, 230, 233, 240, 268, 285, 286],
- [219, 228, 233, 254, 268, 285, 286, 316, 318],
- [219, 268, 285, 286, 2024],
- [219, 268, 285, 286, 2048],
- [219, 268, 285, 286, 1474],
- [219, 268, 285, 286, 2747, 2748, 2759],
- [219, 268, 285, 286, 2749, 2750],
- [219, 268, 285, 286, 2747, 2748, 2749, 2751, 2752, 2757],
- [219, 268, 285, 286, 2748, 2749],
- [219, 268, 285, 286, 2757],
- [219, 268, 285, 286, 2758],
- [219, 268, 285, 286, 2749],
- [219, 268, 285, 286, 2747, 2748, 2749, 2752, 2753, 2754, 2755, 2756],
- [219, 268, 285, 286, 1465],
- [219, 268, 285, 286, 1465, 1468],
- [
- 219, 268, 285, 286, 1460, 1463, 1465, 1466, 1467, 1468, 1469, 1470, 1471,
- 1472, 1473
- ],
- [219, 268, 285, 286, 1399, 1401, 1468],
- [219, 268, 285, 286, 1465, 1466],
- [219, 268, 285, 286, 1400, 1465, 1467],
- [219, 268, 285, 286, 1401, 1403, 1405, 1406, 1407, 1408],
- [219, 268, 285, 286, 1403, 1405, 1407, 1408],
- [219, 268, 285, 286, 1403, 1405, 1407],
- [219, 268, 285, 286, 1400, 1403, 1405, 1406, 1408],
- [
- 219, 268, 285, 286, 1399, 1401, 1402, 1403, 1404, 1405, 1406, 1407, 1408,
- 1409, 1410, 1460, 1461, 1462, 1463, 1464
- ],
- [219, 268, 285, 286, 1399, 1401, 1402, 1405],
- [219, 268, 285, 286, 1401, 1402, 1405],
- [219, 268, 285, 286, 1405, 1408],
- [219, 268, 285, 286, 1399, 1400, 1402, 1403, 1404, 1406, 1407, 1408],
- [219, 268, 285, 286, 1399, 1400, 1401, 1405, 1465],
- [219, 268, 285, 286, 1405, 1406, 1407, 1408],
- [219, 268, 285, 286, 1475],
- [219, 268, 285, 286, 1407],
- [
- 219, 268, 285, 286, 1411, 1412, 1413, 1414, 1415, 1416, 1417, 1418, 1419,
- 1420, 1421, 1422, 1423, 1424, 1425, 1426, 1427, 1428, 1429, 1430, 1431,
- 1432, 1433, 1434, 1435, 1436, 1437, 1438, 1439, 1440, 1441, 1442, 1443,
- 1444, 1445, 1446, 1447, 1448, 1449, 1450, 1451, 1452, 1453, 1454, 1455,
- 1456, 1457, 1458, 1459
- ],
- [219, 268, 285, 286, 2652, 2712, 2723, 2724, 2725, 2726, 2727, 2728, 2729],
- [219, 268, 285, 286, 2631, 2652, 2707],
- [219, 268, 285, 286, 2652, 2708],
- [219, 268, 285, 286, 2631, 2706, 2708, 2709, 2710, 2724, 2730],
- [219, 268, 285, 286, 2652, 2730],
- [219, 268, 285, 286, 2712, 2723],
- [219, 268, 285, 286, 2631, 2708, 2711, 2724],
- [219, 268, 285, 286, 2697, 2713, 2721, 2722],
- [219, 268, 285, 286, 2631, 2706, 2710],
- [219, 268, 285, 286, 2652, 2725],
- [219, 268, 285, 286, 2763],
- [207, 219, 268, 285, 286, 1489, 1538, 2622],
- [207, 219, 268, 285, 286, 1538, 2622],
- [207, 219, 268, 285, 286, 1492, 2622],
- [219, 268, 285, 286, 1538],
- [207, 219, 268, 285, 286, 1492, 1538, 2622],
- [207, 219, 268, 285, 286, 1489, 1505, 2622],
- [207, 219, 268, 285, 286, 1524, 2622],
- [219, 268, 285, 286, 1492, 1538, 2622],
- [207, 219, 268, 285, 286, 1489, 1983, 2622],
- [207, 219, 268, 285, 286, 2622],
- [207, 219, 268, 285, 286, 1489, 2021, 2622],
- [207, 219, 268, 285, 286, 2159, 2622],
- [207, 219, 268, 285, 286, 1489, 2537, 2622],
- [207, 219, 268, 285, 286, 1489, 2539, 2622],
- [207, 219, 268, 285, 286, 2543, 2622],
- [219, 268, 285, 286, 1492, 2622],
- [207, 219, 268, 285, 286, 1515, 1530, 2578, 2622],
- [219, 268, 285, 286, 2619, 2620],
- [207, 219, 268, 285, 286, 1489],
- [207, 219, 268, 285, 286, 652, 1489, 1538, 2581, 2622],
- [
- 219, 268, 285, 286, 1492, 1493, 1539, 1540, 1541, 1542, 1543, 1544, 1545,
- 1546, 1547, 1548, 1549, 1984, 1985, 2022, 2160, 2161, 2162, 2538, 2540,
- 2541, 2542, 2544, 2545, 2546, 2547, 2579, 2580, 2582, 2583, 2584, 2586,
- 2587, 2588, 2589, 2590, 2591, 2592, 2593, 2594, 2595, 2597, 2598, 2599,
- 2600, 2601, 2602, 2603, 2604, 2605, 2606, 2607, 2608, 2609, 2610, 2611,
- 2613, 2615, 2616, 2617, 2618, 2621
- ],
- [207, 219, 268, 285, 286, 1489, 2585, 2622],
- [207, 219, 268, 285, 286, 1489, 2622],
- [207, 219, 268, 285, 286, 1489, 1492, 1538, 2622],
- [219, 268, 285, 286, 1489, 2596, 2622],
- [207, 219, 268, 285, 286, 1528, 2622],
- [219, 268, 285, 286, 1489, 2612, 2614],
- [219, 268, 285, 286, 1489, 2622],
- [207, 219, 268, 285, 286, 321, 325, 1489, 2622],
- [207, 219, 268, 285, 286, 1489, 2612, 2622],
- [64, 66, 70, 71, 192, 193, 196, 219, 268, 285, 286, 290],
- [64, 198, 219, 268, 285, 286],
- [64, 200, 202, 219, 268, 285, 286]
- ],
- "fileInfos": [
- {
- "version": "c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4",
- "impliedFormat": 1
- },
- {
- "version": "3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75",
- "impliedFormat": 1
- },
- {
- "version": "e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962",
- "impliedFormat": 1
- },
- {
- "version": "5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8",
- "impliedFormat": 1
- },
- {
- "version": "68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7",
- "impliedFormat": 1
- },
- {
- "version": "5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4",
- "impliedFormat": 1
- },
- {
- "version": "feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569",
- "impliedFormat": 1
- },
- {
- "version": "ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2",
- "impliedFormat": 1
- },
- {
- "version": "080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1",
- "impliedFormat": 1
- },
- {
- "version": "ac450542cbfd50a4d7bf0f3ec8aeedb9e95791ecc6f2b2b19367696bd303e8c6",
- "impliedFormat": 1
- },
- {
- "version": "eab4db6f71cc34c54d15f539bf51b27cfec947d6aa4b6bc7aa61b7cd694e4ed1",
- "impliedFormat": 1
- },
- {
- "version": "f2123c256b2f8784dd932ceb1c556545578199f1225c29ca785b46fdc8fa51c0",
- "impliedFormat": 1
- },
- {
- "version": "5c664521f52ed5260b000259af06e4a47ce5c4d20f90b1fae2b67b088c00f885",
- "impliedFormat": 1
- },
- {
- "version": "ac450542cbfd50a4d7bf0f3ec8aeedb9e95791ecc6f2b2b19367696bd303e8c6",
- "impliedFormat": 99
- },
- {
- "version": "b9a0f839f92ccf3e34fe3e28609d659e83d9fa939fec94e4abd2bc940c4ae1f7",
- "impliedFormat": 99
- },
- {
- "version": "151ff381ef9ff8da2da9b9663ebf657eac35c4c9a19183420c05728f31a6761d",
- "impliedFormat": 1
- },
- {
- "version": "8a190298d0ff502ad1c7294ba6b0abb3a290fc905b3a00603016a97c363a4c7a",
- "impliedFormat": 1
- },
- {
- "version": "3cf631a6ae0060fddf4898c816958e39f47e16570faf7bc7048c774c83cd7a7e",
- "impliedFormat": 1
- },
- {
- "version": "0cbdc76a71578cb1a06a59fbc0b42efe0a89aecbcf9924b55bccd969de595e8a",
- "impliedFormat": 1
- },
- {
- "version": "6f0cfca5ff9a0268ac5d6f4728820b33edcfcd2134714ccc28db64da2fba96ea",
- "impliedFormat": 1
- },
- {
- "version": "e134052a6b1ded61693b4037f615dc72f14e2881e79c1ddbff6c514c8a516b05",
- "impliedFormat": 1
- },
- {
- "version": "84cbc9f6dee75c8b5e27b17d7ecfe17abd0820a2fb2a8745f7029940860bcdec",
- "impliedFormat": 1
- },
- {
- "version": "cc512139c85c41ba2dc95076b1ce05786c98129bcfe875017946ba2c82607ef1",
- "impliedFormat": 1
- },
- {
- "version": "12bffdbf179bfe787334d1aa31393bac5b79a84d2285ad94bcf36c1cce9eed57",
- "impliedFormat": 1
- },
- {
- "version": "e81484fc62d5e6add90882339bb2cdba0c87b85ca4002add438d0771ce2fdfa7",
- "impliedFormat": 1
- },
- {
- "version": "92ebc3261b20037c4e078cd3d26bccedb719b3eec653925e103b6ced4a936c0d",
- "impliedFormat": 1
- },
- {
- "version": "9acc441d14a127dea0228cd2645203c3285b296f452f723f850dc2941d2b9c7e",
- "impliedFormat": 1
- },
- {
- "version": "a4075b7a8211620f01d7a0cffb2d31fde9a2a6a108dec4cbaa3856b6a8e8864a",
- "impliedFormat": 1
- },
- {
- "version": "73b15a0b7cf5c6df9076b9408c5ce682f11813453bf54c54cb284f075b5224cf",
- "impliedFormat": 1
- },
- {
- "version": "9254b745aad208ce7f8e82e72698dc40573c7cb828ea9d5cdf42a42528a81665",
- "impliedFormat": 1
- },
- {
- "version": "7eb92baa673b920122e72e714caf84b78323758a3a214fb6383d717948143668",
- "impliedFormat": 1
- },
- {
- "version": "f37616d5f3b755ef9d2765218b06b933faf05cf094d18107cf4c50d81b44b6b0",
- "impliedFormat": 1
- },
- {
- "version": "c61e09e2a01aacd789fbcdbea4d386701422b8539ddc0285203d2a6bd0c4c1b5",
- "impliedFormat": 1
- },
- {
- "version": "3b78a632fd8d0490bf0eb5f8df1455e6f33028fb7c373d3d75275d06bfb6a7d9",
- "impliedFormat": 1
- },
- {
- "version": "d923dc7686f8a0bdabdbb0e8e61e6a95c403a3d6bc6f303af5381c9cd973ee43",
- "impliedFormat": 1
- },
- {
- "version": "da633553c8248c6ee21fd93a667d71ba4dcefc64f33632e3dc20ded5cbdd317c",
- "impliedFormat": 1
- },
- {
- "version": "050e8efc9defdf21d4c12a2ec280758c13ce66303d3e4e591d003089d99cbe4b",
- "impliedFormat": 1
- },
- {
- "version": "d924e653afba6a341ad72c3cbcc62a9c1206d5fcdf02db13fded64bfbca27e87",
- "impliedFormat": 1
- },
- {
- "version": "5d1201e776c3167527653c835035e4ad29cd79e0d6b139aa250ca74899e0741e",
- "impliedFormat": 1
- },
- {
- "version": "51c8cd199b881a43bf1e5aea40d361f99b0477c0071c85326ea981a48622c45b",
- "impliedFormat": 1
- },
- {
- "version": "ee1003cdce99e6cd28c9a9aa3f570cad400b89218b81f8f9d3b05025241d5db4",
- "impliedFormat": 1
- },
- {
- "version": "1fdf5c750e4164249aaa3095803330eae7cc9fb2523535811800460b98f8e7ed",
- "impliedFormat": 1
- },
- {
- "version": "8674e77147967c8f75aaa22923ebc836dd7620ee0cf52bbe91b89114f8d91413",
- "impliedFormat": 1
- },
- {
- "version": "9f4ef6fd452db4c4d5f96293732ee29c03f54755744342809dea96f63fd7227b",
- "impliedFormat": 1
- },
- {
- "version": "57cdb6dba0f7f107cd3ec872e52916ea2901c9a80611e7e669c2ccf3a2219f17",
- "impliedFormat": 1
- },
- {
- "version": "20d246417a79b06bca6fe01426258a3408068442899b990472e521eafd6ac5b4",
- "impliedFormat": 1
- },
- {
- "version": "c3f937028caf49d383b109a93128164de319c1a5ec3796c02da60acb580e1e9a",
- "impliedFormat": 1
- },
- {
- "version": "cf3849bd6f54b42c19db6327b026bdefea6c711f8a4e5b060b7e3e9d796f0f38",
- "impliedFormat": 1
- },
- {
- "version": "8a60ed93d81f472e270e213c5da23bdfc2a87b6616031f4d397aced25f727217",
- "impliedFormat": 1
- },
- {
- "version": "5f2b95921cc6b959e8ca7abc17943382f7e5fe0ea6ef36c5b8dc383def96b1f8",
- "impliedFormat": 1
- },
- {
- "version": "43006ce2de2caf33f0e26d937195d197e8b91af1222a1b24532daa3915446c86",
- "impliedFormat": 1
- },
- {
- "version": "006577276d8f3b0012b4f856662618082910ed31a71464a42753692be92e4a2a",
- "impliedFormat": 1
- },
- {
- "version": "58004a9240ee74db43ce3ab2343cc29473e969adcd592c6fce46939d94512d93",
- "impliedFormat": 1
- },
- {
- "version": "492409753b45983851b6d66272f384bcb2dfc045d48eb07e8c8998a571495e63",
- "impliedFormat": 1
- },
- {
- "version": "2db60104bde79eac5c47dcfa9738246190173cb76966d88e42959ca8d1ea7e27",
- "impliedFormat": 1
- },
- {
- "version": "1fa946b4013f86f5a90107c6cf08850edd290a11b8b400fe3a4c7c24bc800785",
- "impliedFormat": 1
- },
- {
- "version": "594c88e45a919f575775b6b5999b4662d583bfdde60709e92b3eb13e053008be",
- "impliedFormat": 1
- },
- {
- "version": "9e0b7af2247ab847874dc5ca0a92c4f28f55332b8241591bd06fafd3d184f605",
- "impliedFormat": 1
- },
- {
- "version": "39bff71bf16f3a020c438f5ddc1a24ab26c28dad91d324372eabbce88abaec74",
- "impliedFormat": 1
- },
- {
- "version": "5a395ff9e24f89cc08679e731889b2ed1bfe451ba76f16184ccef0b742589d13",
- "impliedFormat": 1
- },
- {
- "version": "0651a8dd2c6446154e0994391f7bdebbde389dc7ec75ac4a0f727fff5255143c",
- "impliedFormat": 1
- },
- {
- "version": "2088a7c3bf5a885904de841f5fa6103d8689e439a3cb3273f3bac69c1b3a3b1b",
- "impliedFormat": 1
- },
- {
- "version": "6dbc5313fe49ecbab3215f1cb1733d7348b392f1ca12c331c5720f4ea0036f47",
- "impliedFormat": 1
- },
- {
- "version": "3ed4ef1f210705e2c320e5b05787d7b6e74b7920492a76bb8712857bb22fc915",
- "impliedFormat": 1
- },
- {
- "version": "6fca2337de679c9c118e9005f3ee7f41725690a923bbff4ee20401e879471acd",
- "impliedFormat": 1
- },
- {
- "version": "58f59363f3c50919bdc19c44e68b35bb471548486ca98f6e757de252d5d1e856",
- "impliedFormat": 1
- },
- {
- "version": "109381191d7b0beb0de64a68ce3735fff9c91944180bfb6abfe42080b116689b",
- "impliedFormat": 1
- },
- {
- "version": "b04f68c5b937801cebf5264072a6f4a1f76050a75fd0830d65ae0bf0275ed1fc",
- "impliedFormat": 1
- },
- {
- "version": "ad42060f3e0f92a294748f19d9490a8a6a980fb40dda0fd4627991d1361862cc",
- "impliedFormat": 1
- },
- {
- "version": "8c00c7abd1e6e594cb9726674fdc65e4d9681d1e4c890bdbd602096e3b48f917",
- "impliedFormat": 1
- },
- {
- "version": "ce6b390be6cdd541f54e393b87ce72b0d1171732f9e93c59716e622a5b2e3be5",
- "impliedFormat": 1
- },
- {
- "version": "5aa50acb079a18441d0984acda7d3dbbc66a326fccacb20a75d836e797bc8b80",
- "impliedFormat": 1
- },
- {
- "version": "6735eae673357ba7f9fc7e55af3b00e1415b32d3b639c38fb936151f336a5978",
- "impliedFormat": 1
- },
- {
- "version": "386ff073cfe770b93867e65c26e969d672aeb42fc5506279c71a0185fd653539",
- "impliedFormat": 1
- },
- {
- "version": "e967582e89f2a455eafd8bf1232dd81ee207709a48c07322e996ecb0672148bb",
- "impliedFormat": 1
- },
- {
- "version": "25528369e718c89acd957ae0e72b1b5105b1111329d31442d8d639ee020b3fce",
- "impliedFormat": 1
- },
- {
- "version": "8764a0ff3269684a2c85a54acd7e90d33876927140e28880b8a4c95e8ca63bd6",
- "impliedFormat": 1
- },
- {
- "version": "1d381320cf1cf9990e8bdc6bf43ffe220728fae7adfe45c754a44f8535d22486",
- "impliedFormat": 1
- },
- {
- "version": "ea09e3f830cb4da7a144e49803ebd79ad7871e21763fd0a0072ab8fb4aee43b5",
- "impliedFormat": 1
- },
- {
- "version": "02cbdc4c83ba725dfb0b9a230d9514eca2769190ea7ef6e6f29816e7ad21ea98",
- "impliedFormat": 1
- },
- {
- "version": "8490bd3f838bacccd8496893db204d1e9a559923f5bf54154444bf95596b55df",
- "impliedFormat": 1
- },
- {
- "version": "f1e533f10851941ccd2ee623988b26b07aecb84a290eb56627182bc4ca96d1a8",
- "impliedFormat": 1
- },
- {
- "version": "5d89916c41cc7051b9c83148d704c4e5aa20343a07efd14b953d16c693eda3ee",
- "impliedFormat": 1
- },
- {
- "version": "06124be387e6fc43c6a5727ecb8d6f5380c52878341a2cd065dc968e203029e0",
- "impliedFormat": 1
- },
- {
- "version": "44c575e350e5b2c7771137b2797eb3d755b67dd286622158a3855487a6182253",
- "impliedFormat": 1
- },
- {
- "version": "a088d5ba9a4fa3a96bcda498268269d163348229c43187950a9b2b7503d46813",
- "impliedFormat": 1
- },
- {
- "version": "cf5408ade74fb2ec127a10bb3b1079a386131818bc7ac67a002c4a6c3ec81b62",
- "impliedFormat": 1
- },
- {
- "version": "6cf129a29ce866e432f575c5e4c90f44f2fb72d070b9c3901acdb3cbb56fa46d",
- "impliedFormat": 1
- },
- {
- "version": "8af2fead6dd3a9cd0471d27018dd49f65f5cc264c4604a11aba4e46b2252eb89",
- "impliedFormat": 1
- },
- {
- "version": "677c78ed184c32e4ff0be1e4baf0fbf1a0cccd4f41532527735a2c43edd58a87",
- "impliedFormat": 1
- },
- {
- "version": "70415c6e264d10d01f7438d40e1a85b815ace6598e4a73f491b33db7820e1469",
- "impliedFormat": 1
- },
- {
- "version": "38fa05ec45e9bddcb55c47b437330c229655e3b0325b07dd72206a10bf329a05",
- "impliedFormat": 1
- },
- {
- "version": "8b11a987390721ea4930dcc7aca1dec606a2cd1b03fb27d05e4c995875ee54bb",
- "impliedFormat": 1
- },
- {
- "version": "3b05973f4a6dc88d28c125b744dc99d2a527bdb3c567eda1b439d10ce70246f5",
- "impliedFormat": 1
- },
- {
- "version": "2ee3f52f480021bd7d23fe72e66ba0ec8d0a464d2295ab612d409d45a3f9d7ae",
- "impliedFormat": 1
- },
- {
- "version": "95098f44f9d1961d2b1d1bde703e40819923d6a933ec853834235ba76470848d",
- "impliedFormat": 1
- },
- {
- "version": "c56439d9bf05c500219f2db6e49cd4b418f2f9fb14043dee96b2d115276012b8",
- "impliedFormat": 1
- },
- {
- "version": "55fa234a04eacdf253e0b46d72f6e3bd8a044339c43547a29cf3b9f29ccd050d",
- "impliedFormat": 1
- },
- {
- "version": "9811146d06f6b7615165f0dcd3d2aaea72adb260c8e747449b7a87c4c44f7ff1",
- "impliedFormat": 1
- },
- {
- "version": "b4e618b2d4422fa5fae63e999dccb69736b03ec7b0c6fd2d4dc833263d40921c",
- "impliedFormat": 1
- },
- {
- "version": "21a06a5d3e4f859723386772d4c481ed5b40f883ecd4ed9a8ec8bcb54a10e542",
- "impliedFormat": 1
- },
- {
- "version": "e7f90e75963afebd4c3c5f052703818eb0a7a689d6b2c3a499d9bcc545088095",
- "impliedFormat": 1
- },
- {
- "version": "5ef6b0404100d30e3b47c73021f2da740d1fa8088fda5adc741706cb3e73cf13",
- "impliedFormat": 1
- },
- {
- "version": "e5aab4fb9c264ecb0f8ca7cd0131b52e189dd5306bdd071802df591d9cf570ff",
- "impliedFormat": 1
- },
- {
- "version": "d1342658b16b92d24b961db5c1779dc03fe30194fd6fea0d15dc8e946f82d83f",
- "impliedFormat": 1
- },
- {
- "version": "cbd4ff12f799a44b629643edc686aeec830fbb867c69cb6609da57d205057717",
- "impliedFormat": 1
- },
- {
- "version": "4f4d1284bc93168a1a0b2888f528aa689828917cdc547802ab29c0d1f553be40",
- "impliedFormat": 1
- },
- {
- "version": "fd15b208613892273f0675f55b31c878e22a28d62d306e589867009592f67166",
- "impliedFormat": 1
- },
- {
- "version": "ef5bc836c5c0886cd8c9cf1cff6192f4f1e82ef1f8088c9f136586b9860051e0",
- "impliedFormat": 1
- },
- {
- "version": "b4db69807a3b111c3b05fa1359832c4793b507341a4d4c3736a80303e769cd91",
- "impliedFormat": 1
- },
- {
- "version": "001fc9e5e2a353521cc0807e759f7c5a88cc18a8389568cf94b8809c38f00cd4",
- "impliedFormat": 1
- },
- {
- "version": "d14cd6c9001dfa6f96660952945c344370109247764ab42b47d110fcbff678e7",
- "impliedFormat": 1
- },
- {
- "version": "03697b6adcb2c37314fe8bd6361912cbcb772914303f8c43c61a5caa6dd6d9b2",
- "impliedFormat": 1
- },
- {
- "version": "4db00e3ce9cd4d68249907352b1f6c41c687b58f088bc2c8bff1bc41800bb732",
- "impliedFormat": 1
- },
- {
- "version": "316b2ea3cb57f2ccf86a19c4016eebb97eb177f3d5b5dc4b3d0508439afffff0",
- "impliedFormat": 1
- },
- {
- "version": "71de65e470fb5a0920472a8b13d37fff8960822e34d709aee14599802c15770c",
- "impliedFormat": 1
- },
- {
- "version": "c0cbe98c4e104042383444c718d2ce2d0dd602e6b7d52dc3185bbdf289da1128",
- "impliedFormat": 1
- },
- {
- "version": "c3c8297d66976e60076da541ec418590bf26d1056980b9adfea2c14baaf2089e",
- "impliedFormat": 1
- },
- {
- "version": "17ec351733c9b9a5de7d0aee5f710ca792a19efc365bed93ec045b885c309fde",
- "impliedFormat": 1
- },
- {
- "version": "8bb061c812d97dedb8549ca46cd3b8bae3f2494ef681d9712c64c1b933801ebf",
- "impliedFormat": 1
- },
- {
- "version": "969ab03feed7516ece5c6c0468e6c39391ed75317dd641d5600736b131559ad6",
- "impliedFormat": 1
- },
- {
- "version": "54e989ecd24eec06935b7770caee22386e9b7cdc47aca29bb2be83080460db36",
- "impliedFormat": 1
- },
- {
- "version": "ef4529c51657c83eabdda0b7818c25b6c7d827bfd7a49f38553f7fd3deba94e3",
- "impliedFormat": 1
- },
- {
- "version": "89c710eef54f9726d13eb123a800285d9b5cf2eb64d98f4c3a7b0e5a162ad24f",
- "impliedFormat": 1
- },
- {
- "version": "a97990e77a23aea39060610aef4b4bb92154d5330ecb0b557324ba4c14a1db41",
- "impliedFormat": 1
- },
- {
- "version": "d2b89296b175b0a1a11ce09cc682e6f86b24d34abd1bdf8c932a82c4e99b551a",
- "impliedFormat": 1
- },
- {
- "version": "3c85c2b16d0a1fa45095793b90467bcef3bfeaa85b3fdc00ff1eb3c32ca97cb2",
- "impliedFormat": 1
- },
- {
- "version": "8cdd09ab2d9fe19d5cb3ca1dcb6c6437d6164a9de46405afe1954e533a77120e",
- "impliedFormat": 1
- },
- {
- "version": "b90283ab6c36fc580b06cb293629a9b37eaba24e17ff9ae2f0d874a3f3a962a1",
- "impliedFormat": 1
- },
- {
- "version": "c1425155d2396f10be607f43392284b6bfc98b542bb49c611eaa2038b6a72112",
- "impliedFormat": 1
- },
- {
- "version": "30e0e58b2b36491323f748cc938b93eba059d354abecee659ba0e9312a842a5d",
- "impliedFormat": 1
- },
- {
- "version": "c2d8eccfe4adada4730bbd4f2568627d5d4aeb27cfbc8d39aa974ce33e855977",
- "impliedFormat": 1
- },
- {
- "version": "21d0cc7ad656b0348bfd745fb598399c6f9531ffef6ff1b8996fe42c5f185f0a",
- "impliedFormat": 1
- },
- {
- "version": "d29d2e64870b453a96329bf0f88eccf270812fb1989e853588fd5f3b0bc94919",
- "impliedFormat": 1
- },
- {
- "version": "ea422c1715a51450b3bab549d86f4fd52612c37bac489c347e367e47cc26bda1",
- "impliedFormat": 1
- },
- {
- "version": "6eddc1432777582b4797eb53c43b9917b1ba8908a737f7823a7049620f98588b",
- "impliedFormat": 1
- },
- {
- "version": "79e7eb72b4d9ca2d268460d35fa7bfe01db96e93659752bd5fc5cbf5c5be8294",
- "impliedFormat": 1
- },
- {
- "version": "10ad4c890e509380deb83c8bec650899df9bd70ee20238f2221d6bdc36043a0e",
- "impliedFormat": 1
- },
- {
- "version": "1a3b837513da5afd3bb0b228dab3a089fce405344243e372672f641ededf9b48",
- "impliedFormat": 1
- },
- {
- "version": "901f6b020440eac80a83a7ca248ca244e2a296be6b1ed8645a884a4509e11fc7",
- "impliedFormat": 1
- },
- {
- "version": "e560eb93074ae2ec9986afe7dfe3ea25610c89d8b159c2e0f72362b01c4c7954",
- "impliedFormat": 1
- },
- {
- "version": "fe1dc24f8498b1544c69370be20a73505c7a959be7bcb4566733dff306a0efe9",
- "impliedFormat": 1
- },
- {
- "version": "bde8d307f9b1b9d561b8a5af91ae8bae5fd1c6b3f11bc6187e1bb9c69ef12f79",
- "impliedFormat": 1
- },
- {
- "version": "c9db3c8d3edbeff1cd14acdfadb2d6b1d09518094d11c76fc7b0cac9852d328e",
- "impliedFormat": 1
- },
- {
- "version": "4ed143bfe3cf662bcb6a105588fa92e858ab471f27b5e5627cdcca8e8fe0846f",
- "impliedFormat": 1
- },
- "6c1fee68abf2c297674b4f5712ad6904d710b7640baf47bf6146528f0d67f249",
- {
- "version": "b6c7c1db51d3db13ebe1d2a4c31a5fe7ff6017e2be4fa260ed82edbb6f70d96b",
- "impliedFormat": 1
- },
- "c90a0cc490fd04137126ea2d141a005091a480a5437629cdff381759cdce8a8d",
- {
- "version": "af680b00766564359764eef4baee376e63bbc8314bb2cb6c3c86ddab57b86791",
- "impliedFormat": 1
- },
- {
- "version": "336fa29abdd376178c897437f87a37c2697b9f48aa2847ddc676dbee984da9fd",
- "impliedFormat": 1
- },
- {
- "version": "c9734261912272d273de227f3ab615bbf2059489d57958d93c76f1247c27cd4b",
- "impliedFormat": 1
- },
- "77ed3fe6999ec257f207ded2780199e7d1b9ea28e17f10491c9483fbc8bfeb77",
- {
- "version": "e1cca1872ba900e1fdf257ec25f87dd9eb6b4bc30466fb7ad2af8d88fef5af5c",
- "signature": "58b819bd009dd1ba5feb0479ca0ee152337a2f0ff5f16ba64c591e6901c6e99d"
- },
- {
- "version": "170d4db14678c68178ee8a3d5a990d5afb759ecb6ec44dbd885c50f6da6204f6",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9",
- "impliedFormat": 1
- },
- {
- "version": "9dd1cf136b687969888de067d0384593097f32e9a378b187d150d9405151c6cb",
- "impliedFormat": 1
- },
- {
- "version": "acd8fd5090ac73902278889c38336ff3f48af6ba03aa665eb34a75e7ba1dccc4",
- "impliedFormat": 1
- },
- {
- "version": "d6258883868fb2680d2ca96bc8b1352cab69874581493e6d52680c5ffecdb6cc",
- "impliedFormat": 1
- },
- {
- "version": "1b61d259de5350f8b1e5db06290d31eaebebc6baafd5f79d314b5af9256d7153",
- "impliedFormat": 1
- },
- {
- "version": "f258e3960f324a956fc76a3d3d9e964fff2244ff5859dcc6ce5951e5413ca826",
- "impliedFormat": 1
- },
- {
- "version": "643f7232d07bf75e15bd8f658f664d6183a0efaca5eb84b48201c7671a266979",
- "impliedFormat": 1
- },
- {
- "version": "21da358700a3893281ce0c517a7a30cbd46be020d9f0c3f2834d0a8ad1f5fc75",
- "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": "98cffbf06d6bab333473c70a893770dbe990783904002c4f1a960447b4b53dca",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "3af97acf03cc97de58a3a4bc91f8f616408099bc4233f6d0852e72a8ffb91ac9",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "808069bba06b6768b62fd22429b53362e7af342da4a236ed2d2e1c89fcca3b4a",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6",
- "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": "b52476feb4a0cbcb25e5931b930fc73cb6643fb1a5060bf8a3dda0eeae5b4b68",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "f9501cc13ce624c72b61f12b3963e84fad210fbdf0ffbc4590e08460a3f04eba",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "0fa06ada475b910e2106c98c68b10483dc8811d0c14a8a8dd36efb2672485b29",
- "impliedFormat": 1
- },
- {
- "version": "33e5e9aba62c3193d10d1d33ae1fa75c46a1171cf76fef750777377d53b0303f",
- "impliedFormat": 1
- },
- {
- "version": "2b06b93fd01bcd49d1a6bd1f9b65ddcae6480b9a86e9061634d6f8e354c1468f",
- "impliedFormat": 1
- },
- {
- "version": "6a0cd27e5dc2cfbe039e731cf879d12b0e2dded06d1b1dedad07f7712de0d7f4",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "13f5c844119c43e51ce777c509267f14d6aaf31eafb2c2b002ca35584cd13b29",
- "impliedFormat": 1
- },
- {
- "version": "e60477649d6ad21542bd2dc7e3d9ff6853d0797ba9f689ba2f6653818999c264",
- "impliedFormat": 1
- },
- {
- "version": "c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a",
- "impliedFormat": 1
- },
- {
- "version": "4c829ab315f57c5442c6667b53769975acbf92003a66aef19bce151987675bd1",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "b2ade7657e2db96d18315694789eff2ddd3d8aea7215b181f8a0b303277cc579",
- "impliedFormat": 1
- },
- {
- "version": "9855e02d837744303391e5623a531734443a5f8e6e8755e018c41d63ad797db2",
- "impliedFormat": 1
- },
- {
- "version": "4d631b81fa2f07a0e63a9a143d6a82c25c5f051298651a9b69176ba28930756d",
- "impliedFormat": 1
- },
- {
- "version": "836a356aae992ff3c28a0212e3eabcb76dd4b0cc06bcb9607aeef560661b860d",
- "impliedFormat": 1
- },
- {
- "version": "1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393",
- "impliedFormat": 1
- },
- {
- "version": "41670ee38943d9cbb4924e436f56fc19ee94232bc96108562de1a734af20dc2c",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "c906fb15bd2aabc9ed1e3f44eb6a8661199d6c320b3aa196b826121552cb3695",
- "impliedFormat": 1
- },
- {
- "version": "22295e8103f1d6d8ea4b5d6211e43421fe4564e34d0dd8e09e520e452d89e659",
- "impliedFormat": 1
- },
- {
- "version": "58647d85d0f722a1ce9de50955df60a7489f0593bf1a7015521efe901c06d770",
- "impliedFormat": 1
- },
- {
- "version": "6b4e081d55ac24fc8a4631d5dd77fe249fa25900abd7d046abb87d90e3b45645",
- "impliedFormat": 1
- },
- {
- "version": "a10f0e1854f3316d7ee437b79649e5a6ae3ae14ffe6322b02d4987071a95362e",
- "impliedFormat": 1
- },
- {
- "version": "e208f73ef6a980104304b0d2ca5f6bf1b85de6009d2c7e404028b875020fa8f2",
- "impliedFormat": 1
- },
- {
- "version": "d163b6bc2372b4f07260747cbc6c0a6405ab3fbcea3852305e98ac43ca59f5bc",
- "impliedFormat": 1
- },
- {
- "version": "e6fa9ad47c5f71ff733744a029d1dc472c618de53804eae08ffc243b936f87ff",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "83e63d6ccf8ec004a3bb6d58b9bb0104f60e002754b1e968024b320730cc5311",
- "impliedFormat": 1
- },
- {
- "version": "24826ed94a78d5c64bd857570fdbd96229ad41b5cb654c08d75a9845e3ab7dde",
- "impliedFormat": 1
- },
- {
- "version": "8b479a130ccb62e98f11f136d3ac80f2984fdc07616516d29881f3061f2dd472",
- "impliedFormat": 1
- },
- {
- "version": "928af3d90454bf656a52a48679f199f64c1435247d6189d1caf4c68f2eaf921f",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "bceb58df66ab8fb00170df20cd813978c5ab84be1d285710c4eb005d8e9d8efb",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c",
- "impliedFormat": 1
- },
- {
- "version": "933921f0bb0ec12ef45d1062a1fc0f27635318f4d294e4d99de9a5493e618ca2",
- "impliedFormat": 1
- },
- {
- "version": "71a0f3ad612c123b57239a7749770017ecfe6b66411488000aba83e4546fde25",
- "impliedFormat": 1
- },
- {
- "version": "77fbe5eecb6fac4b6242bbf6eebfc43e98ce5ccba8fa44e0ef6a95c945ff4d98",
- "impliedFormat": 1
- },
- {
- "version": "4f9d8ca0c417b67b69eeb54c7ca1bedd7b56034bb9bfd27c5d4f3bc4692daca7",
- "impliedFormat": 1
- },
- {
- "version": "814118df420c4e38fe5ae1b9a3bafb6e9c2aa40838e528cde908381867be6466",
- "impliedFormat": 1
- },
- {
- "version": "a3fc63c0d7b031693f665f5494412ba4b551fe644ededccc0ab5922401079c95",
- "impliedFormat": 1
- },
- {
- "version": "f27524f4bef4b6519c604bdb23bf4465bddcccbf3f003abb901acbd0d7404d99",
- "impliedFormat": 1
- },
- {
- "version": "37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972",
- "impliedFormat": 1
- },
- {
- "version": "45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee",
- "impliedFormat": 1
- },
- {
- "version": "6b039f55681caaf111d5eb84d292b9bee9e0131d0db1ad0871eef0964f533c73",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "18fd40412d102c5564136f29735e5d1c3b455b8a37f920da79561f1fde068208",
- "impliedFormat": 1
- },
- {
- "version": "c8d3e5a18ba35629954e48c4cc8f11dc88224650067a172685c736b27a34a4dc",
- "impliedFormat": 1
- },
- {
- "version": "f0be1b8078cd549d91f37c30c222c2a187ac1cf981d994fb476a1adc61387b14",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "0aaed1d72199b01234152f7a60046bc947f1f37d78d182e9ae09c4289e06a592",
- "impliedFormat": 1
- },
- {
- "version": "2b55d426ff2b9087485e52ac4bc7cfafe1dc420fc76dad926cd46526567c501a",
- "impliedFormat": 1
- },
- {
- "version": "66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60",
- "impliedFormat": 1
- },
- {
- "version": "7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4",
- "impliedFormat": 1
- },
- {
- "version": "5b7aa3c4c1a5d81b411e8cb302b45507fea9358d3569196b27eb1a27ae3a90ef",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "5987a903da92c7462e0b35704ce7da94d7fdc4b89a984871c0e2b87a8aae9e69",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "ea08a0345023ade2b47fbff5a76d0d0ed8bff10bc9d22b83f40858a8e941501c",
- "impliedFormat": 1
- },
- {
- "version": "47613031a5a31510831304405af561b0ffaedb734437c595256bb61a90f9311b",
- "impliedFormat": 1
- },
- {
- "version": "ae062ce7d9510060c5d7e7952ae379224fb3f8f2dd74e88959878af2057c143b",
- "impliedFormat": 1
- },
- {
- "version": "8a1a0d0a4a06a8d278947fcb66bf684f117bf147f89b06e50662d79a53be3e9f",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "358765d5ea8afd285d4fd1532e78b88273f18cb3f87403a9b16fef61ac9fdcfe",
- "impliedFormat": 1
- },
- {
- "version": "9f55299850d4f0921e79b6bf344b47c420ce0f507b9dcf593e532b09ea7eeea1",
- "impliedFormat": 1
- },
- {
- "version": "ab000310ff917b7f29e6ad73714e42b5b65cfb4dec1607a7cf9fb4892138bdea",
- "impliedFormat": 1
- },
- {
- "version": "022f47e3d8599ca736e2e07fb950a2519e5f8ad571a96f4542ecdfd27daf0883",
- "impliedFormat": 1
- },
- {
- "version": "a0acca63c9e39580f32a10945df231815f0fe554c074da96ba6564010ffbd2d8",
- "impliedFormat": 1
- },
- {
- "version": "88e9caa9c5d2ba629240b5913842e7c57c5c0315383b8dc9d436ef2b60f1c391",
- "impliedFormat": 1
- },
- {
- "version": "c7ab5ad5790772e465055590adb17e9303fa37bcb4cf765fba2ca1e98cd16d32",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "428c2c15ba8b3672f566c4b0286a5a71f7466a959bb652fd189030e849e1c00e",
- "impliedFormat": 1
- },
- {
- "version": "ee4630965cc6a24ae679e5720b8930f872860ab34d64cb1fb8e570319f59bc07",
- "impliedFormat": 1
- },
- {
- "version": "413df52d4ea14472c2fa5bee62f7a40abd1eb49be0b9722ee01ee4e52e63beb2",
- "impliedFormat": 1
- },
- {
- "version": "db6d2d9daad8a6d83f281af12ce4355a20b9a3e71b82b9f57cddcca0a8964a96",
- "impliedFormat": 1
- },
- {
- "version": "446a50749b24d14deac6f8843e057a6355dd6437d1fac4f9e5ce4a5071f34bff",
- "impliedFormat": 1
- },
- {
- "version": "182e9fcbe08ac7c012e0a6e2b5798b4352470be29a64fdc114d23c2bab7d5106",
- "impliedFormat": 1
- },
- {
- "version": "2f4e6b4d39426a1b85ecf4bdeb9dddbf4d9b3397d95d8555d46f925c9519ec7d",
- "impliedFormat": 1
- },
- {
- "version": "78a2869ad0cbf3f9045dda08c0d4562b7e1b2bfe07b19e0db072f5c3c56e9584",
- "impliedFormat": 1
- },
- {
- "version": "89d5d28d4f57e000b836ac273079be1b75710e28ce14750d081fb420d37e2ca5",
- "impliedFormat": 1
- },
- {
- "version": "fd4e24ccff3966390600d7f5d6aa1fed5a512e92ada735ea5fbc933d313ad3d3",
- "impliedFormat": 1
- },
- {
- "version": "b7cddfe1aa6b86b5fad3c9ccb30d05b3ccb165aebbf112f48d2d8a5f69dd98b1",
- "impliedFormat": 1
- },
- {
- "version": "a86f82d646a739041d6702101afa82dcb935c416dd93cbca7fd754fd0282ce1f",
- "impliedFormat": 1
- },
- {
- "version": "ad0d1d75d129b1c80f911be438d6b61bfa8703930a8ff2be2f0e1f8a91841c64",
- "impliedFormat": 1
- },
- {
- "version": "bd2c7ada3dee03653d3f601011d30072194bc3970cd93208f9588fbdc0c69347",
- "impliedFormat": 1
- },
- {
- "version": "e480da45d32313e7174b265674da504f075f59ef326852f0c5a5d863b438ae85",
- "impliedFormat": 1
- },
- {
- "version": "ad54850f61fcf5d014e11be80d2f46fea9265cfa7e77456da876f7833ef81769",
- "impliedFormat": 1
- },
- {
- "version": "6f7c9e8bd2b5b6a080b07080065f94900bd3c7e5ebbd3047bc33fcce2fab1dd8",
- "impliedFormat": 1
- },
- {
- "version": "3e7efde639c6a6c3edb9847b3f61e308bf7a69685b92f665048c45132f51c218",
- "impliedFormat": 1
- },
- {
- "version": "df45ca1176e6ac211eae7ddf51336dc075c5314bc5c253651bae639defd5eec5",
- "impliedFormat": 1
- },
- {
- "version": "8a0e762ceb20c7e72504feef83d709468a70af4abccb304f32d6b9bac1129b2c",
- "impliedFormat": 1
- },
- {
- "version": "da5950ee2a90721df6f3fba45f5d05308f7e4c35835392215dd2cd404505e2de",
- "impliedFormat": 1
- },
- {
- "version": "ce75b1aebb33d510ff28af960a9221410a3eaf7f18fc5f21f9404075fba77256",
- "impliedFormat": 1
- },
- {
- "version": "f42d5fed19610d485c646a0c430e768115567d078c7fc855c57b0c578b3d6cd3",
- "impliedFormat": 1
- },
- {
- "version": "ee8df1cb8d0faaca4013a1b442e99130769ce06f438d18d510fed95890067563",
- "impliedFormat": 1
- },
- {
- "version": "d5630f2ad9b4541e5ce891648121022f9412ecdca1820baa1f0104f70fd7eff7",
- "impliedFormat": 1
- },
- {
- "version": "4d15375ab13497104bc8fe56fdef2b5fd6853f29255737d23a33fa306ff7fd69",
- "impliedFormat": 1
- },
- {
- "version": "2cd3fc1d0d6a1e85baffd2d4f50f5efb192b5446eef567e97c94765402f0aad4",
- "impliedFormat": 1
- },
- {
- "version": "e4cbf2f1e89ecccaddd2c045e600ae41b732295953fb06247c7dcbc2d281ed30",
- "impliedFormat": 1
- },
- {
- "version": "27bbdb7509a5bb564020321fc5485764d0db3230a10d2336ae5ce2c1d401b0e7",
- "impliedFormat": 1
- },
- {
- "version": "8c1697d90c394a6fd955b98eae01238eff628e129b987a68aea10f898a48e7da",
- "impliedFormat": 1
- },
- {
- "version": "7580e62139cb2b44a0270c8d01abcbfcba2819a02514a527342447fa69b34ef1",
- "impliedFormat": 1
- },
- {
- "version": "42c169fb8c2d42f4f668c624a9a11e719d5d07dacbebb63cbcf7ef365b0a75b3",
- "impliedFormat": 1
- },
- {
- "version": "f374cb24e93e7798c4d9e83ff872fa52d2cdb36306392b840a6ddf46cb925cb6",
- "impliedFormat": 1
- },
- {
- "version": "d10d63718e1646c2279e3b33831f82c60e31f622b2b7020f1196409ca4c09242",
- "impliedFormat": 1
- },
- {
- "version": "106c6025f1d99fd468fd8bf6e5bda724e11e5905a4076c5d29790b6c3745e50c",
- "impliedFormat": 1
- },
- {
- "version": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
- "impliedFormat": 1
- },
- {
- "version": "148679c6d0f449210a96e7d2e562d589e56fcde87f843a92808b3ff103f1a774",
- "impliedFormat": 1
- },
- {
- "version": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
- "impliedFormat": 1
- },
- {
- "version": "02436d7e9ead85e09a2f8e27d5f47d9464bced31738dec138ca735390815c9f0",
- "impliedFormat": 1
- },
- {
- "version": "f8d5ff8eafd37499f2b6a98659dd9b45a321de186b8db6b6142faed0fea3de77",
- "impliedFormat": 1
- },
- {
- "version": "c86fe861cf1b4c46a0fb7d74dffe596cf679a2e5e8b1456881313170f092e3fa",
- "impliedFormat": 1
- },
- {
- "version": "a22dd55aa4d39906252000ab8e8a1b83b195eef7f4274eb51e457c1f11cf6580",
- "impliedFormat": 1
- },
- {
- "version": "540cc83ab772a2c6bc509fe1354f314825b5dba3669efdfbe4693ecd3048e34f",
- "impliedFormat": 1
- },
- {
- "version": "121b0696021ab885c570bbeb331be8ad82c6efe2f3b93a6e63874901bebc13e3",
- "impliedFormat": 1
- },
- {
- "version": "612d9da66bb046a9c1e2e8d026245ded881fc4b9f98cbfae714415d57ee0ae0b",
- "impliedFormat": 1
- },
- {
- "version": "32c2ad9494dad5d11b0564a619fee18f388db6c1e9e2cd3c360b3122549691eb",
- "impliedFormat": 1
- },
- {
- "version": "6c301d40aec56a74ec7bd7324e31a728dadf9bfba3e96def02938d3d973534ec",
- "impliedFormat": 1
- },
- {
- "version": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
- "impliedFormat": 1
- },
- {
- "version": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
- "impliedFormat": 1
- },
- {
- "version": "8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881",
- "impliedFormat": 1
- },
- {
- "version": "8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881",
- "impliedFormat": 1
- },
- {
- "version": "aa14cee20aa0db79f8df101fc027d929aec10feb5b8a8da3b9af3895d05b7ba2",
- "impliedFormat": 1
- },
- {
- "version": "493c700ac3bd317177b2eb913805c87fe60d4e8af4fb39c41f04ba81fae7e170",
- "impliedFormat": 1
- },
- {
- "version": "aeb554d876c6b8c818da2e118d8b11e1e559adbe6bf606cc9a611c1b6c09f670",
- "impliedFormat": 1
- },
- {
- "version": "acf5a2ac47b59ca07afa9abbd2b31d001bf7448b041927befae2ea5b1951d9f9",
- "impliedFormat": 1
- },
- {
- "version": "8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881",
- "impliedFormat": 1
- },
- {
- "version": "d71291eff1e19d8762a908ba947e891af44749f3a2cbc5bd2ec4b72f72ea795f",
- "impliedFormat": 1
- },
- {
- "version": "c0480e03db4b816dff2682b347c95f2177699525c54e7e6f6aa8ded890b76be7",
- "impliedFormat": 1
- },
- {
- "version": "25a5f6fd3a2243c859eddc99ab5fba11d970af2fe7a5df9c32b7668f76f97b01",
- "impliedFormat": 1
- },
- {
- "version": "8d207e1f9d2c30d6f77dfa693f3827c3fbf0d89240297e10bdfe1041d433df68",
- "impliedFormat": 1
- },
- {
- "version": "b620391fe8060cf9bedc176a4d01366e6574d7a71e0ac0ab344a4e76576fcbb8",
- "impliedFormat": 1
- },
- {
- "version": "6ac6715916fa75a1f7ebdfeacac09513b4d904b667d827b7535e84ff59679aff",
- "impliedFormat": 1
- },
- {
- "version": "2652448ac55a2010a1f71dd141f828b682298d39728f9871e1cdf8696ef443fd",
- "impliedFormat": 1
- },
- {
- "version": "d682336018141807fb602709e2d95a192828fcb8d5ba06dda3833a8ea98f69e3",
- "impliedFormat": 1
- },
- {
- "version": "6124e973eab8c52cabf3c07575204efc1784aca6b0a30c79eb85fe240a857efa",
- "impliedFormat": 1
- },
- {
- "version": "0d891735a21edc75df51f3eb995e18149e119d1ce22fd40db2b260c5960b914e",
- "impliedFormat": 1
- },
- {
- "version": "3b414b99a73171e1c4b7b7714e26b87d6c5cb03d200352da5342ab4088a54c85",
- "impliedFormat": 1
- },
- {
- "version": "4fbd3116e00ed3a6410499924b6403cc9367fdca303e34838129b328058ede40",
- "impliedFormat": 1
- },
- {
- "version": "9c82171d836c47486074e4ca8e059735bf97b205e70b196535b5efd40cbe1bc5",
- "impliedFormat": 1
- },
- {
- "version": "8c70ddc0c22d85e56011d49fddfaae3405eb53d47b59327b9dd589e82df672e7",
- "impliedFormat": 1
- },
- {
- "version": "2f9c89cbb29d362290531b48880a4024f258c6033aaeb7e59fbc62db26819650",
- "impliedFormat": 1
- },
- {
- "version": "a365c4d3bed3be4e4e20793c999c51f5cd7e6792322f14650949d827fbcd170f",
- "impliedFormat": 1
- },
- {
- "version": "c5426dbfc1cf90532f66965a7aa8c1136a78d4d0f96d8180ecbfc11d7722f1a5",
- "impliedFormat": 1
- },
- {
- "version": "65a15fc47900787c0bd18b603afb98d33ede930bed1798fc984d5ebb78b26cf9",
- "impliedFormat": 1
- },
- {
- "version": "9d202701f6e0744adb6314d03d2eb8fc994798fc83d91b691b75b07626a69801",
- "impliedFormat": 1
- },
- {
- "version": "de9d2df7663e64e3a91bf495f315a7577e23ba088f2949d5ce9ec96f44fba37d",
- "impliedFormat": 1
- },
- {
- "version": "c7af78a2ea7cb1cd009cfb5bdb48cd0b03dad3b54f6da7aab615c2e9e9d570c5",
- "impliedFormat": 1
- },
- {
- "version": "1ee45496b5f8bdee6f7abc233355898e5bf9bd51255db65f5ff7ede617ca0027",
- "impliedFormat": 1
- },
- {
- "version": "273782b8454e78f6a8b30d2cfbf6860499c930595095fcc1689637115f0eddda",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "3fbdd025f9d4d820414417eeb4107ffa0078d454a033b506e22d3a23bc3d9c41",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "dba114fb6a32b355a9cfc26ca2276834d72fe0e94cd2c3494005547025015369",
- "impliedFormat": 1
- },
- {
- "version": "a8f8e6ab2fa07b45251f403548b78eaf2022f3c2254df3dc186cb2671fe4996d",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "fa6c12a7c0f6b84d512f200690bfc74819e99efae69e4c95c4cd30f6884c526e",
- "impliedFormat": 1
- },
- {
- "version": "f1c32f9ce9c497da4dc215c3bc84b722ea02497d35f9134db3bb40a8d918b92b",
- "impliedFormat": 1
- },
- {
- "version": "b73c319af2cc3ef8f6421308a250f328836531ea3761823b4cabbd133047aefa",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "e433b0337b8106909e7953015e8fa3f2d30797cea27141d1c5b135365bb975a6",
- "impliedFormat": 1
- },
- {
- "version": "9f9bb6755a8ce32d656ffa4763a8144aa4f274d6b69b59d7c32811031467216e",
- "impliedFormat": 1
- },
- {
- "version": "5c32bdfbd2d65e8fffbb9fbda04d7165e9181b08dad61154961852366deb7540",
- "impliedFormat": 1
- },
- {
- "version": "ddff7fc6edbdc5163a09e22bf8df7bef75f75369ebd7ecea95ba55c4386e2441",
- "impliedFormat": 1
- },
- {
- "version": "0c05e9842ec4f8b7bfebfd3ca61604bb8c914ba8da9b5337c4f25da427a005f2",
- "impliedFormat": 1
- },
- {
- "version": "faed7a5153215dbd6ebe76dfdcc0af0cfe760f7362bed43284be544308b114cf",
- "impliedFormat": 1
- },
- {
- "version": "7029e566b8df176f703fb59fd437a38670c7a0e02c58b2d66dfb5b2e2b2defdb",
- "impliedFormat": 1
- },
- {
- "version": "7f2aa4d4989a82530aaac3f72b3dceca90e9c25bee0b1a327e8a08a1262435ad",
- "impliedFormat": 1
- },
- {
- "version": "d96b39301d0ded3f1a27b47759676a33a02f6f5049bfcbde81e533fd10f50dcb",
- "impliedFormat": 1
- },
- {
- "version": "e9f147ecca73d9346a4c073432843c159ccbe50bdcb678a78f6da10eae2cecf4",
- "impliedFormat": 1
- },
- {
- "version": "de061f7d72bd65c06fc1419f841dfdcb29a8e22fe6fa527d1e6eb20b897d4de0",
- "impliedFormat": 1
- },
- {
- "version": "663beafc2446079574570cba86e9b15f986f908ddb1b01274509970126fee945",
- "impliedFormat": 1
- },
- {
- "version": "a3102887d5058bf4cb5b37fa6964c09e9527c42053b3b5c642b89878620748de",
- "impliedFormat": 1
- },
- {
- "version": "0aaaa1727edd29673d85c9b26d7ca4d54e5407a48586903c51b48b7f7d196f61",
- "impliedFormat": 1
- },
- {
- "version": "d35bca0b261bff02635758c48e8ab99c61c420d0dfabbcf467e847171d876b7d",
- "impliedFormat": 1
- },
- {
- "version": "3bc12c40d90c342ff88a3d876996c555ed5cbee5fe8c3308a240b321f401ee46",
- "impliedFormat": 1
- },
- {
- "version": "ba130768aae855a5477e9e148e5c879548e6e7ccbcc56fd1934c8a18ea5b7569",
- "impliedFormat": 1
- },
- {
- "version": "2e4f37ffe8862b14d8e24ae8763daaa8340c0df0b859d9a9733def0eee7562d9",
- "impliedFormat": 1
- },
- {
- "version": "d38530db0601215d6d767f280e3a3c54b2a83b709e8d9001acb6f61c67e965fc",
- "impliedFormat": 1
- },
- {
- "version": "6ac6715916fa75a1f7ebdfeacac09513b4d904b667d827b7535e84ff59679aff",
- "impliedFormat": 1
- },
- {
- "version": "b499af2054a037a162b3b72cd886f48bbf32a3502c865c6e29fac7d2ab3ce0b5",
- "impliedFormat": 1
- },
- {
- "version": "b83cb14474fa60c5f3ec660146b97d122f0735627f80d82dd03e8caa39b4388c",
- "impliedFormat": 1
- },
- {
- "version": "d87f90d2df7b638204d81d6c57e1f2a8cc9317c45ca331c691c375649aa9255c",
- "impliedFormat": 1
- },
- {
- "version": "7274fbffbd7c9589d8d0ffba68157237afd5cecff1e99881ea3399127e60572f",
- "impliedFormat": 1
- },
- {
- "version": "b73cbf0a72c8800cf8f96a9acfe94f3ad32ca71342a8908b8ae484d61113f647",
- "impliedFormat": 1
- },
- {
- "version": "bae6dd176832f6423966647382c0d7ba9e63f8c167522f09a982f086cd4e8b23",
- "impliedFormat": 1
- },
- {
- "version": "20865ac316b8893c1a0cc383ccfc1801443fbcc2a7255be166cf90d03fac88c9",
- "impliedFormat": 1
- },
- {
- "version": "c9958eb32126a3843deedda8c22fb97024aa5d6dd588b90af2d7f2bfac540f23",
- "impliedFormat": 1
- },
- {
- "version": "461d0ad8ae5f2ff981778af912ba71b37a8426a33301daa00f21c6ccb27f8156",
- "impliedFormat": 1
- },
- {
- "version": "e927c2c13c4eaf0a7f17e6022eee8519eb29ef42c4c13a31e81a611ab8c95577",
- "impliedFormat": 1
- },
- {
- "version": "fcafff163ca5e66d3b87126e756e1b6dfa8c526aa9cd2a2b0a9da837d81bbd72",
- "impliedFormat": 1
- },
- {
- "version": "70246ad95ad8a22bdfe806cb5d383a26c0c6e58e7207ab9c431f1cb175aca657",
- "impliedFormat": 1
- },
- {
- "version": "f00f3aa5d64ff46e600648b55a79dcd1333458f7a10da2ed594d9f0a44b76d0b",
- "impliedFormat": 1
- },
- {
- "version": "772d8d5eb158b6c92412c03228bd9902ccb1457d7a705b8129814a5d1a6308fc",
- "impliedFormat": 1
- },
- {
- "version": "802e797bcab5663b2c9f63f51bdf67eff7c41bc64c0fd65e6da3e7941359e2f7",
- "impliedFormat": 1
- },
- {
- "version": "b01bd582a6e41457bc56e6f0f9de4cb17f33f5f3843a7cf8210ac9c18472fb0f",
- "impliedFormat": 1
- },
- {
- "version": "8b4327413e5af38cd8cb97c59f48c3c866015d5d642f28518e3a891c469f240e",
- "impliedFormat": 1
- },
- {
- "version": "4cceef18d7f088e797a463e90b7a9dad10c6bc667724b7686e3e740ae00122be",
- "impliedFormat": 1
- },
- {
- "version": "7ee86fbb3754388e004de0ef9e6505485ddfb3be7640783d6d015711c03d302d",
- "impliedFormat": 1
- },
- {
- "version": "cc1954b539604b1e562319119ac7e888172208b32ca873f9a357a92c826bd046",
- "impliedFormat": 1
- },
- {
- "version": "a67b87d0281c97dfc1197ef28dfe397fc2c865ccd41f7e32b53f647184cc7307",
- "impliedFormat": 1
- },
- {
- "version": "771ffb773f1ddd562492a6b9aaca648192ac3f056f0e1d997678ff97dbb6bf9b",
- "impliedFormat": 1
- },
- {
- "version": "43e96a3d5d1411ab40ba2f61d6a3192e58177bcf3b133a80ad2a16591611726d",
- "impliedFormat": 1
- },
- {
- "version": "232f70c0cf2b432f3a6e56a8dc3417103eb162292a9fd376d51a3a9ea5fbbf6f",
- "impliedFormat": 1
- },
- {
- "version": "bb8f2dbc03533abca2066ce4655c119bff353dd4514375beb93c08590c03e023",
- "impliedFormat": 1
- },
- {
- "version": "706dd95827e7ebaabda91d5db2b755233e0952d98570e9c032b0f066a15c1177",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "0b103e9abfe82d14c0ad06a55d9f91d6747154ef7cacc73cf27ecad2bfb3afcf",
- "impliedFormat": 1
- },
- {
- "version": "990b8fad2327b77e6920cc792af320e8867e68f02ce849b12c0a6ab9a1aebb09",
- "impliedFormat": 1
- },
- {
- "version": "5eb8cd1cb0c9143d74a8190b577c522720878c31aef67d866fcd29973f83e955",
- "impliedFormat": 1
- },
- {
- "version": "120599fd965257b1f4d0ff794bc696162832d9d8467224f4665f713a3119078b",
- "impliedFormat": 1
- },
- {
- "version": "43ba4f2fa8c698f5c304d21a3ef596741e8e85a810b7c1f9b692653791d8d97a",
- "impliedFormat": 1
- },
- {
- "version": "5433f33b0a20300cca35d2f229a7fc20b0e8477c44be2affeb21cb464af60c76",
- "impliedFormat": 1
- },
- {
- "version": "db036c56f79186da50af66511d37d9fe77fa6793381927292d17f81f787bb195",
- "impliedFormat": 1
- },
- {
- "version": "a6805fcafed712aea7759f8bc731014f9d22738c1d6ef9d43b8091d1d48346d5",
- "impliedFormat": 1
- },
- {
- "version": "c49469a5349b3cc1965710b5b0f98ed6c028686aa8450bcb3796728873eb923e",
- "impliedFormat": 1
- },
- {
- "version": "4a889f2c763edb4d55cb624257272ac10d04a1cad2ed2948b10ed4a7fda2a428",
- "impliedFormat": 1
- },
- {
- "version": "7bb79aa2fead87d9d56294ef71e056487e848d7b550c9a367523ee5416c44cfa",
- "impliedFormat": 1
- },
- {
- "version": "d88ea80a6447d7391f52352ec97e56b52ebec934a4a4af6e2464cfd8b39c3ba8",
- "impliedFormat": 1
- },
- {
- "version": "142617b3cdf902b69c6464c9fbd942b60ab3e733ca18c032b19e0f7e2adbefe8",
- "impliedFormat": 1
- },
- {
- "version": "0b603555f1881f87256ffd6344d3e3ed6d466c2e701eabf381f28be8c2125892",
- "impliedFormat": 1
- },
- {
- "version": "897e4f7662488e3ecc79e743bdd3b78f13bdb69a97851afa5b440c4211e32ea9",
- "impliedFormat": 1
- },
- {
- "version": "e2e1c6d3b2d93add5200bd7bc1a8cccb4e446836b2111ece45db8683a2c765de",
- "impliedFormat": 1
- },
- {
- "version": "251b03d5cd243854ce870d9a9a39f491faf69898c5d6b5eee28cc7649c57417b",
- "impliedFormat": 1
- },
- {
- "version": "27ff4196654e6373c9af16b6165120e2dd2169f9ad6abb5c935af5abd8c7938c",
- "impliedFormat": 1
- },
- {
- "version": "2c4de79f406d137390608e8c0a44fba2ff8e00bacfcae7c9d1781fef10e9440d",
- "impliedFormat": 1
- },
- {
- "version": "07ba23a10465791be5d22deaf5ef7de7658774ddff53721e5ea17fedea1bc721",
- "impliedFormat": 1
- },
- {
- "version": "dca8c645c5afeb03b1ecedbf16323f33e7d0afaa6256c8e047e6e38087a97f53",
- "impliedFormat": 1
- },
- {
- "version": "775f181bd4a533d6f8b5e55ec1d9f1624559720ae8a70e9432258da26b38d27c",
- "impliedFormat": 1
- },
- {
- "version": "796273b2edc72e78a04e86d7c58ae94d370ab93a0ddf40b1aa85a37a1c29ecd7",
- "impliedFormat": 1
- },
- {
- "version": "5df15a69187d737d6d8d066e189ae4f97e41f4d53712a46b2710ff9f8563ec9f",
- "impliedFormat": 1
- },
- {
- "version": "0659e6650e6c528420733abc2cdc36474ef14cc8d64ef3c6fee794d71c69cc2e",
- "impliedFormat": 1
- },
- {
- "version": "6ac6715916fa75a1f7ebdfeacac09513b4d904b667d827b7535e84ff59679aff",
- "impliedFormat": 1
- },
- {
- "version": "622694a8522b46f6310c2a9b5d2530dde1e2854cb5829354e6d1ff8f371cf469",
- "impliedFormat": 1
- },
- {
- "version": "cd8ce8d68567f62dd580b3c3c37777ac3f5b81944c7417f5ea83030eab533385",
- "impliedFormat": 1
- },
- {
- "version": "e374d1eaa05b7dc38580062942ac8351ce79cbe11f6dbce4946a582a5680582d",
- "impliedFormat": 1
- },
- {
- "version": "9e2739b32f741859263fdba0244c194ca8e96da49b430377930b8f721d77c000",
- "impliedFormat": 1
- },
- {
- "version": "a9e6c0ff3f8186fccd05752cf75fc94e147c02645087ac6de5cc16403323d870",
- "impliedFormat": 1
- },
- {
- "version": "49af4b52f0d4d2304c5f2c6fe5fab3e153e0acc38830d0202821b877c097dd02",
- "impliedFormat": 1
- },
- {
- "version": "49c346823ba6d4b12278c12c977fb3a31c06b9ca719015978cb145eb86da1c61",
- "impliedFormat": 1
- },
- {
- "version": "bfac6e50eaa7e73bb66b7e052c38fdc8ccfc8dbde2777648642af33cf349f7f1",
- "impliedFormat": 1
- },
- {
- "version": "92f7c1a4da7fbfd67a2228d1687d5c2e1faa0ba865a94d3550a3941d7527a45d",
- "impliedFormat": 1
- },
- {
- "version": "f53b120213a9289d9a26f5af90c4c686dd71d91487a0aa5451a38366c70dc64b",
- "impliedFormat": 1
- },
- {
- "version": "e68b8e5a1df7c1be2bc105141456ecba70215806e1c28bfbc5c12bfce4be6e68",
- "impliedFormat": 1
- },
- {
- "version": "511c8f02329808d47d00b859c532ae9115590048b17325a946c74dac48428650",
- "impliedFormat": 1
- },
- {
- "version": "57d67b72e06059adc5e9454de26bbfe567d412b962a501d263c75c2db430f40e",
- "impliedFormat": 1
- },
- {
- "version": "b5f9e66625783eefcbe3d2da074b2e7ba2066d61ce3fc6ef4f22805ad946cab4",
- "impliedFormat": 1
- },
- {
- "version": "e37115962d284b9f7a37c2bdd2add50f88365dde41f5e0ff591ffc48a8ec7575",
- "impliedFormat": 1
- },
- {
- "version": "6459054aabb306821a043e02b89d54da508e3a6966601a41e71c166e4ea1474f",
- "impliedFormat": 1
- },
- {
- "version": "bb37588926aba35c9283fe8d46ebf4e79ffe976343105f5c6d45f282793352b2",
- "impliedFormat": 1
- },
- {
- "version": "f89488602bec98a142072fae7ea5ba99431a569ff580c64b7be39896474799d8",
- "impliedFormat": 1
- },
- {
- "version": "bbbc47961f39a57df103cf4ca3bb8f8732b4b6678a18225a0aa76d59c466956c",
- "impliedFormat": 1
- },
- {
- "version": "2e6114a7dd6feeef85b2c80120fdbfb59a5529c0dcc5bfa8447b6996c97a69f5",
- "impliedFormat": 1
- },
- {
- "version": "2ffb043dc5163458e473b7010859f86e01dc4edffcae0a93d885d028b426a546",
- "impliedFormat": 1
- },
- {
- "version": "c8f004e6036aa1c764ad4ec543cf89a5c1893a9535c80ef3f2b653e370de45e6",
- "impliedFormat": 1
- },
- {
- "version": "dd80b1e600d00f5c6a6ba23f455b84a7db121219e68f89f10552c54ba46e4dc9",
- "impliedFormat": 1
- },
- {
- "version": "b064c36f35de7387d71c599bfcf28875849a1dbc733e82bd26cae3d1cd060521",
- "impliedFormat": 1
- },
- {
- "version": "05c7280d72f3ed26f346cbe7cbbbb002fb7f15739197cbbee6ab3fd1a6cb9347",
- "impliedFormat": 1
- },
- {
- "version": "8de9fe97fa9e00ec00666fa77ab6e91b35d25af8ca75dabcb01e14ad3299b150",
- "impliedFormat": 1
- },
- {
- "version": "04b7b2e0832dfd3c31e81df3975e8d8fda28e7ff999b0aa2932608a8f6661d5c",
- "impliedFormat": 1
- },
- {
- "version": "ca2d34c6ed5cbd3070b8b6f32f42ae54adcc6499c1e4b99f0a5798b3f27cc653",
- "impliedFormat": 1
- },
- {
- "version": "9ec68995e66dd6b9dac834bf5ae85fde802714ea2e82151a5d1d53ef01b463ef",
- "impliedFormat": 1
- },
- {
- "version": "5c4d626b4902f2ef8a1cc146d761d276cef988016dc674e3b98fbad70e64bc9f",
- "impliedFormat": 1
- },
- {
- "version": "fdfaa0aad899524962e2955287b5b991ffe3be50f64e02eb60c933ca44644a94",
- "impliedFormat": 1
- },
- {
- "version": "53c972a0f9bc3a4ec70fff7314123ea8cfcf75b3703046f767d2dc1eea87b2fb",
- "impliedFormat": 1
- },
- {
- "version": "f974e4a06953682a2c15d5bd5114c0284d5abf8bc0fe4da25cb9159427b70072",
- "impliedFormat": 1
- },
- {
- "version": "50256e9c31318487f3752b7ac12ff365c8949953e04568009c8705db802776fb",
- "impliedFormat": 1
- },
- {
- "version": "7d73b24e7bf31dfb8a931ca6c4245f6bb0814dfae17e4b60c9e194a631fe5f7b",
- "impliedFormat": 1
- },
- {
- "version": "d130c5f73768de51402351d5dc7d1b36eaec980ca697846e53156e4ea9911476",
- "impliedFormat": 1
- },
- {
- "version": "413586add0cfe7369b64979d4ec2ed56c3f771c0667fbde1bf1f10063ede0b08",
- "impliedFormat": 1
- },
- {
- "version": "06472528e998d152375ad3bd8ebcb69ff4694fd8d2effaf60a9d9f25a37a097a",
- "impliedFormat": 1
- },
- {
- "version": "7303b45138d2511035056a5901a1490ebdcbf055cbb1276f8629c5121cbe733e",
- "impliedFormat": 1
- },
- {
- "version": "27f874cd5327507eeff699a74567f60c1215b94509f4308633a7b01922471ed2",
- "impliedFormat": 1
- },
- {
- "version": "a401617604fa1f6ce437b81689563dfdc377069e4c58465dbd8d16069aede0a5",
- "impliedFormat": 1
- },
- {
- "version": "2c6cf04bc525caf6546e859e8ef10bfb9573837ec0bc5ec7b53a7b1b8ca72781",
- "impliedFormat": 1
- },
- {
- "version": "8695dec09ad439b0ceef3776ea68a232e381135b516878f0901ed2ea114fd0fe",
- "impliedFormat": 1
- },
- {
- "version": "304b44b1e97dd4c94697c3313df89a578dca4930a104454c99863f1784a54357",
- "impliedFormat": 1
- },
- {
- "version": "0a437ae178f999b46b6153d79095b60c42c996bc0458c04955f1c996dc68b971",
- "impliedFormat": 1
- },
- {
- "version": "74b2a5e5197bd0f2e0077a1ea7c07455bbea67b87b0869d9786d55104006784f",
- "impliedFormat": 1
- },
- {
- "version": "4a7baeb6325920044f66c0f8e5e6f1f52e06e6d87588d837bdf44feb6f35c664",
- "impliedFormat": 1
- },
- {
- "version": "87cc05fe13108f02e12da7e3efd8e360fef78d96a0c9e11408ea1b1b9fb3e03d",
- "impliedFormat": 1
- },
- {
- "version": "1abbf67c218d23c2ce76887caac2df6c7dab3d97ba2b65348432b876f510002a",
- "impliedFormat": 1
- },
- {
- "version": "1a82deef4c1d39f6882f28d275cad4c01f907b9b39be9cbc472fcf2cf051e05b",
- "impliedFormat": 1
- },
- {
- "version": "4b20fcf10a5413680e39f5666464859fc56b1003e7dfe2405ced82371ebd49b6",
- "impliedFormat": 1
- },
- {
- "version": "c06ef3b2569b1c1ad99fcd7fe5fba8d466e2619da5375dfa940a94e0feea899b",
- "impliedFormat": 1
- },
- {
- "version": "f7d628893c9fa52ba3ab01bcb5e79191636c4331ee5667ecc6373cbccff8ae12",
- "impliedFormat": 1
- },
- {
- "version": "1d879125d1ec570bf04bc1f362fdbe0cb538315c7ac4bcfcdf0c1e9670846aa6",
- "impliedFormat": 1
- },
- {
- "version": "8bd496cf710d4873d15e4891a5dbf945673e3321ca74cf75187e347fd5ed295e",
- "impliedFormat": 1
- },
- {
- "version": "a6dba407fc287f1e25454e75028c91bbc00675f2d1c4e8b3edcc36c08611a486",
- "impliedFormat": 1
- },
- {
- "version": "d663134457d8d669ae0df34eabd57028bddc04fc444c4bc04bc5215afc91e1f4",
- "impliedFormat": 1
- },
- {
- "version": "e91f7b1344577a02f051b9b471f33044fef8334a76dc9e1de003d17595a5219b",
- "impliedFormat": 1
- },
- {
- "version": "c0723195c85e19656d6b5b9fdb81d3f3403c1ae4679e722c6ea058c516b38d12",
- "impliedFormat": 1
- },
- {
- "version": "186eea74805194f04e41038fc5eca653788b9dedbab7c2d7d17e10139622dd92",
- "impliedFormat": 1
- },
- {
- "version": "71d9eb4c4e99456b78ae182fb20a5dfc20eb1667f091dbb9335b3c017dd1c783",
- "impliedFormat": 1
- },
- {
- "version": "cfa846a7b7847a1d973605fbb8c91f47f3a0f0643c18ac05c47077ebc72e71c7",
- "impliedFormat": 1
- },
- {
- "version": "1594da19968752a22b2ac48c2d0e60575700e745c577a8a4a676b841238ad5bb",
- "impliedFormat": 1
- },
- {
- "version": "e0cee12109e0a10a4c3d6769fcc7644b7c1ea7f52365bea51728f5af29f8a137",
- "impliedFormat": 1
- },
- {
- "version": "7d4254b4c6c67a29d5e7f65e67d72540480ac2cfb041ca484847f5ae70480b62",
- "impliedFormat": 1
- },
- {
- "version": "3536968defef8a75514f547ead5e2e9c1e984820290ec9b00c5fdfb6ef786535",
- "impliedFormat": 1
- },
- {
- "version": "d83773870080c30a230e322ce13a9c6f3398e8dacea4ea8a83e26370f3bac23e",
- "impliedFormat": 1
- },
- {
- "version": "dcfeaf98d66314fec29a9076c4290e45d0b196a65827becc19138e9c7b855f37",
- "impliedFormat": 1
- },
- {
- "version": "6849fe9210fe4946d5f085bfed36758f33dc6ae15a751338d178dd4daa017c46",
- "impliedFormat": 1
- },
- {
- "version": "888cda0fa66d7f74e985a3f7b1af1f64b8ff03eb3d5e80d051c3cbdeb7f32ab7",
- "impliedFormat": 1
- },
- {
- "version": "60681e13f3545be5e9477acb752b741eae6eaf4cc01658a25ec05bff8b82a2ef",
- "impliedFormat": 1
- },
- {
- "version": "ffae4e1e06aa848a1e4bcef162cd1c48e5909b26223515981310af9c036bdfc7",
- "impliedFormat": 1
- },
- {
- "version": "a57b1802794433adec9ff3fed12aa79d671faed86c49b09e02e1ac41b4f1d33a",
- "impliedFormat": 1
- },
- {
- "version": "34e16eb7c31768a11a08aebcfb3d70d7b8f0b016197e98d8419e566ceae6d6c8",
- "impliedFormat": 1
- },
- {
- "version": "f94ec1f7e4b709d26960306c9082a7a1b728a6e13089346aa48ba57c74cbf47e",
- "impliedFormat": 1
- },
- {
- "version": "9a11cb4033405e96c247cd5aa29790212aaffdd127869e8a5219103f0b389fd5",
- "impliedFormat": 1
- },
- {
- "version": "01479d9d5a5dda16d529b91811375187f61a06e74be294a35ecce77e0b9e8d6c",
- "impliedFormat": 1
- },
- {
- "version": "aff5213585cb72e94054dfe17250ff315f3569b3919d1ef1ad235f37c4ee894e",
- "impliedFormat": 1
- },
- {
- "version": "fb2ea35e1be6388d722d7725e2b49c697d34d9c890c3b96758faaeb86d35cef8",
- "impliedFormat": 1
- },
- {
- "version": "ce0df82a9ae6f914ba08409d4d883983cc08e6d59eb2df02d8e4d68309e7848b",
- "impliedFormat": 1
- },
- {
- "version": "1a4dc28334a926d90ba6a2d811ba0ff6c22775fcc13679521f034c124269fd40",
- "impliedFormat": 1
- },
- {
- "version": "f05315ff85714f0b87cc0b54bcd3dde2716e5a6b99aedcc19cad02bf2403e08c",
- "impliedFormat": 1
- },
- {
- "version": "5fad3b31fc17a5bc58095118a8b160f5260964787c52e7eb51e3d4fcf5d4a6f0",
- "impliedFormat": 1
- },
- {
- "version": "72105519d0390262cf0abe84cf41c926ade0ff475d35eb21307b2f94de985778",
- "impliedFormat": 1
- },
- {
- "version": "456006a6975b26c0a1785feddae165f6d307e2d601ffde27e21fc4a790e448a4",
- "impliedFormat": 1
- },
- {
- "version": "c857e0aae3f5f444abd791ec81206020fbcc1223e187316677e026d1c1d6fe08",
- "impliedFormat": 1
- },
- {
- "version": "ccf6dd45b708fb74ba9ed0f2478d4eb9195c9dfef0ff83a6092fa3cf2ff53b4f",
- "impliedFormat": 1
- },
- {
- "version": "1fe0d18b111e1145a7e7601855bccd4ca20f24e3b9a5aba6bb1fa9d1a7059170",
- "impliedFormat": 1
- },
- {
- "version": "5632c3c26d420c063eebe64c45b1248b9492a67bf44f1d0c57e9dc8f6cf449bb",
- "impliedFormat": 1
- },
- {
- "version": "0df5aa619ab12993a39ea6dae062ee46eadbb4d738916460e636ada52bced75b",
- "impliedFormat": 1
- },
- {
- "version": "8fca3039857709484e5893c05c1f9126ab7451fa6c29e19bb8c2411a2e937345",
- "impliedFormat": 1
- },
- {
- "version": "35069c2c417bd7443ae7c7cafd1de02f665bf015479fec998985ffbbf500628c",
- "impliedFormat": 1
- },
- {
- "version": "10ab7be91f87ebe8916b62cf28af2e45b5601fc7b0e311adf838f912c6b31dd8",
- "impliedFormat": 1
- },
- {
- "version": "bc636fbc08e0979ceb7eb0731a33000283d77a33b62e1f71ee65be50394e40ba",
- "impliedFormat": 1
- },
- {
- "version": "7e0b7f91c5ab6e33f511efc640d36e6f933510b11be24f98836a20a2dc914c2d",
- "impliedFormat": 1
- },
- {
- "version": "045b752f44bf9bbdcaffd882424ab0e15cb8d11fa94e1448942e338c8ef19fba",
- "impliedFormat": 1
- },
- {
- "version": "2894c56cad581928bb37607810af011764a2f511f575d28c9f4af0f2ef02d1ab",
- "impliedFormat": 1
- },
- {
- "version": "0a72186f94215d020cb386f7dca81d7495ab6c17066eb07d0f44a5bf33c1b21a",
- "impliedFormat": 1
- },
- {
- "version": "75bbd3be047d539988a0ff0b56384ef7a6a25f3b676ad96bee547d44c31622a7",
- "impliedFormat": 1
- },
- {
- "version": "42960001a776b089ade681ab5cfddc936e0afb0615133ec1841f3dee89d3e1bf",
- "impliedFormat": 1
- },
- {
- "version": "0aedb02516baf3e66b2c1db9fef50666d6ed257edac0f866ea32f1aa05aa474f",
- "impliedFormat": 1
- },
- {
- "version": "da47712b394d944328245482603bc6f416d3949b67c9392279caab595076b510",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "37d0071d8f0a06dc55c2c5e0ec3391affd4fd107c53410bf358196ec0bf3923f",
- "impliedFormat": 1
- },
- {
- "version": "b213dad76ca37fd552274c9499056e1c0d9c1bd38a55bb7f68b22ba6b84c3ad7",
- "impliedFormat": 1
- },
- {
- "version": "56ccb49443bfb72e5952f7012f0de1a8679f9f75fc93a5c1ac0bafb28725fc5f",
- "impliedFormat": 1
- },
- {
- "version": "20fa37b636fdcc1746ea0738f733d0aed17890d1cd7cb1b2f37010222c23f13e",
- "impliedFormat": 1
- },
- {
- "version": "d90b9f1520366d713a73bd30c5a9eb0040d0fb6076aff370796bc776fd705943",
- "impliedFormat": 1
- },
- {
- "version": "126c94093bfd0bd3a64cc3f2f843286d2008abe916362fc6cb087a8f7bd17324",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "bef86adb77316505c6b471da1d9b8c9e428867c2566270e8894d4d773a1c4dc2",
- "impliedFormat": 1
- },
- {
- "version": "5a49adaef698b7ad7e6127949fa1b0bbd3d46b7cbd11c54e392a4dcdd51f5190",
- "impliedFormat": 1
- },
- {
- "version": "96171c03c2e7f314d66d38acd581f9667439845865b7f85da8df598ff9617476",
- "impliedFormat": 1
- },
- {
- "version": "27be6622e2922a1b412eb057faa854831b95db9db5035c3f6d4b677b902ab3b7",
- "impliedFormat": 1
- },
- {
- "version": "5c634644d45a1b6bc7b05e71e05e52ec04f3d73d9ac85d5927f647a5f965181a",
- "impliedFormat": 1
- },
- {
- "version": "2489bf04d77dc025ba67f49f1a56eb24b9db477d5ff88123d887e163ed1776aa",
- "impliedFormat": 1
- },
- {
- "version": "63a7595a5015e65262557f883463f934904959da563b4f788306f699411e9bac",
- "impliedFormat": 1
- },
- {
- "version": "4ba137d6553965703b6b55fd2000b4e07ba365f8caeb0359162ad7247f9707a6",
- "impliedFormat": 1
- },
- {
- "version": "0b77b819b5417775fccb20c678293cf614c054a5b1a65421a5b933a9124ba998",
- "impliedFormat": 1
- },
- {
- "version": "e1f6076688a95bd82deaac740fccbe3cdea0d8a22057cccc9c5bce4398bdd33b",
- "impliedFormat": 1
- },
- {
- "version": "9252d498a77517aab5d8d4b5eb9d71e4b225bbc7123df9713e08181de63180f6",
- "impliedFormat": 1
- },
- {
- "version": "b1f1d57fde8247599731b24a733395c880a6561ec0c882efaaf20d7df968c5af",
- "impliedFormat": 1
- },
- {
- "version": "c8dadeff90ccc638d88a989c1139fd6a1329a5b39c2a7cbef1811c83ffe40903",
- "impliedFormat": 1
- },
- {
- "version": "35e6379c3f7cb27b111ad4c1aa69538fd8e788ab737b8ff7596a1b40e96f4f90",
- "impliedFormat": 1
- },
- {
- "version": "1fffe726740f9787f15b532e1dc870af3cd964dbe29e191e76121aa3dd8693f2",
- "impliedFormat": 1
- },
- {
- "version": "5a3ea721d03a361ccbdd7390ccd75f6e84cbca3a3f01f4b331ecc9af31890c49",
- "impliedFormat": 1
- },
- {
- "version": "e7dfaee4af38d45b1cab8a1ee0b3bc1f85ddcf64545ed391d675d78ae6526274",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "98e2b197bf7fe7800f89c87825e2556d66474869845e97ad9c2b36f347c43539",
- "impliedFormat": 1
- },
- {
- "version": "af48e58339188d5737b608d41411a9c054685413d8ae88b8c1d0d9bfabdf6e7e",
- "impliedFormat": 1
- },
- {
- "version": "616775f16134fa9d01fc677ad3f76e68c051a056c22ab552c64cc281a9686790",
- "impliedFormat": 1
- },
- {
- "version": "65c24a8baa2cca1de069a0ba9fba82a173690f52d7e2d0f1f7542d59d5eb4db0",
- "impliedFormat": 1
- },
- {
- "version": "f9fe6af238339a0e5f7563acee3178f51db37f32a2e7c09f85273098cee7ec49",
- "impliedFormat": 1
- },
- {
- "version": "1de8c302fd35220d8f29dea378a4ae45199dc8ff83ca9923aca1400f2b28848a",
- "impliedFormat": 1
- },
- {
- "version": "77e71242e71ebf8528c5802993697878f0533db8f2299b4d36aa015bae08a79c",
- "impliedFormat": 1
- },
- {
- "version": "98a787be42bd92f8c2a37d7df5f13e5992da0d967fab794adbb7ee18370f9849",
- "impliedFormat": 1
- },
- {
- "version": "332248ee37cca52903572e66c11bef755ccc6e235835e63d3c3e60ddda3e9b93",
- "impliedFormat": 1
- },
- {
- "version": "94e8cc88ae2ef3d920bb3bdc369f48436db123aa2dc07f683309ad8c9968a1e1",
- "impliedFormat": 1
- },
- {
- "version": "4545c1a1ceca170d5d83452dd7c4994644c35cf676a671412601689d9a62da35",
- "impliedFormat": 1
- },
- {
- "version": "320f4091e33548b554d2214ce5fc31c96631b513dffa806e2e3a60766c8c49d9",
- "impliedFormat": 1
- },
- {
- "version": "a2d648d333cf67b9aeac5d81a1a379d563a8ffa91ddd61c6179f68de724260ff",
- "impliedFormat": 1
- },
- {
- "version": "d90d5f524de38889d1e1dbc2aeef00060d779f8688c02766ddb9ca195e4a713d",
- "impliedFormat": 1
- },
- {
- "version": "07ed3ddab975995eea41b22f3010506fb9f5fb301d04820b07d7a1aee5477d7c",
- "impliedFormat": 1
- },
- {
- "version": "969d8b0965849f4bae7cab0ba90bd1e1220e95999c2c6f01117fa7500901c017",
- "impliedFormat": 1
- },
- {
- "version": "6ec840ee5e2bc103f557fe38b1d585ee250540468713d7634ee066de372bf332",
- "impliedFormat": 1
- },
- {
- "version": "b0309e1eda99a9e76f87c18992d9c3689b0938266242835dd4611f2b69efe456",
- "impliedFormat": 1
- },
- {
- "version": "47699512e6d8bebf7be488182427189f999affe3addc1c87c882d36b7f2d0b0e",
- "impliedFormat": 1
- },
- {
- "version": "6ceb10ca57943be87ff9debe978f4ab73593c0c85ee802c051a93fc96aaf7a20",
- "impliedFormat": 1
- },
- {
- "version": "1de3ffe0cc28a9fe2ac761ece075826836b5a02f340b412510a59ba1d41a505a",
- "impliedFormat": 1
- },
- {
- "version": "e46d6cc08d243d8d0d83986f609d830991f00450fb234f5b2f861648c42dc0d8",
- "impliedFormat": 1
- },
- {
- "version": "1c0a98de1323051010ce5b958ad47bc1c007f7921973123c999300e2b7b0ecc0",
- "impliedFormat": 1
- },
- {
- "version": "ff863d17c6c659440f7c5c536e4db7762d8c2565547b2608f36b798a743606ca",
- "impliedFormat": 1
- },
- {
- "version": "5412ad0043cd60d1f1406fc12cb4fb987e9a734decbdd4db6f6acf71791e36fe",
- "impliedFormat": 1
- },
- {
- "version": "ad036a85efcd9e5b4f7dd5c1a7362c8478f9a3b6c3554654ca24a29aa850a9c5",
- "impliedFormat": 1
- },
- {
- "version": "fedebeae32c5cdd1a85b4e0504a01996e4a8adf3dfa72876920d3dd6e42978e7",
- "impliedFormat": 1
- },
- {
- "version": "e297c0a524edee7677939122f90027bfbe5f2698939d9a85728e5044b39c7124",
- "impliedFormat": 1
- },
- {
- "version": "cdf21eee8007e339b1b9945abf4a7b44930b1d695cc528459e68a3adc39a622e",
- "impliedFormat": 1
- },
- {
- "version": "bc9ee0192f056b3d5527bcd78dc3f9e527a9ba2bdc0a2c296fbc9027147df4b2",
- "impliedFormat": 1
- },
- {
- "version": "b62381cae176db34f003cc6172ee8f3e0122014889d66391aa73698105cf4934",
- "impliedFormat": 1
- },
- {
- "version": "1d9c0a9a6df4e8f29dc84c25c5aa0bb1da5456ebede7a03e03df08bb8b27bae6",
- "impliedFormat": 1
- },
- {
- "version": "84380af21da938a567c65ef95aefb5354f676368ee1a1cbb4cae81604a4c7d17",
- "impliedFormat": 1
- },
- {
- "version": "1af3e1f2a5d1332e136f8b0b95c0e6c0a02aaabd5092b36b64f3042a03debf28",
- "impliedFormat": 1
- },
- {
- "version": "30d8da250766efa99490fc02801047c2c6d72dd0da1bba6581c7e80d1d8842a4",
- "impliedFormat": 1
- },
- {
- "version": "03566202f5553bd2d9de22dfab0c61aa163cabb64f0223c08431fb3fc8f70280",
- "impliedFormat": 1
- },
- {
- "version": "41eb514d9ce0a6e87957f08a4b7af70d93f87637f37dee706e2d92a6601c25a9",
- "impliedFormat": 1
- },
- {
- "version": "e7765aa8bcb74a38b3230d212b4547686eb9796621ffb4367a104451c3f9614f",
- "impliedFormat": 1
- },
- {
- "version": "1de80059b8078ea5749941c9f863aa970b4735bdbb003be4925c853a8b6b4450",
- "impliedFormat": 1
- },
- {
- "version": "1d079c37fa53e3c21ed3fa214a27507bda9991f2a41458705b19ed8c2b61173d",
- "impliedFormat": 1
- },
- {
- "version": "5bf5c7a44e779790d1eb54c234b668b15e34affa95e78eada73e5757f61ed76a",
- "impliedFormat": 1
- },
- {
- "version": "5835a6e0d7cd2738e56b671af0e561e7c1b4fb77751383672f4b009f4e161d70",
- "impliedFormat": 1
- },
- {
- "version": "4b7f74b772140395e7af67c4841be1ab867c11b3b82a51b1aeb692822b76c872",
- "impliedFormat": 1
- },
- {
- "version": "7bd01f0f28cd3aeb2046274d85208e245965f6f2948edf4f7b2057bcf9f22ccc",
- "impliedFormat": 99
- },
- {
- "version": "d2f2cf2b8cc92bea913cda4a076e0f790b23a21e84f989d12f0116a7fe3906e0",
- "impliedFormat": 99
- },
- {
- "version": "6de125ea94866c736c6d58d68eb15272cf7d1020a5b459fea1c660027eca9a90",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "f5b20bc288ee49989c95b20847fc93b96bf61cc0845598897a6a53a967dd7d07",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "064ac1c2ac4b2867c2ceaa74bbdce0cb6a4c16e7c31a6497097159c18f74aa7c",
- "impliedFormat": 1
- },
- {
- "version": "3dc14e1ab45e497e5d5e4295271d54ff689aeae00b4277979fdd10fa563540ae",
- "impliedFormat": 1
- },
- {
- "version": "d3b315763d91265d6b0e7e7fa93cfdb8a80ce7cdd2d9f55ba0f37a22db00bdb8",
- "impliedFormat": 1
- },
- {
- "version": "b789bf89eb19c777ed1e956dbad0925ca795701552d22e68fd130a032008b9f9",
- "impliedFormat": 1
- },
- {
- "version": "357308f98431b067916f6db71dba89776133078d2a88cda1c0e3b0f964a480d4",
- "affectsGlobalScope": true
- },
- "7ad303e40d4fddf44f156129e397511953a71481c5cfd86b1862649aaaf240cc",
- {
- "version": "86b102e60a4d4c285c07c64769e4aaa93307284cc88917d9424420609f489400",
- "impliedFormat": 1
- },
- {
- "version": "26340d098786f276f40e5406480b1787ce58afce404f13b7e0f645cc1113e7b2",
- "impliedFormat": 1
- },
- {
- "version": "e76f888e1511e2b699b9d10bb972a4e34a2ffd5d1fb0f6ec08e2e50804ee2970",
- "impliedFormat": 1
- },
- {
- "version": "9db0e2142e4b3a896af68ff9e973bd941e03ff6f25e0033353dc5e3af9d648c6",
- "impliedFormat": 1
- },
- {
- "version": "7a3f38519a1807335b26c3557dd7600e11355aef6af0f4e2bf03d8b74ec7b0ca",
- "impliedFormat": 1
- },
- {
- "version": "c8ec757be6c03d17766ebce65802bd41703c7501f395be6f2d3283442fbe37f3",
- "impliedFormat": 1
- },
- {
- "version": "fd6d64a541a847e5ae59f78103cc0e6a856bd86819453c8a47704c5eaf557d04",
- "impliedFormat": 1
- },
- {
- "version": "5b1d18741093b1a8de17f6a4fc5bca378957f782d71b6a14b4d8d713718c82cc",
- "impliedFormat": 1
- },
- {
- "version": "a4e6b39ed57ead478c84677b2c90769b9fe096912320f7c7f65774e550d0ad9e",
- "impliedFormat": 1
- },
- {
- "version": "c6253a9320428ee8f8ec66246157de38533682b870bcbe259c634b905e00c06c",
- "impliedFormat": 1
- },
- {
- "version": "f1aeccd71b66219f5e0071732e7d836043b37f658e61d05c3a646e0244f73e7e",
- "impliedFormat": 1
- },
- {
- "version": "e8935dc2e290becf8a37c6880341700e83687cbd74f565cbd9cfc91232ff8cc6",
- "impliedFormat": 1
- },
- {
- "version": "f22a4854da501581589462ab8ab67d1ffe7d40a1eef961f12cf50f04f024773d",
- "impliedFormat": 1
- },
- {
- "version": "cf840ecf6d5e70ac184ed2db77b76ddcc90a2671a10e445009dcf46bbf2d3b62",
- "impliedFormat": 1
- },
- {
- "version": "e0c33120f2909ec13da5623c940351896b7599c151b36652a59d582ac4a60228",
- "impliedFormat": 1
- },
- {
- "version": "8109063db4edb419af0fe70241bd2f8b09f0c2e4a2cf9bca0482e3150c8a2c7a",
- "impliedFormat": 1
- },
- {
- "version": "2a4315b8b6710449f9c6d6edc89cfbb92656b506041892b378c6c8fc3b7aa400",
- "impliedFormat": 1
- },
- {
- "version": "6db826c2ef889c0215fb881f80a42b776b03e61f1e8d19e0397af1cee2aa75c2",
- "impliedFormat": 1
- },
- {
- "version": "d49a2811b9782d2bbb51f3828dbff29a266d0375422ffd2008290f8a8dbcefb0",
- "impliedFormat": 1
- },
- {
- "version": "7d194ef85fc529c41556658bb2132d059b901cf2d784669a2de5142665841e1e",
- "impliedFormat": 1
- },
- {
- "version": "758462bfdd5286521a86b89657bc1b22495f39507560a7c4859fd5321b90873a",
- "impliedFormat": 1
- },
- {
- "version": "666a19079e45916f373b3aee42f3016692109bda253e3aa533628c7984626969",
- "impliedFormat": 1
- },
- {
- "version": "e96782e7f451e6d44eaaf3f4f5a52442ee21911740d5c758e78149aa7ee00c07",
- "impliedFormat": 1
- },
- {
- "version": "6f4577c261a33c7cda23c31ebe96abfb752b84875107d887fb45b689aaab591f",
- "impliedFormat": 1
- },
- {
- "version": "6985210d8335a62d0e45b74dbcb11e75b0d879afe3657e685e5a50e38d11ead2",
- "impliedFormat": 1
- },
- {
- "version": "a6fa56092df29c5c213a06ce91840f242dd3d6233d7b21e90aa91b7727892cf4",
- "impliedFormat": 1
- },
- {
- "version": "a3ac5c28c6638c006c8c08a3970e54717f556424dea72b48c780c3a7654dc8c3",
- "impliedFormat": 1
- },
- {
- "version": "bc47cdc983e9e53cf6b0a9afc8a7ed5870f305e26a1c8c2cde7b9b5f7e7c17c9",
- "impliedFormat": 1
- },
- {
- "version": "7c26c9292ffe1e6cd500ca7c2a9b05c60cd4f14cc448c9a1dbbce0115aa224cf",
- "impliedFormat": 1
- },
- {
- "version": "beb5edf34b7c9201bb35f3c9c123035d0f72d80f251285e9e01b8d002dc0df75",
- "impliedFormat": 1
- },
- {
- "version": "52124f927dfdf1e5da9071c34c3d9a324788ba08925368a149e5213546dccfd4",
- "impliedFormat": 1
- },
- {
- "version": "d01fa7e8b57175358ee691e2b29be1bd716c72f4460e0ce0f8e1583e205738cc",
- "impliedFormat": 1
- },
- {
- "version": "e552130d7d49731d16365b4d0b52bc3490c280e946b702403648e3c4d4ebfa3b",
- "impliedFormat": 1
- },
- {
- "version": "af7ddd1cc6649a936fe4ccd4cbab19be4e6f200891b21a85a8a83184645b2c97",
- "impliedFormat": 1
- },
- {
- "version": "9ad6c4be6e417e58362cb18f2c6a07cc9f3ee14fb178afb0ad92354ab369a94c",
- "impliedFormat": 1
- },
- {
- "version": "7dcf8d015bc99e7e456a9e33d069bb5653f57fe19fe8375536705bff5e370393",
- "impliedFormat": 1
- },
- {
- "version": "4b3c3eecbd6a202196657da67f8d63fb300b1f4cfc3120609c28e59fc8b4427e",
- "impliedFormat": 1
- },
- {
- "version": "0c5c15c6fa329c0c3020d2b9bfd4626a372baedb0f943c5f8b5731fab802da4e",
- "impliedFormat": 1
- },
- {
- "version": "810ea75f2be951600569b38299a57fdf6013721fc9e40d8588b12d3bde57adf2",
- "impliedFormat": 1
- },
- {
- "version": "5573ca9fa776eff37bfa901e839ddf063ad2e876831a124cd0ff6e2b7b105ade",
- "impliedFormat": 1
- },
- {
- "version": "6a1e9ca07648a8ef6dbb611e1e93923c2155d91e2be3f31984f74c0098e1cda2",
- "impliedFormat": 1
- },
- {
- "version": "c03f6401f9fc9bd9038c1127377cbef25697116a3b95c0f28ec296076cd0fed5",
- "impliedFormat": 1
- },
- {
- "version": "6a786d3e7f5f9d50ac5c774f440cbbe974e6c66e4a953648af3c0ad463178223",
- "impliedFormat": 1
- },
- {
- "version": "e4a86483f52f3d08dfe69c231a051b6c1044e79e7193f80b52bccd11d7f252f0",
- "impliedFormat": 1
- },
- {
- "version": "89f00e35a09d867885264b24039e4e390e9a616c2b1ba73aead49f0645170167",
- "impliedFormat": 1
- },
- {
- "version": "96ff9deaf52b679a21490b2375b6023f21f01c5daa415112862c3c886f6d0632",
- "impliedFormat": 1
- },
- {
- "version": "3fc69c9224905fdfb62fec652d796673504444402e84efd48882297c5602ad8f",
- "impliedFormat": 1
- },
- {
- "version": "b6e0277eb6f7f764a3ea00b9b3c650b5ebb69aae6849c322b5b627e5f926a216",
- "impliedFormat": 1
- },
- {
- "version": "41682402ed20d243a756012f952c399fcb60870acd17652521a4298fd4507343",
- "impliedFormat": 1
- },
- {
- "version": "4aa132e059dacfc51cdc33fa4f807abde80bbd0b1fdcdac488d23305a03ab379",
- "impliedFormat": 1
- },
- {
- "version": "c19f9770b4e1d05c70ff519c80307622c6919ff9250a6beb8549285366fdb553",
- "impliedFormat": 1
- },
- {
- "version": "325060545391e0ee693b2a972b374a55c9abf18eff6277ad42e7a29b9022e5a2",
- "impliedFormat": 1
- },
- {
- "version": "0f0f3c13ce0a8d041422919e0089910bf5e7def9bbcdcf0d4d10311a2b2787d7",
- "impliedFormat": 1
- },
- {
- "version": "3ac5d50f1f1c95405eb72a4230b1bc83cc743474a78e336669200479c03b414e",
- "impliedFormat": 1
- },
- {
- "version": "3da0e146b6d7bbf26ccb2556bd84946d3ccd51aeea0f5d2db7f31ffea41fc9b6",
- "impliedFormat": 1
- },
- {
- "version": "eb65e93c3597e597892b805275aa60c7158734d58c4407c9c2d384e08eca3739",
- "impliedFormat": 1
- },
- {
- "version": "e54d57f1e648299fcb77ede901ffef62b6fd47c28659fb6e06009f64b134b2dd",
- "impliedFormat": 1
- },
- {
- "version": "d176cf2c1237243105e40bd06bee14acb9bbda3fd7a9e3f0d7770084e4326158",
- "impliedFormat": 1
- },
- {
- "version": "7150b7b4375cc347daa65b2abde328bafb9fe3e0f11843ff560458be69a2327f",
- "impliedFormat": 1
- },
- {
- "version": "7126c1da2df14d50e69a6028c0152c431530a00ce0fec1b5785ddc434666e4d3",
- "impliedFormat": 1
- },
- {
- "version": "202095d68ca89dc725f1ba44b3b576ea7f82870fbe06233984adca309b288698",
- "impliedFormat": 1
- },
- {
- "version": "5c5b20707f157894a4cf7339560fe1caa0717ca5a39c97fc7ed29103926bf345",
- "impliedFormat": 1
- },
- {
- "version": "68aafaf52b5490e853da2c167e5077e9404e511c5ce7773c43ebabdc26f890f2",
- "impliedFormat": 1
- },
- {
- "version": "f38fb1c0a48829df6832411a4907bbf8dd82ed71390ce4893fdf6f1f0e5dd08a",
- "impliedFormat": 1
- },
- {
- "version": "a89c6aca351cab815887f5af8f59c9aa311e15d5ac21cb41dd4a8291dce8cee7",
- "impliedFormat": 1
- },
- {
- "version": "3444353044f5e04f9283a4d9690898626ee34d0e4568774e8dfd8cbb205b2166",
- "impliedFormat": 1
- },
- {
- "version": "d628db9a48397700abeebb7526da22a4a6624745b0dc83be9aba85cbace3180f",
- "impliedFormat": 1
- },
- {
- "version": "c70d66e2188d5e934baa895db1e014e240671db256b8b4567aefbae171599ba8",
- "impliedFormat": 1
- },
- {
- "version": "d619dd4fd8e1a72f2d447c26b9d054c6e0cac0f5d11347d50229759fe0b051e3",
- "impliedFormat": 1
- },
- {
- "version": "aa370a6fc6d9ff67202409250764237a38b81cc04df31890cb553ade8848d5be",
- "impliedFormat": 1
- },
- {
- "version": "0dd7804b4fd9c5479c0350c764e7b234a6fc50841e9e9d37e6925f19b1986d61",
- "impliedFormat": 1
- },
- {
- "version": "8832f6dfbcf8ef36a4fdc8c464824b60d80e915495cd19e08be6f22862901883",
- "impliedFormat": 1
- },
- {
- "version": "6daa06e5a06bd24095d6de71a47c92ef0a6a1bf5b32ddc9f2b933f35d054c857",
- "impliedFormat": 1
- },
- {
- "version": "ad73c95ccffc1439d04520958a1f41e3ceab8399424d1311c6d1c8603da4fe55",
- "impliedFormat": 1
- },
- {
- "version": "1544f5696c2da2fb3657cea416de05f911df8b309b2ba95279af570d1368a4dd",
- "impliedFormat": 1
- },
- {
- "version": "1be9d12a91cd95a91ef1b793dbc11b70ca80ab66238a900e51286ca0fb2fea6c",
- "impliedFormat": 1
- },
- {
- "version": "7fc6c82eae4a0a3e0425b85c8d4e89f7a558cc9481a6945d6e1c53b41c249e67",
- "impliedFormat": 1
- },
- {
- "version": "4258d8fb8279d064ca8b8c02adb9493ce546d90419ba4632ae58eb14a7cb7fb6",
- "impliedFormat": 1
- },
- {
- "version": "1dfc02f19f27692bd4b6cc234935d15a32c60a93f34830726450ff15e7fc8d50",
- "impliedFormat": 1
- },
- {
- "version": "f987703c9e27a121cb01ea02a4a8333f84b10ac9d0e506cecaf82676bd8ea719",
- "impliedFormat": 1
- },
- {
- "version": "40e925cb2f28b2cee51ac61834975fcb61142ca2b730cbf81c87b8d5aa111c48",
- "impliedFormat": 1
- },
- {
- "version": "8876ab57fb4b272ca5059a6e229cb1798dfe20566d1a631914e7b2e5364c5529",
- "impliedFormat": 1
- },
- {
- "version": "354b770772cb211687d6dc95a11020f8fffae477ace16c236ce63b714d27719c",
- "impliedFormat": 1
- },
- {
- "version": "9712400fef20f493586708a85c291ac9bdd6f0d29c05b2b401cb92208f2710e9",
- "impliedFormat": 1
- },
- {
- "version": "601331538f73dbbbdf865d5508dffcf172d3a345fa2731b2a327b7d9b37e9813",
- "impliedFormat": 1
- },
- {
- "version": "3ffa083da88679f94bce7234c673fcbd67c0001b0856c9b760042b2e1add5f08",
- "impliedFormat": 1
- },
- {
- "version": "c61bec1d381d3a94537e8ac67c7d894aa96e2a9641e7b6c6ec7b24254c7336b1",
- "impliedFormat": 1
- },
- {
- "version": "4c6f94efb7f9d4f34d9e7a2151d80e2b79963a30bac07352cb4e2a610b93c463",
- "impliedFormat": 1
- },
- {
- "version": "f197a72c55d3d0019c92c2eff78b2f3aab143d023f0831aaf06b4a528ac734b8",
- "impliedFormat": 1
- },
- {
- "version": "fb888c5a5956550e39e7bcaaf1fe5aad043593df897f00f37cdba580393003f7",
- "impliedFormat": 1
- },
- {
- "version": "174834865f27ee63be116cf7252c67b42f1144343efccf96ddc38b3254ffdd60",
- "impliedFormat": 1
- },
- {
- "version": "57fa785e9330221c0cc17ea880842469cac556df892b88bde5b84210427275ca",
- "impliedFormat": 1
- },
- {
- "version": "654d87dabe3bde9a6dc185b0e592728dfd5dcb250c09390e05dea27bc0cf6e05",
- "impliedFormat": 1
- },
- {
- "version": "bf8d985fc022d631ca8e07c313aa8257aab72843600965edf8b71bbaf790816e",
- "impliedFormat": 1
- },
- {
- "version": "22632341762a793e74d850c68e363cb44a49190514eb8a602dec805f0022de11",
- "impliedFormat": 1
- },
- {
- "version": "469f145eafac81b725762804e5115079e925432a1cee7ca6474afb1eaeae957f",
- "impliedFormat": 1
- },
- {
- "version": "d8d80cee8a0304e13a1e10c82c59e6c58601e1795a962c15ff8a70005036a65e",
- "impliedFormat": 1
- },
- {
- "version": "6a37d31e829363e42d2c9ea33992e5f72d7132cbe69d3999ebb0ec276a3f220d",
- "impliedFormat": 1
- },
- {
- "version": "bad1a84baedfd6e34353db65f9e8dcf62c1dab6974bb7e7cbf3175b71181e68c",
- "impliedFormat": 1
- },
- {
- "version": "06c9ff76d57f08ee25dcb3d17da952c32645de6578753b1eadf7bcf38c865482",
- "impliedFormat": 1
- },
- {
- "version": "ace0b3104b38c72d3b419ef63e9cf2cc67c6e8d74c4c2c0766805b0304f90493",
- "impliedFormat": 1
- },
- {
- "version": "dfbbd2888718ed9322cb11ffa93dfa112ae04b9049e7a88ea90bb191eceaedc6",
- "impliedFormat": 1
- },
- {
- "version": "5a3d42d4cde9d8f72910df5f64eb479b7e6ceac3541ecba6e599fbd3d0682f4f",
- "impliedFormat": 1
- },
- {
- "version": "fa4b2b13eaedb94b33fac8b8aec5176d7d2060bd1d953a651c187fd1f75e94e5",
- "impliedFormat": 1
- },
- {
- "version": "88536d645d9532b2def693ae1d73507d99bcca5d474df07351ae0ad3805e40dc",
- "impliedFormat": 1
- },
- {
- "version": "b22ce67d8165eb963e4562d04e8f2d2b14eeb2a1149d39147a3be9f8ef083ac3",
- "impliedFormat": 1
- },
- {
- "version": "18662f19cd845e75735447045b2239c481a184cf1053f95803cf2b7386dabf46",
- "impliedFormat": 1
- },
- {
- "version": "b3e0e511a59924e0d89df3d6b36c8faf157ddfc5aacc2a1b28cd6b6259b2f505",
- "impliedFormat": 1
- },
- {
- "version": "e523455e1d8b4e6e19da3493e696206d69d50643307e22f90e1325a3d49c2b94",
- "impliedFormat": 1
- },
- {
- "version": "b802f1d72349bd6ba037341a710a09add8679b859ea08ae14aa9e21d4972e2cd",
- "impliedFormat": 1
- },
- {
- "version": "f822c6938a5610cf468f265fbde1d47f7128dffb9996bdb181dde826c7e5af15",
- "impliedFormat": 1
- },
- {
- "version": "d68f20525ae9abe3a085826a692bcfecd5ff5342adef9f559cce686ca41b6f45",
- "impliedFormat": 1
- },
- {
- "version": "c6e45ae278e661a4228e2a94339d0b4b9af462ee9720ed6f784b3a77337286ad",
- "impliedFormat": 1
- },
- {
- "version": "12d5a54442b46359ffb1df0134bc4c6d8480e951cf1078e1c449e0e36550f512",
- "impliedFormat": 1
- },
- {
- "version": "ab608346618d26d52776b98bf0cb4617d30f8cec7dff6f503cdb3dd462701942",
- "impliedFormat": 1
- },
- {
- "version": "bbf86228e87839ea81a8bac74f54885255ed9d1c510465fadca55a7a6a3283ae",
- "impliedFormat": 1
- },
- {
- "version": "df71667fe8e6b3276ea5fe16a7457a9d18a3a3b30e0766d259bb8029de2a4ec8",
- "impliedFormat": 1
- },
- {
- "version": "b34ed5ec21dac2e66e304775b46334bf6fb481f450783a309e53f75c24dbc765",
- "impliedFormat": 1
- },
- {
- "version": "71fe886db8cb12e11376512b6efdabb8cd96e4c2f4ad8ded5f56f69e8b4ae26b",
- "impliedFormat": 1
- },
- {
- "version": "78b0a989532cb9b1016dea7b266d61a9ff5df7588e21f546bf142bbadcab4b3f",
- "impliedFormat": 1
- },
- {
- "version": "e5383048a7261fbc6d6a92a813f71b5dbce2c9888d8488de9dcb937290ad3fea",
- "impliedFormat": 1
- },
- {
- "version": "cbf296365f5dda152e06d25d3a1a602ca6dfb88985b539e5b7c22582af21f080",
- "impliedFormat": 1
- },
- {
- "version": "5082bf4dc0bdd52c9986f74b60bcd7175d7ae725c47e52bbcdd9052b6d0bcc89",
- "impliedFormat": 1
- },
- {
- "version": "cc842002527d85469442ac0bb86ca87f8b06638c3dd302113f0dd1e2246d85ff",
- "impliedFormat": 1
- },
- {
- "version": "6db13dcb7310850962f428a68909212d10168a9f69b2126c05468c4cc3bd6678",
- "impliedFormat": 1
- },
- {
- "version": "a4257472201f865c9e110646cd23183bc5e9646067ab5a4c7a299ef61472e1e7",
- "impliedFormat": 1
- },
- {
- "version": "f67c33db397851720be7dd5486dcd0440186fd62e3f9bc8df992249a86bba18a",
- "impliedFormat": 1
- },
- {
- "version": "e8193b31aef5ac0ded76bdbdb2492e46a712c562c7f117be5394dfb655a87918",
- "impliedFormat": 1
- },
- {
- "version": "44ed745d493f40340bef9e6c5602214f62165aabc49ae9ca1f1d9be848ec994b",
- "impliedFormat": 1
- },
- {
- "version": "366a02de58af1cd7cd081e97fdc6a64d44a741120e470712f98f5cdbc2558ea3",
- "impliedFormat": 1
- },
- {
- "version": "d69da5ed404cad095d48aa5b3bf0108424c998680f1d37fbc59e9bff745b30c6",
- "impliedFormat": 1
- },
- {
- "version": "260c761225625eba7408a265f77b1e199e9beae4725c722bf0f2952c2ef68081",
- "impliedFormat": 1
- },
- {
- "version": "14b4e105e6ba5fcf378fe97f7be956d95d3ae9c3f21f65833d20050a679955a5",
- "impliedFormat": 1
- },
- {
- "version": "c7b2399d36ef76eba067eeebec5725406778b85e515a3b7cee34f38775ba0e95",
- "impliedFormat": 1
- },
- {
- "version": "15c897dd57fb04b36874c52eaa0be98045ddb5c94d752f1a2390af1eb69d5ba4",
- "impliedFormat": 1
- },
- {
- "version": "d9d617d0fe71ce20bc73ce139aba0973581729f8965a335538ffe70eaa8ec091",
- "impliedFormat": 1
- },
- {
- "version": "a8ffecbac87229515fa19630409bbd78bf2c2abc2f83ca38f11d281b4c0db40d",
- "impliedFormat": 1
- },
- {
- "version": "eab8a32518514b5898c3219e1ecf132b6492d8214ab3f895b0112ea15266eb62",
- "impliedFormat": 1
- },
- {
- "version": "f1539a941db422140ba02fed80db5f03f2efe4d6c9edc7473302b7df3f9e3035",
- "impliedFormat": 1
- },
- {
- "version": "bc747047f10b1f0228452f2ba0e77d641aeeb80104251bd6fe597893180208bd",
- "impliedFormat": 1
- },
- {
- "version": "f74b2243dab7450133a50670682ffc90ab67059ee7ce31dbed7834519af1459f",
- "impliedFormat": 1
- },
- {
- "version": "5e05c2323e1a66d6e4e160749e5b41ff5816c3c042098f42a502bbca254ba2b9",
- "impliedFormat": 1
- },
- {
- "version": "d3d08060421f4c5c6ee366aae6de7ffe373188b61048a741e15d84c85f526e8d",
- "impliedFormat": 1
- },
- {
- "version": "fdc7c80234f3514e6684ba92d76eb8a3f7f421d7afed8c8c5a4e38ac5c09dece",
- "impliedFormat": 1
- },
- {
- "version": "80257cd2ece1777d51e36c904699c4cfc7ed056b6a762e486ba8bc411a8da37d",
- "impliedFormat": 1
- },
- {
- "version": "9655c91910ec260a52fee8610afedba17e6625748c26a8a232e5388b77c8987c",
- "impliedFormat": 1
- },
- {
- "version": "1a71a1dcf26e837062ed2a2df7fab181bb533059256769c009c21d6650c569b4",
- "impliedFormat": 1
- },
- {
- "version": "fbbd919af21d33ad0cfad0ed21455bed47dce7f2a58402dfa4e8276c45a2afda",
- "impliedFormat": 1
- },
- {
- "version": "e025b2d167fd6852a49f674b08f3590186b29ad1606030417bca9fb893710927",
- "impliedFormat": 1
- },
- {
- "version": "6ba01c5f3fbefad3c5fc491091f5be9efdb24b40e520f71571e027f404620f99",
- "impliedFormat": 1
- },
- {
- "version": "88287b61d5b7b1196d92e47c3748d094ab50a37ace67207f9a4cde73ed33d713",
- "impliedFormat": 1
- },
- {
- "version": "1455d4cc7e25a7a9abb85df11fa9545b64da27647f0b5d615816895b58d08ba8",
- "impliedFormat": 1
- },
- {
- "version": "fec0e7056aea3e3ceed3f02ac0591d5c45589e19ebd517b9a1cf342678be5721",
- "impliedFormat": 1
- },
- {
- "version": "7394d433c1f3307951f6e0a247fc645ef3760d9cec4a38a9fab68765dde74796",
- "impliedFormat": 1
- },
- {
- "version": "d6c7209dff6b430c2f8730281dcf06b1a738f60d9b9968fdefa282ace986da92",
- "impliedFormat": 1
- },
- {
- "version": "5dcf68b529709161444768647090f94d19dd50310cd937f3732865d83164dc2f",
- "impliedFormat": 1
- },
- {
- "version": "18396073ffbf1a38413587d6c962f5acdf9a6cfb671daae7703ead038cd84426",
- "impliedFormat": 1
- },
- {
- "version": "edab1807a237e21867a9ee7a64308fd6d37f75fabb228805873ecd7a39d3b2a1",
- "impliedFormat": 1
- },
- {
- "version": "d2f25b7bf88a2031886183815236d9d05a5b2d32d5cc74636090445c7f6e9626",
- "impliedFormat": 1
- },
- {
- "version": "39d261215d131f301eeeb0ed9c97e959dc0fa9b6be37691b2ab20714c1f505f6",
- "impliedFormat": 1
- },
- {
- "version": "e04315c35ea65210b1e680548210358f11ce3eea601b2cd449ceef8d36f9243e",
- "impliedFormat": 1
- },
- {
- "version": "c9b781a244b97e7031245fe35be8fca013ea16098b7a554634f4d12a85d33b35",
- "impliedFormat": 1
- },
- {
- "version": "f59869ad0db7e49bfd5021fec738031bcd4386623ada5666cf80facc0357c700",
- "impliedFormat": 1
- },
- {
- "version": "76439253e23d96777dde88a1a8fc86a0d364b5406f642f14f6cf4a3d91bd3575",
- "impliedFormat": 1
- },
- {
- "version": "e16c9ed120424bb53ad690047f8b96e49623943e42901428445b776ccaff3975",
- "impliedFormat": 1
- },
- {
- "version": "c16b36187b90962c7c50228305257490d519768f4f117bbcea79c11eafc89540",
- "impliedFormat": 1
- },
- {
- "version": "debdc7421eaed9084f90c4149f094bb832bf3f833ae5f084cdb7596428cf1512",
- "impliedFormat": 1
- },
- {
- "version": "7c5c1fbc3746048910537b16f0244c772a2e1b5764ccbee64ca44c224aca0958",
- "impliedFormat": 1
- },
- {
- "version": "54097f6c2cf04a44a8928b82a96b11c8e6b14f2c39262f223b69b325d3fa8aa4",
- "impliedFormat": 1
- },
- {
- "version": "c91142cf2edcfa66df568dd16dae1dd2e1d2b23b3c68c0ef0dc6aa7290b3e824",
- "impliedFormat": 1
- },
- {
- "version": "7258729034dd466294076442c084ca2794e5bf6a18881696b11f9befcdd1146e",
- "impliedFormat": 1
- },
- {
- "version": "68d9cd14aed809c49cedde16011dc9a0e243bfc526e7140b254c27f90f2620d2",
- "impliedFormat": 1
- },
- {
- "version": "2877ff863af41e84f20c108409c6c69b06a61bad3e07a6ac2279455282db866b",
- "impliedFormat": 1
- },
- {
- "version": "21dc554aaf7291955838936f07a8d78dbfe08585d63ff707f66b4e03aabcd4fb",
- "impliedFormat": 1
- },
- {
- "version": "0e8341398f41f27df2cf714c4306706d2d50f30ce8961f351d99b4b124d9a65b",
- "impliedFormat": 1
- },
- {
- "version": "1ab3b857ad816e17897010a7abaf69a873219e8cf495350701b5688d97562696",
- "impliedFormat": 1
- },
- {
- "version": "00edee5f99654b9387949790be7db3713365fd7a6a681419d7b5bd65b2ad84b2",
- "impliedFormat": 1
- },
- {
- "version": "3b268a41864c0ad19b51a7400ab96e4635bb97ee087431ec50c095e3cdd55254",
- "impliedFormat": 1
- },
- {
- "version": "4e0cd765b1da5dcedde856a357f2301e88bd0e7bd96f0fcf518cda918b99063e",
- "impliedFormat": 1
- },
- {
- "version": "4ac2c2dada287d88fb886e6e846026d531b8921e25c84de8882b6822b28e6db8",
- "impliedFormat": 1
- },
- {
- "version": "baeb5b10d303c1a423431fbb13227a9a7697e68ee3c26988d602a3fb21d52cdd",
- "impliedFormat": 1
- },
- {
- "version": "cd48b06477e85c7542dcfe483b40f25bc92d4eb35fbb18d8669d647d354f9dca",
- "impliedFormat": 1
- },
- {
- "version": "32afc6399293b6f02842c4d4adba5bae6bab865bba3c68bfb10df06f11132e96",
- "impliedFormat": 1
- },
- {
- "version": "bd87a5ca2da958ed091a2790078a4113795999df57855bbc715b0653f79cc297",
- "impliedFormat": 1
- },
- {
- "version": "a3c1beee2c7c8b30a8968ff9a7ea7fcc7ab9af665df1e1d50e36e51f57bec4ea",
- "impliedFormat": 1
- },
- {
- "version": "1929f416abeeb29d80dc448d6d3c145125b023c1d988b30eea1df6fa5c9df8a2",
- "impliedFormat": 1
- },
- {
- "version": "061c489268c2c1050fea2bda080d9f342f2a5b4562e20ef86698c0a65c2e26a7",
- "impliedFormat": 1
- },
- {
- "version": "f3e7892784b7d862ec0a3534c7c87048b9c1ec30aed3cd6255f817b528b38691",
- "impliedFormat": 1
- },
- {
- "version": "d5faadcd0a2133574e4f6f19400dbb2474fc35e158832f0f14bf26b220290e7e",
- "impliedFormat": 1
- },
- {
- "version": "2aff3c969f006ea2fa84da1525ac184a84fe2e4eda593cee8847f764555141a3",
- "impliedFormat": 1
- },
- {
- "version": "69792d8faea92295395ad1b8c98adc90dde979c7e4cfa98e2c617fe5eaa6400a",
- "impliedFormat": 1
- },
- {
- "version": "a044eb1be8fc48a259a7f988c44bd23eaceb6dc65a84782f32e9db77c22793d0",
- "impliedFormat": 1
- },
- {
- "version": "0b815def1afe22980cbde6c2fc814b80c70d85a3c162901c193529e68212ac62",
- "impliedFormat": 1
- },
- {
- "version": "a2ac1778dbcd36c5660067e2bb53cb9642dd1bab0fc1b3eea20c3b5e704abdb7",
- "impliedFormat": 1
- },
- {
- "version": "c43ec0afd07a8c933fbc3228333a40ec653d6feae74561e0409c1a6838cd1bc3",
- "impliedFormat": 1
- },
- {
- "version": "c6b58be9ad789430aff7533750701d1bf7de69743c97443ad0eb2e34ac021aea",
- "impliedFormat": 1
- },
- {
- "version": "94044fa21380382135c76eb7de8dc50348f37b2ae87d97b9bd726adfead28c66",
- "impliedFormat": 1
- },
- {
- "version": "7cf8b7e877a162bbde841e7aa46d2e8ea477cef7b51fd3c575646bdcd52040ad",
- "impliedFormat": 1
- },
- {
- "version": "04c1f616c16ab14f485f00b8a9061edb49a7cb48d3dfdf24a9c257ae25df2023",
- "impliedFormat": 1
- },
- {
- "version": "791e53f4962819a309432e2f1a863e68d9de8193567371495c573b121d69b315",
- "impliedFormat": 1
- },
- {
- "version": "85de5c3f7ad942fbb268b84d4e4ca916495f9b3e497171736e6361d3bf54f486",
- "impliedFormat": 1
- },
- {
- "version": "edade900693968f37006614c76b04573ac5f6c01c1adda98b8584f51956ea534",
- "impliedFormat": 1
- },
- {
- "version": "7f3b0ddd51e4fb9af38d5db58657724e497510110a13d80efc788ec2b57bba49",
- "impliedFormat": 1
- },
- {
- "version": "1a416fa77716007ce5f2388e651974032ce6dd16f542942847ea899c24d9a84f",
- "impliedFormat": 1
- },
- {
- "version": "63c9d377adf66f0eac304ba29b7e8bb5ccab3b523ec1912bf41bbf12cad46b06",
- "impliedFormat": 1
- },
- {
- "version": "13876cb9c05af8df22376541ade85c77c568469dfe6ca2dfa100c3269b5d391a",
- "impliedFormat": 1
- },
- {
- "version": "017524481107a062d0d25510ee37db024c4007f9718c1e8ebfc462e1f3e6546b",
- "impliedFormat": 1
- },
- {
- "version": "098eef14e558f01293630398a08a566e832c8e8d6b749c135ff193f35df6c66b",
- "impliedFormat": 1
- },
- {
- "version": "d6e5c561fa71c7917382bf802b810ab4d36f22d6b881ec9501bfb67b6ef46134",
- "impliedFormat": 1
- },
- {
- "version": "bd350e8341e83735bb5095e40f32b8da0ca87f238823b0f24a6b692fb2c0c44e",
- "impliedFormat": 1
- },
- {
- "version": "ae396ddebb22bbeeff4fc82310c6d2d03533e863062133fea2a53b536978d679",
- "impliedFormat": 1
- },
- {
- "version": "3875f9986470e60b87dcf03d4891d6590193dbd11063228bc8ce1629692af82d",
- "impliedFormat": 1
- },
- {
- "version": "e0b648fa6bdfa8e24ee2e77d1a544d50f39539d339e05285d4641618cc85162e",
- "impliedFormat": 1
- },
- {
- "version": "84e3c6e1cbe8fcb78e6d9cc4fdc5c53cf9717120cf5825c004b6cbb2b3522b55",
- "impliedFormat": 1
- },
- {
- "version": "095af94d1b06f8c7099240174c5221128e7b4e89be1e82966bfd288dac95f7f6",
- "impliedFormat": 1
- },
- {
- "version": "e0c650c644fa032243b09c0c419111757dbe65a2410c57cf5166fcfe8ec9a306",
- "impliedFormat": 1
- },
- {
- "version": "b069fcfcdeaf8cca75c459c2dba1145dbcd59a60e0dc7bb6cc8147d8601ddffe",
- "impliedFormat": 1
- },
- {
- "version": "6a50e3d12e9ca5aef267205c603ef4dde26423b37949f01e2e9500392fe6ae05",
- "impliedFormat": 1
- },
- {
- "version": "72101dd1dc549e97baaa3160d929d367705179a8df778a6901271a6904f35c43",
- "impliedFormat": 1
- },
- {
- "version": "0ddab6fa84c76be6c82c49495d00b628610fbb3f99b8f944402e6fe477d00fea",
- "impliedFormat": 1
- },
- {
- "version": "87ffb583e8fd953410f260c6b78bb4032ae7fb62c68e491de345e0edcf034f93",
- "impliedFormat": 1
- },
- {
- "version": "0d6270734265d9a41da4f90599712df8dfc456f1546607445f6dcf44ebb02614",
- "impliedFormat": 1
- },
- {
- "version": "9d3d231354842cd61e4f4eac8741783a55259f6d3a16591d1a1bbc85c22fce2b",
- "impliedFormat": 1
- },
- {
- "version": "95444e8d407f2b3e4e45125a721f8733feb8f554f9d307a769bba7c8373cc4bb",
- "impliedFormat": 1
- },
- {
- "version": "230105e3edca4a5665c315579482e210d581970eb11b5b4fd8fa48d0a83cca43",
- "impliedFormat": 1
- },
- {
- "version": "c0f23f635c51467286dce569148edac352722f8dcee352aaa82d439173ff5057",
- "impliedFormat": 1
- },
- {
- "version": "6baeccb6230b970d58e53d42384931509f234a464a32c4d3cdb0acbf9be23c82",
- "impliedFormat": 1
- },
- {
- "version": "1ef785aef442f3e9ddead57ec31b53cec07e2d607df99593734153bd2841ba1e",
- "impliedFormat": 1
- },
- {
- "version": "b8b323fe01d85e735ecd0a1811752ddc8d48260dfc04f3864c375e1e2c6ee8b4",
- "impliedFormat": 1
- },
- {
- "version": "b49d558ac56d28e458a34f2b3c3d4e56ac91db0850589ced007ac6bfcfcf8710",
- "impliedFormat": 1
- },
- {
- "version": "fd9a664a1fe1ae10aff56e7706931b2ac9104e71881cee7df344ddb7c6328a60",
- "impliedFormat": 1
- },
- {
- "version": "64867671065ec6dcc7b79a1a389108b5acec4757b118c9d06449cd1482b53969",
- "impliedFormat": 1
- },
- {
- "version": "1165bc45f052eef16394f0b5f6135dfc87232ce059d0d8e1c377d6cdbf4bb096",
- "impliedFormat": 1
- },
- {
- "version": "40bb47052bd734754cf558994b34db7c805140acf5224799610575259584cf6b",
- "impliedFormat": 1
- },
- {
- "version": "d41ce4340adfc1c9be5e54aa66c9bb264030c39905afb3bd0de6e3aca9f80ef0",
- "impliedFormat": 1
- },
- {
- "version": "504c70f7c7a74957faa966846ab8630007406e01605add199bc751a2f1833a09",
- "impliedFormat": 1
- },
- {
- "version": "3875f9986470e60b87dcf03d4891d6590193dbd11063228bc8ce1629692af82d",
- "impliedFormat": 1
- },
- {
- "version": "fe2a0ad4ed323c9bca9a362fc89fe9e0467cc7fbe2134461451cbbc7fb6639d8",
- "impliedFormat": 1
- },
- {
- "version": "be52e44d8af0edf60a0e7e3ed295d482f0ced53ca28459cb059ee85a50acc981",
- "impliedFormat": 1
- },
- {
- "version": "6c8cb6ec476b004f11b74a8b527f6a000b519cba22eef677381ce6cfbac5f403",
- "impliedFormat": 1
- },
- {
- "version": "bcafe8f67e8c4739d76d1a5c57a5437d9a39acae339d594f362d006e5c646441",
- "impliedFormat": 1
- },
- {
- "version": "837ab7516e5d6b9fc4cbffbcd76af945f17a32b37703e6b43739fb2447e0c269",
- "impliedFormat": 1
- },
- {
- "version": "220a0608983530eb57c83ebb27b7679b588fdfcae74a03f6baf6f023c313f99a",
- "impliedFormat": 1
- },
- {
- "version": "d66a1e8d093d2fdfca0a8cd3abda133485b96f105444d9328b143706de6f0e6c",
- "impliedFormat": 1
- },
- {
- "version": "576e197b88932ee86f3e772061f828ca718d27c040d078425cd30bc9d0e2f873",
- "impliedFormat": 1
- },
- {
- "version": "37f1c5a1745c3e14d51864c3bc11db3db6f387381308dad4070285c312e045d1",
- "impliedFormat": 1
- },
- {
- "version": "c36036b85f3c2addf406b3ff0c064e97b3f37eceafd3c39c68aa2a406b71b9c0",
- "impliedFormat": 1
- },
- {
- "version": "785dea0c5263f2b923d501f6dc21b949beb165ec2096b61c4d3e5f87e3782948",
- "impliedFormat": 1
- },
- {
- "version": "95fded989f52b498fcb5bd877f78791b2cc073d1235f5854496c601dc6c4896f",
- "impliedFormat": 1
- },
- {
- "version": "07ce493ec6947a668e1759beacb3bae93a969c599890f8b2dbacef7c4c42a7b5",
- "impliedFormat": 1
- },
- {
- "version": "5ba9e3014bd661db8fbc2bcd4678cdbb3811623af5e46c6202bc612f84e140ef",
- "impliedFormat": 1
- },
- {
- "version": "e687191bddc59e11508784cb14253f0ca8033331b7b2dec142cd1920dfb55bff",
- "impliedFormat": 1
- },
- {
- "version": "f98e2d059aaf3588be83385ecfaefb1ab5101a6a1ce48505e7232a9a11b5a127",
- "impliedFormat": 1
- },
- {
- "version": "8c1586a4a59ccb1c74ba32a776462128fd83eeac7e4df2681659592c958b7435",
- "impliedFormat": 1
- },
- {
- "version": "1f3e8a0e346b23658e83ee6d20727a0fc9876faa5a1f227c94f5612fc8bf9035",
- "impliedFormat": 1
- },
- {
- "version": "5dfcedc428d68e115c5ad7a03e86def522d2f878accd4d4782a9a9c1158de0d8",
- "impliedFormat": 1
- },
- {
- "version": "283f3b773da04e3a20e1cdccff5d2427ee465a1aeac754f5516ad1d59f543198",
- "impliedFormat": 1
- },
- {
- "version": "8426ee0766091376cf487d0365429d31cd737885e93007c4a93e2e7cc6790944",
- "impliedFormat": 1
- },
- {
- "version": "38140bb660a84513cd18e3dd73bfad35d982fcef94dc73f7625366e5cc7013cf",
- "impliedFormat": 1
- },
- {
- "version": "ab831387fd4452274967bcaff49d331200ecb98df23362225e5e350cbea8cd06",
- "impliedFormat": 1
- },
- {
- "version": "520e75f608cc7ea36d80d639d70ca09d7c6467247bf80eda487ba4d3dc656826",
- "impliedFormat": 1
- },
- {
- "version": "4b4e0b1c3ed5e3ea3e34e528c314884c26aa4da525dba04af41e8fb0afe10c52",
- "impliedFormat": 1
- },
- {
- "version": "5b06394e29458c6ce0ec2807a86cd8e0a415b969c4ab9f89339ea8a40fa8c1a0",
- "impliedFormat": 1
- },
- {
- "version": "a34593c0e757a33d655847418977cda8b2792e3b3432d6ef2a43a86fda6d0aa9",
- "impliedFormat": 1
- },
- {
- "version": "2df5cd8f15e09493249cd8d4234650bd0ab97984e53ddcf35d5ffd19a9c8d95c",
- "impliedFormat": 1
- },
- {
- "version": "fff5b5e7ca461b67b296c20c538752054eb08db3249bab80d1e260d22f6e2b8b",
- "impliedFormat": 1
- },
- {
- "version": "d230d62ae7c13e5a0e57ca31b03cfd35f5d6de5847e78a66446dffb737715c3b",
- "impliedFormat": 1
- },
- {
- "version": "7b3697570705e34a3882a4d1640d0f21d30767f6a4bc6d3f150c476e30e9f13a",
- "impliedFormat": 1
- },
- {
- "version": "4b88891e51db60664191a05ad498d1eff56475ae22945e401e61db54e6ea566f",
- "impliedFormat": 1
- },
- {
- "version": "26deefe79febba4c64b6af45206dd6ed74211b33e65b7ea3c6f5f4a777cf1cc3",
- "impliedFormat": 1
- },
- {
- "version": "33cba11a791c2f78cafb27b652767dbbece2591def167e94ce76b394c79e210b",
- "impliedFormat": 1
- },
- {
- "version": "12cb10a3c721e920afa28d045844ae42ef8c8b2ec5033669c40186aa6ba5addc",
- "impliedFormat": 1
- },
- {
- "version": "25217da56dbbd1a612b1523049cc8a6598da81b444ef6db05ecdcba7badb1cf8",
- "impliedFormat": 1
- },
- {
- "version": "f91e1ddab3cda5e19360ab53bc12239a102a4251fd48ebca0c8206c8a8a8df4a",
- "impliedFormat": 1
- },
- {
- "version": "b9d1f1ee0f4b92e6414f54ab4fdbc31c0d7d424cd07a50f4aaca0f2307ddd297",
- "impliedFormat": 1
- },
- {
- "version": "2f3f9a5cb4821452db29e2c5222e2aef6c4e9b8c2389ae4f2000efa13aece39d",
- "impliedFormat": 1
- },
- {
- "version": "c1556feb26d8ffe99af0c2c411efa0c15347f21fec0786c746a394a7b3f0f38b",
- "impliedFormat": 1
- },
- {
- "version": "fba44e215687bab53ebc3f5f06d86abafbcad900c2f30c4aa7b757a1e2c83eee",
- "impliedFormat": 1
- },
- {
- "version": "f4f4f2ac2c85a3592545acc11005f548131ab71f3bb665f22effe4a012b92e46",
- "impliedFormat": 1
- },
- {
- "version": "ce4ebd3b64bb7a809edaedd16af649d74d512935dfecb9ed2890f184c6d80421",
- "impliedFormat": 1
- },
- {
- "version": "2c531237450cdfbff4008f8a9a8e220dd156a599177cf9681a9c0e1102ede5f0",
- "impliedFormat": 1
- },
- {
- "version": "318f242e400269593e2ef9d58cbc16ce0f28753b2e0133ab2f14c20cecf5627d",
- "impliedFormat": 1
- },
- {
- "version": "18f7051506429cc0f768e5b6d5b6fbcf84ee6061a13d17ba1a87b6c422fff87f",
- "impliedFormat": 1
- },
- {
- "version": "e97e14f2b6261619b8ce730d289dc833eed70fea2f56e8f78aaae65e439e219b",
- "impliedFormat": 1
- },
- {
- "version": "20f8c1a3437002fd73283c608cbdb974c2350959c63566d7283299e6240726d6",
- "impliedFormat": 1
- },
- {
- "version": "290f92f979e202318c10c533f72b08177073c2a8dde0a3457ab4ea3187bae64e",
- "impliedFormat": 1
- },
- {
- "version": "1dfdd8086c7ceebff179d82d25f4abdc784b18fd5d4db9ea68107d54a9019da7",
- "impliedFormat": 1
- },
- {
- "version": "b257fc5fdd1bb2e39c21d2f4b91d9ff01d05ec22ffbc90338bdca320305c0051",
- "impliedFormat": 1
- },
- {
- "version": "32599f2b9d584c7e08e53ae572aa8ae54cc6ba52becc170f8592ee412a751a1c",
- "impliedFormat": 1
- },
- {
- "version": "e315e50add364d5c866c4ef710b66bd82f8233725a663b285573bfd4ab24db2d",
- "impliedFormat": 1
- },
- {
- "version": "c8b0cfe8430c466b1b91494845a56748fe28d6038f4307679463e9e232e9e292",
- "impliedFormat": 1
- },
- {
- "version": "78ef6ddda03845628cfb3b3830dff308c6e97452e71428217172b3af9bcf8fb5",
- "impliedFormat": 1
- },
- {
- "version": "ce24f76047dd08da4c27b6331fdc1cb6fc28904f405cc2f8eb3003a478d20337",
- "impliedFormat": 1
- },
- {
- "version": "206daaf25cbbf28e00cc0d929dcb9a768cbcebf47928e8d44464de47e4bc2524",
- "impliedFormat": 1
- },
- {
- "version": "daf84df325239641e025bd0c22e990927d34f257678f29025815f41daea2fcfc",
- "impliedFormat": 1
- },
- {
- "version": "a8fc80002fb13049fa71f7cf40fe7de037b8fe0318fc554c56d2757ce37b173e",
- "impliedFormat": 1
- },
- {
- "version": "5be8bec899bb9720067b20859ee1aa4cd77a311e8e56eb7042a1e1e7fe492adb",
- "impliedFormat": 1
- },
- {
- "version": "b543f702122a4af3f63fe53675b270b470befdedbfded945f3c042edf8d2468a",
- "impliedFormat": 1
- },
- {
- "version": "cb14f61770a3b2021e43a05eb15afc1353883f8a611916a6fe5fab6313f29a87",
- "impliedFormat": 1
- },
- {
- "version": "6d00fb60c7e85d0285844c3246acdbd61dcf96b4b9e91d4eda9442cf9d5c557d",
- "impliedFormat": 1
- },
- {
- "version": "ec060450f2ba4c6eaa51be759b0fa61ba7485b7bbde4ac6bc9c01d47c39007c4",
- "impliedFormat": 1
- },
- {
- "version": "b832e38135a24b4eafb5050a0e459d5621d97d1598e3eb2b098869352d71b5c2",
- "impliedFormat": 1
- },
- {
- "version": "3f26ffc1b39a916e73b20ee984a52b130f66ae7d7329c56781dc829f2863a52a",
- "impliedFormat": 1
- },
- {
- "version": "97fadc416269ebbbe3aa92ee5f19db8f6b310f364be0bbf10d52262ce12f6d2a",
- "impliedFormat": 1
- },
- {
- "version": "94498580225a27fb8fec1e834fb2a974916916c46fb39d12615a64484f412c68",
- "impliedFormat": 1
- },
- {
- "version": "6d29d5b80d237cb622cf45ab8ff6b6876b61a4797455c72c56d4dd5df5c12960",
- "impliedFormat": 1
- },
- {
- "version": "110c30dea76a18ea1c8d1f980601db2b3300571ad00ec025b26858f7b45ebee7",
- "impliedFormat": 1
- },
- {
- "version": "769b47b13af06bdc5ac041b559690da8223a519d42508944b4c98eb6cc0ec934",
- "impliedFormat": 1
- },
- {
- "version": "bf2319665c8c69517cf89377765d2d3af231cf559cf1080aa37ff15015e9a4eb",
- "impliedFormat": 1
- },
- {
- "version": "b8cef6e390e7911fbee7f4246eab425cd1f3e626684472521dccbfb38118d1ca",
- "impliedFormat": 1
- },
- {
- "version": "5ab43a0a068a9039237aed0a5093c9554baeed727177f3657e3de762119bb96a",
- "impliedFormat": 1
- },
- {
- "version": "67220d0e0f450914033987a55f80e310fc3523c029377dd79d6cfd6c77f1b06f",
- "impliedFormat": 1
- },
- {
- "version": "a57f2bdc227a3f0b293b50b782e05f9530300f4694593efa1b663ef018f232ba",
- "impliedFormat": 1
- },
- {
- "version": "45ea575b839cbb9fa26936e7ce454a858e6d49ae556b29ba035960ee45a32876",
- "impliedFormat": 1
- },
- {
- "version": "d19eced46b92ea366f8ea66f6b6e02bc3abbae65d28437d87a8c22486530f4b7",
- "impliedFormat": 1
- },
- {
- "version": "69f537de6387ebfd4e5e17ef5edcaf3ed967b9b2ca316938348bda0e2b907586",
- "impliedFormat": 1
- },
- {
- "version": "3880a0278c1c935e06b49300ffc091fd722f82f018a71f0d0b9fd302a1a44252",
- "impliedFormat": 1
- },
- {
- "version": "fa3d90c8a0b0bc27a28d95104412cf3deb43bc6e97c5851887e7c643408aab65",
- "impliedFormat": 1
- },
- {
- "version": "f9b21b02be2c9170361809c9023304e63e3f2de7040a660da04a3e85ace807a2",
- "impliedFormat": 1
- },
- {
- "version": "01aee7686162f433bbb88354416ae684d9db1607a51886804e5826e063c9ffdc",
- "impliedFormat": 1
- },
- {
- "version": "62d3ef6a4ba6bdec0083533d0e794841370bdc6db39a7494cd0671e6cb707859",
- "impliedFormat": 1
- },
- {
- "version": "8609aa95007ff71195d12c68dc405f22bbb9b87ac954d2faf33f5e162de09466",
- "impliedFormat": 1
- },
- {
- "version": "829e988fd6fce09a6b43f2e8d406b88c3a77829bcb4636a1fc9f1c2d2cf1a292",
- "impliedFormat": 1
- },
- {
- "version": "4a7936ceb36333420c0819c07b0909e8507f15689387c18b51dc308c8eca5972",
- "impliedFormat": 1
- },
- {
- "version": "13e88c78bb476b3bbafe9e917d58fbfc5fdaf2ffc1f8781e29583c3ec4c475c0",
- "impliedFormat": 1
- },
- {
- "version": "550df32299fca9250a7c3969cf43e695ef25ece8ef9ea67320ddf25d0f44870e",
- "impliedFormat": 1
- },
- {
- "version": "39248e5c8d993cf56705b739f649c97afcadee7ffdb4cd658ddf8809887751f8",
- "impliedFormat": 1
- },
- {
- "version": "a4943f4a4f51f45d60ea63373218bbdafc72eaeae888e0e33ec794673ad23d47",
- "impliedFormat": 1
- },
- {
- "version": "a801e2946b1bac807ef023b8d590dbf04c022e36b49afea9d3bd872a26b7336b",
- "impliedFormat": 1
- },
- {
- "version": "9e8bab0289b06b455ed18cfde794ed1eef4cf350ccd00e6a63907f8303754d5f",
- "impliedFormat": 1
- },
- {
- "version": "e9f662d3776b1c5b725747596bf4df2b9319131044927e73ab77a6ff44f091bb",
- "impliedFormat": 1
- },
- {
- "version": "d0f5db2bc91d8f845db76baff5fa6f62292ecbfc167b78ec5ff75da5bfd5ba3e",
- "impliedFormat": 1
- },
- {
- "version": "53c2531013baef4e1aa0e5ab5d34fd0f63fee313a3b7d0a54a0deb4121078c18",
- "impliedFormat": 1
- },
- {
- "version": "718d63c433fdd03909cf1e489aec287f000c431cf6f5b090a862605c3f0f7830",
- "impliedFormat": 1
- },
- {
- "version": "ab9fddfef297dbf96d74b5295f9c83da745054404f1f82f872b5d18f7405ecec",
- "impliedFormat": 1
- },
- {
- "version": "3875f9986470e60b87dcf03d4891d6590193dbd11063228bc8ce1629692af82d",
- "impliedFormat": 1
- },
- {
- "version": "a4e9e0d92dcad2cb387a5f1bdffe621569052f2d80186e11973aa7080260d296",
- "impliedFormat": 1
- },
- {
- "version": "f6380cc36fc3efc70084d288d0a05d0a2e09da012ee3853f9d62431e7216f129",
- "impliedFormat": 1
- },
- {
- "version": "497c3e541b4acf6c5d5ba75b03569cfe5fe25c8a87e6c87f1af98da6a3e7b918",
- "impliedFormat": 1
- },
- {
- "version": "d9429b81edf2fb2abf1e81e9c2e92615f596ed3166673d9b69b84c369b15fdc0",
- "impliedFormat": 1
- },
- {
- "version": "7e22943ae4e474854ca0695ab750a8026f55bb94278331fda02a4fb42efce063",
- "impliedFormat": 1
- },
- {
- "version": "7da9ff3d9a7e62ddca6393a23e67296ab88f2fcb94ee5f7fb977fa8e478852ac",
- "impliedFormat": 1
- },
- {
- "version": "e1b45cc21ea200308cbc8abae2fb0cfd014cb5b0e1d1643bcc50afa5959b6d83",
- "impliedFormat": 1
- },
- {
- "version": "c9740b0ce7533ce6ba21a7d424e38d2736acdddeab2b1a814c00396e62cc2f10",
- "impliedFormat": 1
- },
- {
- "version": "b3c1f6a3fdbb04c6b244de6d5772ffdd9e962a2faea1440e410049c13e874b87",
- "impliedFormat": 1
- },
- {
- "version": "dcaa872d9b52b9409979170734bdfd38f846c32114d05b70640fd05140b171bb",
- "impliedFormat": 1
- },
- {
- "version": "6c434d20da381fcd2e8b924a3ec9b8653cf8bed8e0da648e91f4c984bd2a5a91",
- "impliedFormat": 1
- },
- {
- "version": "992419d044caf6b14946fa7b9463819ab2eeb7af7c04919cc2087ce354c92266",
- "impliedFormat": 1
- },
- {
- "version": "fa9815e9ce1330289a5c0192e2e91eb6178c0caa83c19fe0c6a9f67013fe795c",
- "impliedFormat": 1
- },
- {
- "version": "06384a1a73fcf4524952ecd0d6b63171c5d41dd23573907a91ef0a687ddb4a8c",
- "impliedFormat": 1
- },
- {
- "version": "34b1594ecf1c84bcc7a04d9f583afa6345a6fea27a52cf2685f802629219de45",
- "impliedFormat": 1
- },
- {
- "version": "d82c9ca830d7b94b7530a2c5819064d8255b93dfeddc5b2ebb8a09316f002c89",
- "impliedFormat": 1
- },
- {
- "version": "7e046b9634add57e512412a7881efbc14d44d1c65eadd35432412aa564537975",
- "impliedFormat": 1
- },
- {
- "version": "aac9079b9e2b5180036f27ab37cb3cf4fd19955be48ccc82eab3f092ee3d4026",
- "impliedFormat": 1
- },
- {
- "version": "3d9c38933bc69e0a885da20f019de441a3b5433ce041ba5b9d3a541db4b568cb",
- "impliedFormat": 1
- },
- {
- "version": "606aa2b74372221b0f79ca8ae3568629f444cc454aa59b032e4cb602308dec94",
- "impliedFormat": 1
- },
- {
- "version": "50474eaea72bfda85cc37ae6cd29f0556965c0849495d96c8c04c940ef3d2f44",
- "impliedFormat": 1
- },
- {
- "version": "b4874382f863cf7dc82b3d15aed1e1372ac3fede462065d5bfc8510c0d8f7b19",
- "impliedFormat": 1
- },
- {
- "version": "df10b4f781871afb72b2d648d497671190b16b679bf7533b744cc10b3c6bf7ea",
- "impliedFormat": 1
- },
- {
- "version": "1fdc28754c77e852c92087c789a1461aa6eed19c335dc92ce6b16a188e7ba305",
- "impliedFormat": 1
- },
- {
- "version": "a656dab1d502d4ddc845b66d8735c484bfebbf0b1eda5fb29729222675759884",
- "impliedFormat": 1
- },
- {
- "version": "465a79505258d251068dc0047a67a3605dd26e6b15e9ad2cec297442cbb58820",
- "impliedFormat": 1
- },
- {
- "version": "ddae22d9329db28ce3d80a2a53f99eaed66959c1c9cd719c9b744e5470579d2f",
- "impliedFormat": 1
- },
- {
- "version": "d0e25feadef054c6fc6a7f55ccc3b27b7216142106b9ff50f5e7b19d85c62ca7",
- "impliedFormat": 1
- },
- {
- "version": "111214009193320cacbae104e8281f6cb37788b52a6a84d259f9822c8c71f6ca",
- "impliedFormat": 1
- },
- {
- "version": "01c8e2c8984c96b9b48be20ee396bd3689a3a3e6add8d50fe8229a7d4e62ff45",
- "impliedFormat": 1
- },
- {
- "version": "a4a0800b592e533897b4967b00fb00f7cd48af9714d300767cc231271aa100af",
- "impliedFormat": 1
- },
- {
- "version": "20aa818c3e16e40586f2fa26327ea17242c8873fe3412a69ec68846017219314",
- "impliedFormat": 1
- },
- {
- "version": "f498532f53d54f831851990cb4bcd96063d73e302906fa07e2df24aa5935c7d1",
- "impliedFormat": 1
- },
- {
- "version": "5fd19dfde8de7a0b91df6a9bbdc44b648fd1f245cae9e8b8cf210d83ee06f106",
- "impliedFormat": 1
- },
- {
- "version": "3b8d6638c32e63ea0679eb26d1eb78534f4cc02c27b80f1c0a19f348774f5571",
- "impliedFormat": 1
- },
- {
- "version": "ce0da52e69bc3d82a7b5bc40da6baad08d3790de13ad35e89148a88055b46809",
- "impliedFormat": 1
- },
- {
- "version": "9e01233da81bfed887f8d9a70d1a26bf11b8ddff165806cc586c84980bf8fc24",
- "impliedFormat": 1
- },
- {
- "version": "214a6afbab8b285fc97eb3cece36cae65ea2fca3cbd0c017a96159b14050d202",
- "impliedFormat": 1
- },
- {
- "version": "14beeca2944b75b229c0549e0996dc4b7863e07257e0d359d63a7be49a6b86a4",
- "impliedFormat": 1
- },
- {
- "version": "f7bb9adb1daa749208b47d1313a46837e4d27687f85a3af7777fc1c9b3dc06b1",
- "impliedFormat": 1
- },
- {
- "version": "c549fe2f52101ffe47f58107c702af7cdcd42da8c80afd79f707d1c5d77d4b6e",
- "impliedFormat": 1
- },
- {
- "version": "3966ea9e1c1a5f6e636606785999734988e135541b79adc6b5d00abdc0f4bf05",
- "impliedFormat": 1
- },
- {
- "version": "0b60b69c957adb27f990fbc27ea4ac1064249400262d7c4c1b0a1687506b3406",
- "impliedFormat": 1
- },
- {
- "version": "12c26e5d1befc0ded725cee4c2316f276013e6f2eb545966562ae9a0c1931357",
- "impliedFormat": 1
- },
- {
- "version": "27b247363f1376c12310f73ebac6debcde009c0b95b65a8207e4fa90e132b30a",
- "impliedFormat": 1
- },
- {
- "version": "05bd302e2249da923048c09dc684d1d74cb205551a87f22fb8badc09ec532a08",
- "impliedFormat": 1
- },
- {
- "version": "fe930ec064571ab3b698b13bddf60a29abf9d2f36d51ab1ca0083b087b061f3a",
- "impliedFormat": 1
- },
- {
- "version": "6b85c4198e4b62b0056d55135ad95909adf1b95c9a86cdbed2c0f4cc1a902d53",
- "impliedFormat": 1
- },
- {
- "version": "5b0a37625653b878a2dea8a2bd3606b08afd4c5435c602123f93d0abcee7278b",
- "impliedFormat": 1
- },
- {
- "version": "3960170989120c4776de46353f760dc83e625356120c9f4ec551a100bfad304b",
- "impliedFormat": 1
- },
- {
- "version": "5d2c3510e9435b1425701545b7256f54ea50f04d90ccefbb1c59630437574f27",
- "impliedFormat": 1
- },
- {
- "version": "6de61e2bd3f74ca8431d013bdee0667ad140f6c33e86ef0bffc3eecd0a177c0e",
- "impliedFormat": 1
- },
- {
- "version": "2da6a88db7c63476444b4f86836a181afc665a27a76216e2573228e31945aa20",
- "impliedFormat": 1
- },
- {
- "version": "4e1a7d04c48095bf58b4d412d2032026e31f0924eb4c1094366fbb74e4d9ad3d",
- "impliedFormat": 1
- },
- {
- "version": "0f67da0334f5cfe857d3a691d77b1b77969b19680ca17a4d5257fb2ee7d1cdc2",
- "impliedFormat": 1
- },
- {
- "version": "be1df6dd59c2cb384f8c6d67637ec39c4bba868eb132d890999704c2b891a53f",
- "impliedFormat": 1
- },
- {
- "version": "2b809c20f0f23d1b7e136cbb1f20dbb04ac781e2bb53059938b183e42a1a37d6",
- "impliedFormat": 1
- },
- {
- "version": "aa9a80428c275bcce3ef886f726084ad858678cdd8fbad418c044f449c8eb42c",
- "impliedFormat": 1
- },
- {
- "version": "09a7b3e963e5fc1cd24cce8eb15f52bfd45890f398afeff8aea4e67031458719",
- "impliedFormat": 1
- },
- {
- "version": "4990ff30f9b1f09013cc502acacf9986f161df8ec94220c997a674da29a12d34",
- "impliedFormat": 1
- },
- {
- "version": "29eb3afed89c7362edc4c490a7ce5437079a5d7cab7f56b2728fb503e266c6ca",
- "impliedFormat": 1
- },
- {
- "version": "cb01a788fc87e8359538284b34f2dd160798ac47417b356acd9c42c83e9a6e9e",
- "impliedFormat": 1
- },
- {
- "version": "901716549627e07fb0e37968cfba8bab25df470d409376e19ea69ef06409dd3e",
- "impliedFormat": 1
- },
- {
- "version": "a1e8ec7e9901514002cebcf3b0eba3c9e5b6a043d4507d3c0e0f11917d570d95",
- "impliedFormat": 1
- },
- {
- "version": "07ea97f8e11cedfb35f22c5cab2f7aacd8721df7a9052fb577f9ba400932933b",
- "impliedFormat": 1
- },
- {
- "version": "89d38c7653de0c74c3752f77ef50472e158fd37304c58dca3ec3ab0e03ec40e7",
- "impliedFormat": 1
- },
- {
- "version": "dbfa8af0021ddb4ddebe1b279b46e5bccf05f473c178041b3b859b1d535dd1e5",
- "impliedFormat": 1
- },
- {
- "version": "7ab2721483b53d5551175e29a383283242704c217695378e2462c16de44aff1a",
- "impliedFormat": 1
- },
- {
- "version": "bcd53fb10140012c84d7440fcf5e124643bb1b7898909d6220f1308bd8a94e7d",
- "impliedFormat": 1
- },
- {
- "version": "15c662fe6ce3e8d1bf0d44191296e37420e0823a81958f2c79618890282c0a59",
- "impliedFormat": 1
- },
- {
- "version": "1538a8a715f841d0a130b6542c72aea01d55d6aa515910dfef356185acf3b252",
- "impliedFormat": 1
- },
- {
- "version": "68eeb3d2d97a86a2c037e1268f059220899861172e426b656740effd93f63a45",
- "impliedFormat": 1
- },
- {
- "version": "f521ab6dd9c7d1bffed41fc69f1c7f763743ed4bbc07a4ccae664e65c84711ee",
- "impliedFormat": 1
- },
- {
- "version": "0d65250cfc0a084baa749f9d00d0d772fb4ddcac6e0542ca33b61da515b65ddc",
- "impliedFormat": 1
- },
- {
- "version": "675e5ac3410a9a186dd746e7b2b5612fa77c49f534283876ffc0c58257da2be7",
- "impliedFormat": 1
- },
- {
- "version": "49eef7670ddfc0397cfd1e86d6bcff7deecf476efb30e48d1312856f0dc4943d",
- "impliedFormat": 1
- },
- {
- "version": "cc8d1de1eae048fb318267cc9ddd5a86643c46be09baa20881ab33163ca9653b",
- "impliedFormat": 1
- },
- {
- "version": "d6025465105bae03153679b3241805998316f492a6a449f14cd8b92489c2a6a9",
- "impliedFormat": 1
- },
- {
- "version": "63de4f4c8ff404aa52beaa2f71c9e508d9e9b3250b2824d0393c9dcfee8ab8d6",
- "impliedFormat": 1
- },
- {
- "version": "27b33e3a7a19563752b13d0973039240b549ede107009dc02866e12c5dd2273e",
- "impliedFormat": 1
- },
- {
- "version": "48609767cd72c5b4714dc76f3ab7bfe1c54c245d4fea5bb5122b631d9a8ae963",
- "impliedFormat": 1
- },
- {
- "version": "a7f590406204026bf49d737edb9d605bb181d0675e5894a6b80714bbc525f3df",
- "impliedFormat": 1
- },
- {
- "version": "533039607e507410c858c1fa607d473deacb25c8bf0c3f1bd74873af5210e9a0",
- "impliedFormat": 1
- },
- {
- "version": "c10953c3930a73787744a9ab9d6dca999bbf67e47523467f5c15cf070bf7d9fa",
- "impliedFormat": 1
- },
- {
- "version": "4207e6f2556e3e9f7daa5d1dd1fdaa294f7d766ebea653846518af48a41dd8e0",
- "impliedFormat": 1
- },
- {
- "version": "c94b3332d328b45216078155ba5228b4b4f500d6282ac1def812f70f0306ed1c",
- "impliedFormat": 1
- },
- {
- "version": "43497bdd2d9b53afad7eed81fb5656a36c3a6c735971c1eed576d18d3e1b8345",
- "impliedFormat": 1
- },
- {
- "version": "b13319e9b7e8a9172330a364416d483c98f3672606695b40af167754c91fa4ec",
- "impliedFormat": 1
- },
- {
- "version": "7f8a5e8fc773c089c8ca1b27a6fea3b4b1abc8e80ca0dd5c17086bbed1df6eaa",
- "impliedFormat": 1
- },
- {
- "version": "d2c19aa3fe2b5fab220c5f1e911ac5a936ad771a9c5cd3d00d1e868112ab97ad",
- "impliedFormat": 1
- },
- {
- "version": "3f7081ce9e63775009f67c7fc9c4eb4dcf16db37e0b715b38a373bad0c07df69",
- "impliedFormat": 1
- },
- {
- "version": "724775a12f87fc7005c3805c77265374a28fb3bc93c394a96e2b4ffee9dde65d",
- "impliedFormat": 1
- },
- {
- "version": "5c37b7e2b41f0a8af443cb1d589c171e0dcf0dbfbde2569632af87f24e5ea893",
- "impliedFormat": 1
- },
- {
- "version": "b646e3d74123131d98458615cd618b978d38670f5d15e87767eb7466b04017bb",
- "impliedFormat": 1
- },
- {
- "version": "5461f831e6afb7c73eb8216500d5670f5ee89644dc7835cb161825895776cf8b",
- "impliedFormat": 1
- },
- {
- "version": "ed6d3024f7812bf10119bfb0e14ae6ed13b4080caa08a6f8704ff1c3fe78f919",
- "impliedFormat": 1
- },
- {
- "version": "cc0e834c8cb2733d07941d61b178ff4600bb98f3a85082a5e2f20728f1029a96",
- "impliedFormat": 1
- },
- {
- "version": "bcd3257c5486e9c4572ede5089524f899824dd86fd910f5b826d6838019b745e",
- "impliedFormat": 1
- },
- {
- "version": "4330d600b00d422bde3bc445365b3724a13ebe8c1fd63b79ef9889c01932c445",
- "impliedFormat": 1
- },
- {
- "version": "bf22ee38d4d989e1c72307ab701557022e074e66940cf3d03efa9beb72224723",
- "impliedFormat": 1
- },
- {
- "version": "39aa4e7fb238e24c127b6b641dd7f20eb0dd99a0a1d994d6ff1d82a6ac251db2",
- "impliedFormat": 1
- },
- {
- "version": "1f93b377bb06ed9de4dc4eb664878edb8dcac61822f6e7633ca99a3d4a1d85da",
- "impliedFormat": 1
- },
- {
- "version": "53e77c7bf8f076340edde20bf00088543230ba19c198346112af35140a0cfac5",
- "impliedFormat": 1
- },
- {
- "version": "cec6a5e638d005c00dd6b1eaafe6179e835022f8438ff210ddb3fe0ae76f4bf9",
- "impliedFormat": 1
- },
- {
- "version": "c264c5bb2f6ec6cea1f9b159b841fc8f6f6a87eb279fef6c471b127c41001034",
- "impliedFormat": 1
- },
- {
- "version": "ff42cc408214648895c1de8ada2143edc3379b5cbb7667d5add8b0b3630c9634",
- "impliedFormat": 1
- },
- {
- "version": "c9018ca6314539bf92981ab4f6bc045d7caaff9f798ce7e89d60bb1bb70f579c",
- "impliedFormat": 1
- },
- {
- "version": "48a2488687e14191e50930fbd59058638af6c35c7432ce99d87b575e566816cc",
- "impliedFormat": 1
- },
- {
- "version": "b83a3738f76980505205e6c88ca03823d01b1aa48b3700e8ba69f47d72ab8d0f",
- "impliedFormat": 1
- },
- {
- "version": "01b9f216ada543f5c9a37fbc24d80a0113bda8c7c2c057d0d1414cde801e5f9d",
- "impliedFormat": 1
- },
- {
- "version": "f1e9397225a760524141dc52b1ca670084bde5272e56db1bd0ad8c8bea8c1c30",
- "impliedFormat": 1
- },
- {
- "version": "84672c9c04b7196492d5ae49eeaff8a7986415898a276c73c0e373e05f99a045",
- "impliedFormat": 1
- },
- {
- "version": "717242c9a1be7039ea5872293a9acadcab0e578221f9523d1534267fec31d60d",
- "impliedFormat": 1
- },
- {
- "version": "25ce1a008a22dde9d87f246fb6333326ffa25e97638b0fb089bbde98db162038",
- "impliedFormat": 1
- },
- {
- "version": "1f4ee0f727527241dd8d9d882723c9e0294e4a1fffba0c314039605356b753e9",
- "impliedFormat": 1
- },
- {
- "version": "85af5f2145b5f284dc938f239b201e8f2939b741d91540b0a9f6f143440adf42",
- "impliedFormat": 1
- },
- {
- "version": "f1b346754b2ea845146fe89ccafc326de1bc87092565fa7b67164456d86dc623",
- "impliedFormat": 1
- },
- {
- "version": "d8806304f06bb16076ff86eb7b5ae106023aa82bdfe69f41550319ae46aaf9d3",
- "impliedFormat": 1
- },
- {
- "version": "03e845df3ef2c73d5e76489c06a9573755d2c9073565f5390ec3d3567096aead",
- "impliedFormat": 1
- },
- {
- "version": "d104a855e65ff9c63118a842af3f4b9387145b527b93cb97858ae54a2383cc21",
- "impliedFormat": 1
- },
- {
- "version": "c1399f9d32aa36f0b2dabe1f494a6061ca85e2e5e2a67070a9c5c36d2a83a3fb",
- "impliedFormat": 1
- },
- {
- "version": "66ffe172e7a3879d606421c19f6f0dcd607527588e277621c686f2f3675fb2ad",
- "impliedFormat": 1
- },
- {
- "version": "cc2418937183b4354a3bf621a5d9a8e11a490fbceee71f46515058f039c7746e",
- "impliedFormat": 1
- },
- {
- "version": "56dba2f61eaeac928ef53a9c4b6df96df33834f0b8d39f59ac820bc4f0b65f5c",
- "impliedFormat": 1
- },
- {
- "version": "cd34fe236632c8c8cebdaa374d5b6ca4edfdfef0bc29d365f6613498970b4a44",
- "impliedFormat": 1
- },
- {
- "version": "e009f9f511db1a215577f241b2dc6d3f9418f9bc1686b6950a1d3f1b433a37ff",
- "impliedFormat": 1
- },
- {
- "version": "a82f1cae07471a353623bedad67e7fb26eb626d7791142cfe6037cd9c4e7bde3",
- "impliedFormat": 1
- },
- {
- "version": "64d15723ce818bb7074679f5e8d4d19a6e753223f5965fd9f1a9a1f029f802f7",
- "impliedFormat": 1
- },
- {
- "version": "2900496cc3034767cd31dd8e628e046bc3e1e5f199afe7323ece090e8872cfa7",
- "impliedFormat": 1
- },
- {
- "version": "6d2089f3928a72795c3648b3a296047cb566cd2dae161db50434faf12e0b2843",
- "impliedFormat": 1
- },
- {
- "version": "97e8c3a9ffa71c62eb745f3eeb41d493e42127baca20b7cd03e4a53702e99254",
- "impliedFormat": 1
- },
- {
- "version": "6ea62a927ac2607a6411804617e52761741fae66e533f617d5fbf3f3eff1073b",
- "impliedFormat": 1
- },
- {
- "version": "ac8582e453158a1e4cccfb683af8850b9d2a0420e7f6f9a260ab268fc715ab0d",
- "impliedFormat": 1
- },
- {
- "version": "c80aa3ff0661e065d700a72d8924dcec32bf30eb8f184c962da43f01a5edeb6f",
- "impliedFormat": 1
- },
- {
- "version": "42ac0a2d5b1092413b8866603841ce62aeaaf4ee51d07dd872e6a2813dd83fd5",
- "impliedFormat": 1
- },
- {
- "version": "800336060bed9892ffe5b618002e55a6341589d49f33f0b4f0aeffd950e90180",
- "impliedFormat": 1
- },
- {
- "version": "ece1e5ebb02df1f9a6dcc24dd972c88b065b2c74494b3c475817b70e9a62c289",
- "impliedFormat": 1
- },
- {
- "version": "cdec09a633b816046d9496a59345ad81f5f97c642baf4fe1611554aa3fbf4a41",
- "impliedFormat": 1
- },
- {
- "version": "5b933c1b71bff2aa417038dabb527b8318d9ef6136f7bd612046e66a062f5dbf",
- "impliedFormat": 1
- },
- {
- "version": "b94a350c0e4d7d40b81c5873b42ae0e3629b0c45abf2a1eeb1a3c88f60a26e9a",
- "impliedFormat": 1
- },
- {
- "version": "a4fafc9e188dbcd3f030170698b98d0610290b923baa6dbc5ef73652fa73239e",
- "impliedFormat": 1
- },
- {
- "version": "ceea84e44e119a15325c107bb6a9da6f567fc0dfe0c7c0f0e14e01a6c414965a",
- "impliedFormat": 1
- },
- {
- "version": "bfc0481f643bb66acbe6ff99773257c7d7b46b3a675faa4facc7bf50a8ba2208",
- "impliedFormat": 1
- },
- {
- "version": "f218c747145eec6830f8e0efc8d788987f67fce6dabfcb70bde3560bf47d0511",
- "impliedFormat": 1
- },
- {
- "version": "f13c9631dc6452116f3a986087dd9a7821b22deeb0c786b941d1483b35189287",
- "impliedFormat": 1
- },
- {
- "version": "4bac0f7f581329423f654f76d113f9073b4d18fd6e83b84beca4af9b5ed4fee9",
- "impliedFormat": 1
- },
- {
- "version": "1ba3a5fb02029c4bb2e542ca700e3308c972a7b34b153b344b078e45ea0db005",
- "impliedFormat": 1
- },
- {
- "version": "94d8bc3c878752ee289d7c3f3549f32881e29fcc561c8bf9d9f2cd67b558ed93",
- "impliedFormat": 1
- },
- {
- "version": "3875f9986470e60b87dcf03d4891d6590193dbd11063228bc8ce1629692af82d",
- "impliedFormat": 1
- },
- {
- "version": "3875f9986470e60b87dcf03d4891d6590193dbd11063228bc8ce1629692af82d",
- "impliedFormat": 1
- },
- {
- "version": "c310cdd8f5c5f7195436a6a94800126c046aeeeb3aeb447f76165a682798857f",
- "impliedFormat": 1
- },
- {
- "version": "429ac276218b289820898ae3b2057ee418c6d30c968d1fa17851b2063122899b",
- "impliedFormat": 1
- },
- {
- "version": "dd07494b3edca057ace378714d8c3a9a95c346bef6b718056ef1a7ee054e35c1",
- "impliedFormat": 1
- },
- {
- "version": "3875f9986470e60b87dcf03d4891d6590193dbd11063228bc8ce1629692af82d",
- "impliedFormat": 1
- },
- {
- "version": "20b667e15cc2ab14000609214c2e560e540c822bf31b941fb4f15038e29ce605",
- "impliedFormat": 1
- },
- {
- "version": "a2901a2c60003b08f88adbf09eab8c387f4ce17751bfbe8ad59b73a1d6628734",
- "impliedFormat": 1
- },
- {
- "version": "a1ce92273694753d181dd7f0e7994c4e71e0ed0a4c8a3b1a4876d5709e7e87b0",
- "impliedFormat": 1
- },
- {
- "version": "3fed20104be1a20c52735d961b64f9a1decdd07748b7c35b4ac46aa8b2487883",
- "impliedFormat": 1
- },
- {
- "version": "05c4afe9fb849418a4cf8bcffd123f30cb94a5335bb709b7ef615d788d0d9220",
- "impliedFormat": 1
- },
- {
- "version": "68e20196d3296ce2ace8c5fcf6eff61cd607033e2804b8d13088eb23f38f83d7",
- "impliedFormat": 1
- },
- {
- "version": "ef50b70e88dd06c43a36110f6452eb274399654c77bb786c55bcfc58e8ab406b",
- "impliedFormat": 1
- },
- {
- "version": "0d32c4a5c28cccaacc760bd77605be8bef7e179b94818a513e96632077a9d798",
- "impliedFormat": 1
- },
- {
- "version": "6e727bbc5649553582173cf772511a06d036a4ac2cf9ef21957c8af0e7669432",
- "impliedFormat": 1
- },
- {
- "version": "23b69abd7830907e3cb24e8a8f7071328dd2915cb44a729171e69a6fa48626ef",
- "impliedFormat": 1
- },
- {
- "version": "72fc9bcdb1f07124dcb994d64e1514feda9a707cf80bf87fcf9597ae1d6ad088",
- "impliedFormat": 1
- },
- {
- "version": "4baf7a39de0af2ce60bf24a37c65ce8c2ba09be738834a92ae2a0808cf18bed9",
- "impliedFormat": 1
- },
- {
- "version": "bdd2b680797233e9645c1011cebbde4987fa9d21e92a61b555ed4690c57bfe44",
- "impliedFormat": 1
- },
- {
- "version": "025323d353041634f51777be926c79dc47366c4867886485b3971d5718046e0b",
- "impliedFormat": 1
- },
- {
- "version": "15daaffa8710627bdbc8acb01d2dca6d3008599f732e2ebddca1cb0e81301d6a",
- "impliedFormat": 1
- },
- {
- "version": "6c9779960bef81e8e52cc0a8046b369b8d1d355917f3944b394cce768166c9b1",
- "impliedFormat": 1
- },
- {
- "version": "edac6d4749a2c20a61aada6d97314e05d39d9d5f724fe07552d06fb4bce76f4d",
- "impliedFormat": 1
- },
- {
- "version": "3012abf69fcd0a123f860ead296e961820a916720e05af4f8d9afd8c76c7ae07",
- "impliedFormat": 1
- },
- {
- "version": "7d6962e3173e2d678390c064af25d4300f6ba0a44330064734d76b95851fe32f",
- "impliedFormat": 1
- },
- {
- "version": "a901268ccef541a32ee9bbb5e894215c3abdd399c88330d4ba02dda52b565da1",
- "impliedFormat": 1
- },
- {
- "version": "d97f61aa454c09026d827c6eb0167ac5c5db661e214d8a50e87abddfeac8d822",
- "impliedFormat": 1
- },
- {
- "version": "e96dc917d49c213d8ddb9eb28e5c9d1dbde2555ce565fbbb7556051deb4287c8",
- "impliedFormat": 1
- },
- {
- "version": "4910d65c8c49642e68d09ddb016488b22db9e130356c40fdea250bc7611d4340",
- "impliedFormat": 1
- },
- {
- "version": "5610f32d4a772d2ec704d19a6e488f92f1448543295b3ee61dcf74e9fa46faf3",
- "impliedFormat": 1
- },
- {
- "version": "488512750e3332ebc673ba30368af2a48ff735b61d70e5f4c56885bc81502510",
- "impliedFormat": 1
- },
- {
- "version": "e70042f617e0e0afecc02961eebff126a21d891ca0a48243c736385cac078681",
- "impliedFormat": 1
- },
- {
- "version": "d0cc19ab8c73d8ae77ea36af6d2cd9c3ba676f4b2515ce31627eff39bfb98caa",
- "impliedFormat": 1
- },
- {
- "version": "3f2542f11fff5c15b8304bc11440bc109a63700dd7c25f56ad843e519bc19a64",
- "impliedFormat": 1
- },
- {
- "version": "f9d6586afc335a86d826509948d820369f837d8ea06fe5be065be02dbb3fd00c",
- "impliedFormat": 1
- },
- {
- "version": "6b7b8218850f21248a311812c4d6c196ffc293e0e41c71eacceafdfa6c74eaf0",
- "impliedFormat": 1
- },
- {
- "version": "f1b960f33f68bcb6685806b9471dc415676108541ca0db3c0c6cae512bed87dc",
- "impliedFormat": 1
- },
- {
- "version": "6a7572e29ba3dbec7a066a82fa0f7b57268295a8120467ba81ce3165e0e63aa1",
- "impliedFormat": 1
- },
- {
- "version": "9144e1dc296c867f4d99baabe57e470c07f3552b5c3f05822058cc4d73033012",
- "impliedFormat": 1
- },
- {
- "version": "4b9fcf61d3788633f9c441180233aa55a35b80a8793e7266e451726bc1f068a3",
- "impliedFormat": 1
- },
- {
- "version": "ab90eee34f8b89770059c0563ba52911a5710c57fecbdd69d3b8cb2408034a87",
- "impliedFormat": 1
- },
- {
- "version": "4b7ee2be595a4604d0d93f24b451e8b726e99db002fe395957f7d7169bf80f38",
- "impliedFormat": 1
- },
- {
- "version": "bc253412815953c66797b6c25bf50f2824fa89e7da4637f02e02542c536d44e3",
- "impliedFormat": 1
- },
- {
- "version": "6bd4dddedecf608a398948b7ccdd577709d2ef1e38b1b54cdefac21ecd5d8b0b",
- "impliedFormat": 1
- },
- {
- "version": "34c85e0b9ecb1eb38630b40a9f0682a04a6f01b48cef91a84a1fd4a75c5cd2fe",
- "impliedFormat": 1
- },
- {
- "version": "9751eb2b973ef42d6a82ca267d7d69a8f5cf32e9367200ec98a8b30eec517c52",
- "impliedFormat": 1
- },
- {
- "version": "e8b97248e5ea151d6e91ce33bfd0e818c1a699ecb9d6bac69dbfc4324e5252cb",
- "impliedFormat": 1
- },
- {
- "version": "8b268efb0c49011ef2a4450fd0b537f79fe44d78e0b40a5d1ede3de4eec2846e",
- "impliedFormat": 1
- },
- {
- "version": "ebc64809ce8cdfaff8617d53b98743ffca60c465b39f21bd88c320cffb6ac525",
- "impliedFormat": 1
- },
- {
- "version": "0206d6a896c3e0ea6493e37c336a5208fe175dbdb36a561ef707fd5936a00fc8",
- "impliedFormat": 1
- },
- {
- "version": "0539e7dcef1edc97d9380b6049d5a4ef8ef8c8133a5602febd970c06413a30e3",
- "impliedFormat": 1
- },
- {
- "version": "8cd3e5ee9e30d714095c91dff08ae98fb883a7622199d34bd1ec6a682f085479",
- "impliedFormat": 1
- },
- {
- "version": "a50bb1e0b8e55f5bd4e314a265f864c898fbdf8e8f834da298d6d6d9be3ca825",
- "impliedFormat": 1
- },
- {
- "version": "9e24aba05882bc5f2dea831035dc78c1ac66cc42bd2235f2da6aaf65bac007ce",
- "impliedFormat": 1
- },
- {
- "version": "698a3416ce487bd0791358d7df5f996e9bf14dfa00e0181f8198ca984c39526a",
- "impliedFormat": 1
- },
- {
- "version": "107d632cd956af70ba6cef4171bb72b75e8d3ededc30f591e7b8d97678feadc6",
- "impliedFormat": 1
- },
- {
- "version": "ce4a8e66384d464ec0469dafb0925e3ff8bd6af437c84777846e133488c4cb3b",
- "impliedFormat": 1
- },
- {
- "version": "c872b7329674ad2210c9d3b2522d5d4cadf5cffd2c5ca62ef1a18ec1f2e1b30e",
- "impliedFormat": 1
- },
- {
- "version": "4aa262ee533377af3943db1effd9666795d1fb9901d8581d39c1b6a0a84d9722",
- "impliedFormat": 1
- },
- {
- "version": "d4e4287637c7999738bd087539a5ace51056e40c85b9d7b6b466a831ec12725f",
- "impliedFormat": 1
- },
- {
- "version": "0abf8f5eff9a5fd84334db349115d04a089a5f9691e4ed67627048751ec544bb",
- "impliedFormat": 1
- },
- {
- "version": "81fc85f262ea5b2d1a25fe90d483f8d0d5a420de5aa1dcb8cbafac714a61e89a",
- "impliedFormat": 1
- },
- {
- "version": "3c7f18662fe8009316c923d17d1369b8f8b4b394e1915de670d4b8a2b2d609f5",
- "impliedFormat": 1
- },
- {
- "version": "839f4844367b8df7fde41f8e5f7e786dd403605bf3902852bb00ff326663efa4",
- "impliedFormat": 1
- },
- {
- "version": "43667dbe51bdb67469cbe6d32dd4ae46d334661078799b8cc2b6b0b420cf40b7",
- "impliedFormat": 1
- },
- {
- "version": "3dcd8780801a3a6bc1eb2b8ba231a0769a184860205192e75ba0dcf6c50aede2",
- "impliedFormat": 1
- },
- {
- "version": "f4a3ba0235c069c9da36ffab0194553167ccddbedcfd1b8322f7d05d8a58683e",
- "impliedFormat": 1
- },
- {
- "version": "7de72abaf1da882a87fbb801e0f197320ddbef2d25478ed62b00793c2698285a",
- "impliedFormat": 1
- },
- {
- "version": "6850c096e0a3af591106b5af9370c11849480bd9f128ff83677aaf7db6102f7b",
- "impliedFormat": 1
- },
- {
- "version": "13325ea1df70110200862ac733a40b4378619de7f5978c040e1d7661353e0232",
- "impliedFormat": 1
- },
- {
- "version": "dba820bb54ea381546394733fd626e4f201e25c7120dc015a40456255fe92b16",
- "impliedFormat": 1
- },
- {
- "version": "c766a45991ba8bf02bda29ed6e97f29f735b180d66a9ac8ddc6a96a6df41284a",
- "impliedFormat": 1
- },
- {
- "version": "5b979bb871cef894b2e0565e1d142b139a9e2e05cd7563444d2f8257066c45d3",
- "impliedFormat": 1
- },
- {
- "version": "7b27c9b7231cadd8a98c00aa248a989bb0d82f600b986aab7d9d8e696290b289",
- "impliedFormat": 1
- },
- {
- "version": "b8daa0cd0161175591a5b756cd9bf3bc63be4b588a609edd9b5e99a1fc813a97",
- "impliedFormat": 1
- },
- {
- "version": "4cd3682dfe49841843535b4e89f51f7817d17211043eef8cbc9cb6c964729386",
- "impliedFormat": 1
- },
- {
- "version": "1cf4c41b8403123d15e7cb065695d1e691fbfc55b232c51c3efe7490de56f971",
- "impliedFormat": 1
- },
- {
- "version": "f33ec7ea9796b967fc49a94f46561509f4c6581a37ea8dcf65528c1a97a1d7af",
- "impliedFormat": 1
- },
- {
- "version": "811bbe354916fc29c7d5cc8f7aa25036cfad794d06d1c19e3a739ee4942fad2c",
- "impliedFormat": 1
- },
- {
- "version": "746234e43703b098ef68ab1de91045e9651509f99681fd70b7f0698b430f44d3",
- "impliedFormat": 1
- },
- {
- "version": "44f32b8d2cb13a50a55b1636fd1bc52b85c2ffa9c54c3c3ca6eef4c91517cfa2",
- "impliedFormat": 1
- },
- {
- "version": "9d1e92199367121517e7757ccf8272039026e239fe2f1ab46f60c4ed0623478d",
- "impliedFormat": 1
- },
- {
- "version": "ba5675f82d2a5429a86089ccbbc553f160479dc468e87c693d909c54ffb335a0",
- "impliedFormat": 1
- },
- {
- "version": "1465319f522b33da95af135b3e5afbf4fb8b9d63697440c2fb84c9221f1937a4",
- "impliedFormat": 1
- },
- {
- "version": "c54ac39ccccc7a6dc61ff9b65207345547f44e7cc87a1a0d3d9a691e7d8417d4",
- "impliedFormat": 1
- },
- {
- "version": "c76f233c97e3880ce45b5815a2702c3eb797faaa1cc9ddb327facdb33d5ce960",
- "impliedFormat": 1
- },
- {
- "version": "e89382b246ecc4d19de299fa7ddf6486d66b08b7d3063946df62dc708d70fd1a",
- "impliedFormat": 1
- },
- {
- "version": "9a1879ec3983d8a97968f1049d10930cdc93b2d98b79478c4d9e42fb1c4fd722",
- "impliedFormat": 1
- },
- {
- "version": "a344447cc50acdd5b8b1e2bbd8e6243d02c769933a93efe8984db9cf416e15d6",
- "impliedFormat": 1
- },
- {
- "version": "70e7e39c19df09966604643c8c97b2efccc19825f4c372b9fdbf2df52b4d708b",
- "impliedFormat": 1
- },
- {
- "version": "6ccbe0b599804292f415d40137fc9a2b1143c88cfdc7bf26d9c612fa81835c74",
- "impliedFormat": 1
- },
- {
- "version": "bacf49e8ada6acb41e41655afc46dd7d070011c44b8c62a2123e0d6402c02a05",
- "impliedFormat": 1
- },
- {
- "version": "a622328851bcf8bb37dc862e0c498c8acf0bdabf7df2b83b330d34ed07242413",
- "impliedFormat": 1
- },
- {
- "version": "e083f5318bff20be11a5427fcd1e53f738b8d473476e53d0cebfb615cc96cdad",
- "impliedFormat": 1
- },
- {
- "version": "be4634adfc66f5c016aa3e68eaa39459277fa72b92c84267bea7a67076323ef8",
- "impliedFormat": 1
- },
- {
- "version": "7151b8846bef245e328d424d0d91988474f6f3db19845a2604d24b182fcee913",
- "impliedFormat": 1
- },
- {
- "version": "c83729dafd0665cb850faa9a80336e2242753b981faf810af60e21c3de17cb6d",
- "impliedFormat": 1
- },
- {
- "version": "24365239ab44c048fe5e385abe2fe3e02c14f4341229ca7f368c094be911546b",
- "impliedFormat": 1
- },
- {
- "version": "cc431dc6d648b13865a14b4400fd89bdb96176b9eaaebc75cbe3f6b567f59be5",
- "impliedFormat": 1
- },
- {
- "version": "2cef71dafb2819bc9ae02fe54271c6a704516a5733116a82dc50a204dc39403d",
- "impliedFormat": 1
- },
- {
- "version": "5e286c586e00f9576df08f8d07aea04589a1ae6a47039ed3e25b746ce56be07b",
- "impliedFormat": 1
- },
- {
- "version": "a80b3ff36f5537f0c6c33f5da59a5968130256dfd1e4c3ef2badca2e0dbdc513",
- "impliedFormat": 1
- },
- {
- "version": "301a231c845cb0bb7e9997180ad9afea484c9688b4b259030c7170567f901821",
- "impliedFormat": 1
- },
- {
- "version": "f7e06e927f98c09e9840082a79ac76e146e431d74428f4d91f3da1041db78cce",
- "impliedFormat": 1
- },
- {
- "version": "b9edaf1420603a4f1c3fd394a4b027a61c46cfae0dd262e34a989a0e7503553c",
- "impliedFormat": 1
- },
- {
- "version": "4a6f9beb7d2625d055a166b9d4a8f68c2b28c3ecff7dbae89bd018c2a3a6f74b",
- "impliedFormat": 1
- },
- {
- "version": "7026085c3b00d1a56718bd4167d5c3082fef00e88843261598de3764b9998bb5",
- "impliedFormat": 1
- },
- {
- "version": "6c2c608986f8eb8920e0341c1a4f9387e8cedf85ffe90bd093373f4423929063",
- "impliedFormat": 1
- },
- {
- "version": "8cafcf37b663b6963b0859f96f55865e71b39b3fe9d1d6df6ccdb33ef6d15029",
- "impliedFormat": 1
- },
- {
- "version": "b57b06ea8ccdbc8fd2162d3d382dcfb89a7ca3620ac41b173ba525c211c8acb3",
- "impliedFormat": 1
- },
- {
- "version": "d72df95aa1a5d1d142752e8167d74805ae4d9b931a3292c3ac155123d150f036",
- "impliedFormat": 1
- },
- {
- "version": "13dfae6ae7a21c488f1b151ed65171376f7567af6555e054b70886cbfe3d64ec",
- "impliedFormat": 1
- },
- {
- "version": "864c14f7528692ef51f65aa6d9fe868578fd7ccb4741d9d9320df53b5cd8d540",
- "impliedFormat": 1
- },
- {
- "version": "ebcb070368315a661e4d8c7c899ffeeeec0c80e9c919433ecfc0bd273e46b68c",
- "impliedFormat": 1
- },
- {
- "version": "c1e5370b5aa3b4c2bfcc5c697359405c416a3cd2a8fc8dc37983fd6b413248e2",
- "impliedFormat": 1
- },
- {
- "version": "e048db22f3d05aed69b0ccfa3595d3938d64bafcb34f1c620c75c043b8f1ddb3",
- "impliedFormat": 1
- },
- {
- "version": "18dad4108a3c47eb60ba84db63ec5e316f84534cf5d16d661f38590fb2a7e29b",
- "impliedFormat": 1
- },
- {
- "version": "8cf14db674e144974a3065dd7b089b6f26366acd2341a5a8251f1a61f98fb5ff",
- "impliedFormat": 1
- },
- {
- "version": "7f60e050892b1d50e0aef53f9b4e71f1476791545827cb7d46828928b1569bfe",
- "impliedFormat": 1
- },
- {
- "version": "832818ee76c21953841e09e96746111036d81c4c43347514f3efe95d1a36b435",
- "impliedFormat": 1
- },
- {
- "version": "506f020d57f0533306ceea918d20b9750693bd41276100f39a13a88bfe51a356",
- "impliedFormat": 1
- },
- {
- "version": "6a54f042169c236a081d5b1a5fb4264a9f96a9da36d38ea1c1c70861516cee1b",
- "impliedFormat": 1
- },
- {
- "version": "e843fd50f7390f97a570f0c20a73b0f303ef9f0849229c53c6faf9d9d6a542d3",
- "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": "6ded4be4f8a693d0c1646dfa2f1b6582e34b73c66ce334cb5e86c7bf8c2e52b7",
- "impliedFormat": 1
- },
- {
- "version": "5aea76ab98173f2c230b1f78dc010da403da622c105c468ace9fe24e3b77883c",
- "impliedFormat": 99
- },
- {
- "version": "6d23119f30c32c38641427d412d1cf04d0119d22b4b12016043e261e89291b5f",
- "impliedFormat": 1
- },
- {
- "version": "ccc141e8cef1778f472f5c926bf164deced9a1260ef8121338aa862c1e81d5ea",
- "impliedFormat": 1
- },
- {
- "version": "9b1323fb6eb0cb74ad79f23e68e66560b9a7207a8b241ac8e23e8679d6171c00",
- "impliedFormat": 1
- },
- {
- "version": "c91045fdc3c29b254f43cfeafa16352bd096fadc4fce049fabb27dcf10da3095",
- "impliedFormat": 1
- },
- {
- "version": "b29806c40b944edab3ae5074d535ce02a90a8e5a2dc95348ba7898bd8b6edb13",
- "impliedFormat": 1
- },
- {
- "version": "681dacd8d5d3ca833f7e0b9c5574c1f74c682fcac6da8a29604bdb953ca25f28",
- "impliedFormat": 1
- },
- {
- "version": "56dba2f61eaeac928ef53a9c4b6df96df33834f0b8d39f59ac820bc4f0b65f5c",
- "impliedFormat": 1
- },
- {
- "version": "9a6c138e2cab1b066e726e50227a1d9fa02be68f28402b59b9a7ef5a3a5544b4",
- "impliedFormat": 1
- },
- {
- "version": "e009f9f511db1a215577f241b2dc6d3f9418f9bc1686b6950a1d3f1b433a37ff",
- "impliedFormat": 1
- },
- {
- "version": "caa48f3b98f9737d51fabce5ce2d126de47d8f9dffeb7ad17cd500f7fd5112e0",
- "impliedFormat": 1
- },
- {
- "version": "64d15723ce818bb7074679f5e8d4d19a6e753223f5965fd9f1a9a1f029f802f7",
- "impliedFormat": 1
- },
- {
- "version": "2900496cc3034767cd31dd8e628e046bc3e1e5f199afe7323ece090e8872cfa7",
- "impliedFormat": 1
- },
- {
- "version": "ba74ef369486b613146fa4a3bccb959f3e64cdc6a43f05cc7010338ba0eab9f7",
- "impliedFormat": 1
- },
- {
- "version": "dd8e7bc9fe83f86f16e960b3ae0e43dcc6f92e8e657c70c8b49de45f735827d4",
- "impliedFormat": 1
- },
- {
- "version": "6ecab81e94fd8d2b6e8b7ab7fb887e2f116a6935e2a0828069d6b0b7c92aec17",
- "impliedFormat": 1
- },
- {
- "version": "6d2089f3928a72795c3648b3a296047cb566cd2dae161db50434faf12e0b2843",
- "impliedFormat": 1
- },
- {
- "version": "06767240be8807db054b6f050785761090321698540f30d125919fe47b2f6265",
- "impliedFormat": 1
- },
- {
- "version": "6ea62a927ac2607a6411804617e52761741fae66e533f617d5fbf3f3eff1073b",
- "impliedFormat": 1
- },
- {
- "version": "ac8582e453158a1e4cccfb683af8850b9d2a0420e7f6f9a260ab268fc715ab0d",
- "impliedFormat": 1
- },
- {
- "version": "c80aa3ff0661e065d700a72d8924dcec32bf30eb8f184c962da43f01a5edeb6f",
- "impliedFormat": 1
- },
- {
- "version": "42ac0a2d5b1092413b8866603841ce62aeaaf4ee51d07dd872e6a2813dd83fd5",
- "impliedFormat": 1
- },
- {
- "version": "ede1c79a89f65cc927cef2fe6f2ed052a78d12096edc0ecac9b92ca53cc3d8b6",
- "impliedFormat": 1
- },
- {
- "version": "ece1e5ebb02df1f9a6dcc24dd972c88b065b2c74494b3c475817b70e9a62c289",
- "impliedFormat": 1
- },
- {
- "version": "cdec09a633b816046d9496a59345ad81f5f97c642baf4fe1611554aa3fbf4a41",
- "impliedFormat": 1
- },
- {
- "version": "5b933c1b71bff2aa417038dabb527b8318d9ef6136f7bd612046e66a062f5dbf",
- "impliedFormat": 1
- },
- {
- "version": "b94a350c0e4d7d40b81c5873b42ae0e3629b0c45abf2a1eeb1a3c88f60a26e9a",
- "impliedFormat": 1
- },
- {
- "version": "fec98193e9fe88584a25a46c5ccbf965c70921aa97c0becba84b4875b22452d0",
- "impliedFormat": 1
- },
- {
- "version": "188857be1eebad5f4021f5f771f248cf04495e27ad467aa1cf9624e35346e647",
- "impliedFormat": 1
- },
- {
- "version": "d0a20f432f1f10dc5dbb04ae3bee7253f5c7cee5865a262f9aac007b84902276",
- "impliedFormat": 1
- },
- {
- "version": "f218c747145eec6830f8e0efc8d788987f67fce6dabfcb70bde3560bf47d0511",
- "impliedFormat": 1
- },
- {
- "version": "f13c9631dc6452116f3a986087dd9a7821b22deeb0c786b941d1483b35189287",
- "impliedFormat": 1
- },
- {
- "version": "a239ee6317594257766506b6f2bd04c16e2f7f8fd4695ccd97545c7d0648ce88",
- "impliedFormat": 1
- },
- {
- "version": "ce08852fccf842857358d318c80ca151228aeeac4ad3d6614c00fa7d39bcde84",
- "impliedFormat": 1
- },
- {
- "version": "818fc52eb3940de3be3dc67306ccf9a361bb28038ac8524673ec3adfd74ed0ca",
- "impliedFormat": 1
- },
- {
- "version": "bff0c0d1325ed1155d5a6a85492cb005f20217974007c33dd6e126962062274a",
- "impliedFormat": 1
- },
- {
- "version": "994d5acb7ca9e97d624e35b8fc0de5c37c0462bba8ec69682e16fd20d56bbf2e",
- "impliedFormat": 1
- },
- {
- "version": "16bdb6676c410e6c5624817e505d12a5bc75d1c168cdc5332957a7396ec8d180",
- "impliedFormat": 1
- },
- {
- "version": "f74e30830c9bf4ab33b5a43373be2911db49cbf9b9bb43f4ce18651e23945e44",
- "impliedFormat": 1
- },
- {
- "version": "bc31610e4354bf9a9216222a1810debb89181efb6b078b73652cc9ede2a62797",
- "impliedFormat": 1
- },
- {
- "version": "0963cd13a792c603f64cac465b5299344a6fa02c086a43a29b6586caa5edd710",
- "impliedFormat": 1
- },
- {
- "version": "9d2b9766c6d25f26c2ff45ddbde596c3857ea098eedb34248467db614b90a486",
- "impliedFormat": 1
- },
- {
- "version": "0400d7d27a702316010b8e4375387156be3d7cee4a797654598eb5751dfe13e3",
- "impliedFormat": 1
- },
- {
- "version": "201223daa41ecabd73d374677e6c8a55286fbec8fd73fa1dbc3b299f9d93d7cb",
- "impliedFormat": 1
- },
- {
- "version": "8cc05f3a6b0cf87e4a8a3e281e8dfadd8724f2a3d7d6c1c1bbaa2058942d8587",
- "impliedFormat": 1
- },
- {
- "version": "8a5f956c8081c872480d28c8717edf527894a186db3e5cf7e60702893c9eefcb",
- "impliedFormat": 1
- },
- {
- "version": "3d2dd1518c6d388b4d30e42b310b5cf8031ba6bb29d234cfc528ff61933faf09",
- "impliedFormat": 1
- },
- {
- "version": "104c67f0da1bdf0d94865419247e20eded83ce7f9911a1aa75fc675c077ca66e",
- "impliedFormat": 1
- },
- {
- "version": "ac88d433490776b404740b4da8b84fbe7a9f065bf1a9675e719b1f85453e6911",
- "impliedFormat": 1
- },
- {
- "version": "eee5ccaad9b34d9815ebc9ed75631a8e8abbf3f0c685ee5af502388e6772dcf8",
- "impliedFormat": 1
- },
- {
- "version": "c49f2a791ea76975972baf06a71f6fa34e6adf74bbe8282e28e55ddb9f8903fa",
- "impliedFormat": 1
- },
- {
- "version": "178a96be96fa318c554dc96b60ea5912d376be6c2f7348b4e6dade95604a3bc0",
- "impliedFormat": 1
- },
- {
- "version": "4ca064b1a0af2a0de9240393fcb0988c4278c9456136262401033a9aaac1e3ee",
- "impliedFormat": 1
- },
- {
- "version": "44a01d3e816c26b06eb256430b1e280e0a726291f5853b8f7362adcb63024ac0",
- "impliedFormat": 1
- },
- {
- "version": "321a59769ee1dad8634d4ae1cac39dc966d8262e7bc427f850e4fc8cf3b0eaee",
- "impliedFormat": 1
- },
- {
- "version": "faa15a5389fe38d13be4098256f384cd76ac919dabb3a77e29600aeae04355bd",
- "impliedFormat": 1
- },
- {
- "version": "77ce64b02588b1f2318d3d764c586a8de0c3e16d64a32d7ad7ed56141d064eb7",
- "impliedFormat": 1
- },
- {
- "version": "74e92192bfbc408f7902d24fa2900b1fe5429eb137a15ee60ae98ec3f5d5d2eb",
- "impliedFormat": 1
- },
- {
- "version": "2d95cec546c5862a836807827e129c0ad916975afb635fa5954b74a0e4d7b388",
- "impliedFormat": 1
- },
- {
- "version": "15d39e2150be386ac501b22c5a1620457d880761d60a564cbd57026a8d8eb28e",
- "impliedFormat": 1
- },
- {
- "version": "00594f16b55b9b6b3064ab907743a13173c1d1c440f95c865b363272fdce049d",
- "impliedFormat": 1
- },
- {
- "version": "e858abcfb13e2de2b7f51a03b1ed471aa98e29f564c0bfaf94f5085bcd6c5486",
- "impliedFormat": 1
- },
- {
- "version": "cea38b7a0b18fde901ec747343c03f3e0b48999022e2f51a68ccdae0413725b1",
- "impliedFormat": 1
- },
- {
- "version": "9ab0857c5219391228e9fff43f17fa45068ad03c31e36a3d1b28a286e80e0f87",
- "impliedFormat": 1
- },
- {
- "version": "bd0ec2845d7857116f0945896c976ed3ea560e765eb814818451a26b2031b1a4",
- "impliedFormat": 1
- },
- {
- "version": "b433616295c91903d98330b9250be756e16428f0a53e8823b82966c0ba42d797",
- "impliedFormat": 1
- },
- {
- "version": "9edcae4aee78054f54fceee2a89c60b21ffdf6af1608e7ba8058c9d1bb3c24b2",
- "impliedFormat": 1
- },
- {
- "version": "f7f9e1d4ff7cb8032f0ea3b320668eca1e8345aa64d030f9e2024aa7a5d0aa9e",
- "impliedFormat": 1
- },
- {
- "version": "f8d69203e30cc93373a19f2616b28bcc9082f3397917385f491fd68989c9a1cb",
- "impliedFormat": 1
- },
- {
- "version": "6dab3f6d7fecffeb8fd4cb1c250f07a718e20e1aed052aa7f8be93bc9a94f5b3",
- "impliedFormat": 1
- },
- {
- "version": "1b24346eb18aa852b854b462199e509960a39be566083b86f19a8ed99aecd471",
- "impliedFormat": 1
- },
- {
- "version": "4f64329e48640cef9bd22501f28c834d44f31ccb5cce6cf68084e4e7a1bdb306",
- "impliedFormat": 1
- },
- {
- "version": "175a849d4c0f817d5c2ffde35a3f241146082535b005e3b45a501c732df438f3",
- "impliedFormat": 1
- },
- {
- "version": "9a1e8b50c26e5a6c80ca5c39eb7c36fd1bdd2c8d3ee8546622158adea4113589",
- "impliedFormat": 1
- },
- {
- "version": "d2f375c61c09aff29bbdeeced94f37745b91bbcecfc72ccc3fc83b17e82a4891",
- "impliedFormat": 1
- },
- {
- "version": "66d1cc0cd17ff530cb1ed8a58eed122dcdbf0f5230c01c555edd7bd710cc3b96",
- "impliedFormat": 1
- },
- {
- "version": "db257fab7f1d50f7e400715c349d27f938df6e3e3fe7ce5673892e348ab8a048",
- "impliedFormat": 1
- },
- {
- "version": "5fcf8b90ad13c2149955477d94eb4272b0f07dd45eba44a3eaa14e1162aa33e0",
- "impliedFormat": 1
- },
- {
- "version": "ba55d434c2b8017e933b7ca70e586e90a8e191310675303e42926a47e6d7bcaa",
- "impliedFormat": 1
- },
- {
- "version": "4f2a8e61ee3ebb3672147b91a2bde6ceeaebcc098b7a6b1638d3df931a5ddd92",
- "impliedFormat": 1
- },
- {
- "version": "4b0d0494437eae420327967e7b25b4624020cb273c345421f69d403544ddc201",
- "impliedFormat": 1
- },
- {
- "version": "341af54bef9fbb824ee8db2c50c0a3c90bc3a999b841fd297f5512b4e3589ffd",
- "impliedFormat": 1
- },
- {
- "version": "641b10ed864b22461d0beacbb89aaaae3370d5a09f1e3918c3528ce3bb1f5d1f",
- "impliedFormat": 1
- },
- {
- "version": "59d494f1af0031166af1d4e0ad2cd9bcbe66f0210d9bfc0d2ad27af7bb5b4925",
- "impliedFormat": 1
- },
- {
- "version": "8f9688740ebf1cc891f34a522c535323ebdab6fefecbad1965ec585b320abb39",
- "impliedFormat": 1
- },
- {
- "version": "ad88382eef9ee3346b59ae4b395cc298ffded285864ddb80f2eeb57d2f9adc08",
- "impliedFormat": 1
- },
- {
- "version": "bb415e5dfccdc9bee3daeda7ee2553bf976f748994f19725ff9bd994b1518916",
- "impliedFormat": 1
- },
- {
- "version": "93191770fc276b56538a58d95add8fea33f11958f9fa555364bcea96c2f9e802",
- "impliedFormat": 1
- },
- {
- "version": "a769a5e3ae2f9d0e08add20fae8d12a350e855f4b75664341093ded2bcf7a41d",
- "impliedFormat": 1
- },
- {
- "version": "ca599aa99194fa6728b0bf88e83459edb8ba87941d65c10d2595438fe1549322",
- "impliedFormat": 1
- },
- {
- "version": "9f9e64076af9c8af4a2f3d795929c20d6ca9e4cdb3dd59a678b0bbbf55ba059d",
- "impliedFormat": 1
- },
- {
- "version": "ad1a40318b4306afe5c871ab06cf3046a9590f15bc63f872884f9a32094629b5",
- "impliedFormat": 1
- },
- {
- "version": "1c5fc8608d7bce18d9dc79c302ed3396241368756e5fe18484f3a9c1658bc7f4",
- "impliedFormat": 1
- },
- {
- "version": "57add12cb49cdd4e47d6b62f0a4083d54e5cc130788e55c39a02ad42e52ee73b",
- "impliedFormat": 1
- },
- {
- "version": "dd44bf9993c40d5e1d8025f960a4554124b223bd35ff8a83c4f552455f8c7e15",
- "impliedFormat": 1
- },
- {
- "version": "b597f8165cf57efe5b002848c311a2f19e32062445f82ee3b56181f2dba595f7",
- "impliedFormat": 1
- },
- {
- "version": "6f49028cb42c1c7cb64a604315dff771ed4723f2853098b205682356ea3c9b87",
- "impliedFormat": 1
- },
- {
- "version": "2be2227c3810dfd84e46674fd33b8d09a4a28ad9cb633ed536effd411665ea1e",
- "impliedFormat": 99
- },
- {
- "version": "994280162938908065cf871994bfc5dc6f8618a4daa3ae7803fb6959f9a2ec6c",
- "impliedFormat": 1
- },
- {
- "version": "89934915a25c4262eecc3094bd7660699717fa2bd2a2bbc5282fdb45d2ed566b",
- "impliedFormat": 1
- },
- {
- "version": "ffbf336a0357870c36c8ca983a37bd050d75f46d89b6437515f0bb09bf63616b",
- "impliedFormat": 1
- },
- {
- "version": "ccfcdded0ff47da010c5b8515c9547ab7a598b2552962ad6659f26aab245540b",
- "impliedFormat": 1
- },
- {
- "version": "9a4c0f006b63c80014445bc6e3aba8457d1cf89b12cc293b863a9f2ac8c790d9",
- "impliedFormat": 1
- },
- {
- "version": "948da454347607aad817b0675068c962e81116b632213eaacd168c18b85a2580",
- "impliedFormat": 1
- },
- {
- "version": "12fbd4118f865a49c468ce1c9b079a5af3c0eb3e792a0b5f51698faa9c443cf8",
- "impliedFormat": 1
- },
- {
- "version": "ae538a0e37c00b8589ce5fe2849e7d8530c2291f7e4537fdc6741295a8f50c29",
- "impliedFormat": 1
- },
- {
- "version": "6bb1083101a04340cc599614352cfae7c5c5ec5c2d68b21f4c59adafa79d459c",
- "impliedFormat": 1
- },
- {
- "version": "1832bfd7c66f9097352729f3fd72f981db6442c42d0533ba8d708f1782369103",
- "impliedFormat": 1
- },
- {
- "version": "393d7de03d8bcde8218dd2413d14157d8f74b65a4eb59765bd055c35f9a33d86",
- "impliedFormat": 1
- },
- {
- "version": "e71cc50a342e740e9071733b32ea7c44a3ae13efe64db3b7b4a47e8e18ac0a60",
- "impliedFormat": 1
- },
- {
- "version": "ff698b2b7c176d93dfceb8c5c8abf8d38f7025b86a2f189e0d143307e7ce36d1",
- "impliedFormat": 1
- },
- {
- "version": "658694c23287556339f353876292369176473def90018f9bbb72d04a20a46258",
- "impliedFormat": 1
- },
- {
- "version": "5063cea1ee10e2549e8ec9c1eca9f7eec0fb5066554de1304099b2fbfd518129",
- "impliedFormat": 1
- },
- {
- "version": "3770072eb0a627c5a07f5f8b631a52d9ee3193ef52049a5d91ceedf474388b76",
- "impliedFormat": 99
- },
- {
- "version": "c6c2f7ca8e09b0020387e38962dcafba007738506197c0098c58db9f365eeb84",
- "impliedFormat": 99
- },
- {
- "version": "e11cb41ed58b2f70a93e53d7c405f15ec4343a2dc758610d458d638d5ed6a522",
- "impliedFormat": 1
- },
- {
- "version": "2591ce802940d7319238c848105b283eeece5cce3752a4aa7b937c21792bc71d",
- "impliedFormat": 1
- },
- {
- "version": "5bd6de5dfd4b36dc13fb9feb8462b50b3176153fdf99d6d6cb8d807aa59c06e9",
- "impliedFormat": 1
- },
- {
- "version": "28e93480f3a48b0e6a3ec30ced8f5362fdee96194e05683b78e7c341f851f1f4",
- "impliedFormat": 1
- },
- {
- "version": "711ab39a13e902330153b047b74f4629acc7fc858cf9b49f6a1e91bcc1301fa1",
- "impliedFormat": 1
- },
- {
- "version": "e310bb405a25dbe1810d3ea87259d7c01b6dbe05074d89c570f3fe4e6039513e",
- "signature": "5a2e64da5740a64a5b845b91e2ee7227c19314a9d86e2a190a754547c394bc07"
- },
- "4cae941be9bc3bee9a6905e47ea7a51aee216d587d34a8cc4ae48f78fd6d8159",
- {
- "version": "cccebe2695746988667cb613a31df70b6652c5b6e5b23b7114f3401a4b7be1b7",
- "signature": "44750b99eadfc0c2da95b93aca6021eda8f6e855f8947d1079386221a45592c2"
- },
- {
- "version": "155d2e6caadb7de14cd4c337164f7febade2bcefb7645c7094158cd80e4b9c1f",
- "impliedFormat": 99
- },
- {
- "version": "fcc60c64e9ff115a2ddb9fcaeb19d45668b353ccafc55054588c0ffb5bfb7a53",
- "impliedFormat": 99
- },
- {
- "version": "0c2f0f87ad46e9b8f458f4392e355a07d8231d07ab4648c9cb8b108d3c947bb0",
- "impliedFormat": 99
- },
- {
- "version": "c1a2e05eb6d7ca8d7e4a7f4c93ccf0c2857e842a64c98eaee4d85841ee9855e6",
- "impliedFormat": 1
- },
- {
- "version": "835fb2909ce458740fb4a49fc61709896c6864f5ce3db7f0a88f06c720d74d02",
- "impliedFormat": 1
- },
- {
- "version": "6e5857f38aa297a859cab4ec891408659218a5a2610cd317b6dcbef9979459cc",
- "impliedFormat": 1
- },
- {
- "version": "ead8e39c2e11891f286b06ae2aa71f208b1802661fcdb2425cffa4f494a68854",
- "impliedFormat": 1
- },
- {
- "version": "82919acbb38870fcf5786ec1292f0f5afe490f9b3060123e48675831bd947192",
- "impliedFormat": 1
- },
- {
- "version": "e222701788ec77bd57c28facbbd142eadf5c749a74d586bc2f317db7e33544b1",
- "impliedFormat": 1
- },
- {
- "version": "09154713fae0ed7befacdad783e5bd1970c06fc41a5f866f7f933b96312ce764",
- "impliedFormat": 1
- },
- {
- "version": "8d67b13da77316a8a2fabc21d340866ddf8a4b99e76a6c951cc45189142df652",
- "impliedFormat": 1
- },
- {
- "version": "a91c8d28d10fee7fe717ddf3743f287b68770c813c98f796b6e38d5d164bd459",
- "impliedFormat": 1
- },
- {
- "version": "68add36d9632bc096d7245d24d6b0b8ad5f125183016102a3dad4c9c2438ccb0",
- "impliedFormat": 1
- },
- {
- "version": "3a819c2928ee06bbcc84e2797fd3558ae2ebb7e0ed8d87f71732fb2e2acc87b4",
- "impliedFormat": 1
- },
- {
- "version": "f6f827cd43e92685f194002d6b52a9408309cda1cec46fb7ca8489a95cbd2fd4",
- "impliedFormat": 1
- },
- {
- "version": "e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d",
- "impliedFormat": 1
- },
- {
- "version": "e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d",
- "impliedFormat": 1
- },
- {
- "version": "e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d",
- "impliedFormat": 1
- },
- {
- "version": "e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d",
- "impliedFormat": 1
- },
- {
- "version": "e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d",
- "impliedFormat": 1
- },
- {
- "version": "e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d",
- "impliedFormat": 1
- },
- {
- "version": "e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d",
- "impliedFormat": 1
- },
- {
- "version": "e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d",
- "impliedFormat": 1
- },
- {
- "version": "e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d",
- "impliedFormat": 1
- },
- {
- "version": "e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d",
- "impliedFormat": 1
- },
- {
- "version": "e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d",
- "impliedFormat": 1
- },
- {
- "version": "e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d",
- "impliedFormat": 1
- },
- {
- "version": "e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d",
- "impliedFormat": 1
- },
- {
- "version": "e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d",
- "impliedFormat": 1
- },
- {
- "version": "e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d",
- "impliedFormat": 1
- },
- {
- "version": "e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d",
- "impliedFormat": 1
- },
- {
- "version": "e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d",
- "impliedFormat": 1
- },
- {
- "version": "e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d",
- "impliedFormat": 1
- },
- {
- "version": "e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d",
- "impliedFormat": 1
- },
- {
- "version": "e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d",
- "impliedFormat": 1
- },
- {
- "version": "e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d",
- "impliedFormat": 1
- },
- {
- "version": "e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d",
- "impliedFormat": 1
- },
- {
- "version": "e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d",
- "impliedFormat": 1
- },
- {
- "version": "e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d",
- "impliedFormat": 1
- },
- {
- "version": "e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d",
- "impliedFormat": 1
- },
- {
- "version": "e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d",
- "impliedFormat": 1
- },
- {
- "version": "e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d",
- "impliedFormat": 1
- },
- {
- "version": "e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d",
- "impliedFormat": 1
- },
- {
- "version": "e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d",
- "impliedFormat": 1
- },
- {
- "version": "e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d",
- "impliedFormat": 1
- },
- {
- "version": "e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d",
- "impliedFormat": 1
- },
- {
- "version": "e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d",
- "impliedFormat": 1
- },
- {
- "version": "e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d",
- "impliedFormat": 1
- },
- {
- "version": "e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d",
- "impliedFormat": 1
- },
- {
- "version": "e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d",
- "impliedFormat": 1
- },
- {
- "version": "e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d",
- "impliedFormat": 1
- },
- {
- "version": "e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d",
- "impliedFormat": 1
- },
- {
- "version": "e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d",
- "impliedFormat": 1
- },
- {
- "version": "e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d",
- "impliedFormat": 1
- },
- {
- "version": "e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d",
- "impliedFormat": 1
- },
- {
- "version": "e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d",
- "impliedFormat": 1
- },
- {
- "version": "e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d",
- "impliedFormat": 1
- },
- {
- "version": "e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d",
- "impliedFormat": 1
- },
- {
- "version": "e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d",
- "impliedFormat": 1
- },
- {
- "version": "e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d",
- "impliedFormat": 1
- },
- {
- "version": "e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d",
- "impliedFormat": 1
- },
- {
- "version": "e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d",
- "impliedFormat": 1
- },
- {
- "version": "e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d",
- "impliedFormat": 1
- },
- {
- "version": "e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d",
- "impliedFormat": 1
- },
- {
- "version": "a270a1a893d1aee5a3c1c8c276cd2778aa970a2741ee2ccf29cc3210d7da80f5",
- "impliedFormat": 1
- },
- {
- "version": "add0ce7b77ba5b308492fa68f77f24d1ed1d9148534bdf05ac17c30763fc1a79",
- "impliedFormat": 1
- },
- {
- "version": "8926594ee895917e90701d8cbb5fdf77fc238b266ac540f929c7253f8ad6233d",
- "impliedFormat": 1
- },
- {
- "version": "2f67911e4bf4e0717dc2ded248ce2d5e4398d945ee13889a6852c1233ea41508",
- "impliedFormat": 1
- },
- {
- "version": "d8430c275b0f59417ea8e173cfb888a4477b430ec35b595bf734f3ec7a7d729f",
- "impliedFormat": 1
- },
- {
- "version": "69364df1c776372d7df1fb46a6cb3a6bf7f55e700f533a104e3f9d70a32bec18",
- "impliedFormat": 1
- },
- {
- "version": "6042774c61ece4ba77b3bf375f15942eb054675b7957882a00c22c0e4fe5865c",
- "impliedFormat": 1
- },
- {
- "version": "5a3bd57ed7a9d9afef74c75f77fce79ba3c786401af9810cdf45907c4e93f30e",
- "impliedFormat": 1
- },
- {
- "version": "ed8763205f02fb65e84eff7432155258df7f93b7d938f01785cb447d043d53f3",
- "impliedFormat": 1
- },
- {
- "version": "30db853bb2e60170ba11e39ab48bacecb32d06d4def89eedf17e58ebab762a65",
- "impliedFormat": 1
- },
- {
- "version": "e27451b24234dfed45f6cf22112a04955183a99c42a2691fb4936d63cfe42761",
- "impliedFormat": 1
- },
- {
- "version": "2316301dd223d31962d917999acf8e543e0119c5d24ec984c9f22cb23247160c",
- "impliedFormat": 1
- },
- {
- "version": "58d65a2803c3b6629b0e18c8bf1bc883a686fcf0333230dd0151ab6e85b74307",
- "impliedFormat": 1
- },
- {
- "version": "e818471014c77c103330aee11f00a7a00b37b35500b53ea6f337aefacd6174c9",
- "impliedFormat": 1
- },
- {
- "version": "d4a5b1d2ff02c37643e18db302488cd64c342b00e2786e65caac4e12bda9219b",
- "impliedFormat": 1
- },
- {
- "version": "d8bc0c5487582c6d887c32c92d8b4ffb23310146fcb1d82adf4b15c77f57c4ac",
- "impliedFormat": 1
- },
- {
- "version": "8cb31102790372bebfd78dd56d6752913b0f3e2cefbeb08375acd9f5ba737155",
- "impliedFormat": 1
- },
- {
- "version": "8c286b21cad586a26169a5dba15d2705baa54f226d6c2d4345a07ff7267fbaa1",
- "signature": "f93266a224bf76eda2758fe9853a6ad4033c7c96e76bead2f657eb8409b49a78"
- },
- {
- "version": "1d4dad573980f6727b464377cf90a2f06c24f46184ad0d700294169f1914324f",
- "signature": "cf366f6ce3416be02ad556b0d9a0b2e6b1d61e5afb5d6bbda37b817ff79599ec"
- },
- {
- "version": "a622c1cb5b9010d4cec126970a350c023ff889ba6828666a00a7ecc6422d68eb",
- "signature": "8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"
- },
- {
- "version": "61364ade746ea1645fcf6596f4ad192da2b363048bf037c867a56772370e7a2b",
- "signature": "a7b4b83af52bdb2fc2648f92e2127831b85550256d61ac97cfd2b4e67acb5c62"
- },
- {
- "version": "e76e63b9f74bcfbec7b7a2ba4072219e4582b0c2cbd03f7f6bfb0c0c6a600838",
- "signature": "9d6319b2efcbf11212ebbdcdb6618cb0cd84b37460d220c9fa962c6eede02e41"
- },
- {
- "version": "ba8a633546c5af05c60a53ea9a9649234cbdd559aae0301d0fd7645b05b05d9c",
- "impliedFormat": 99
- },
- {
- "version": "10cc3485ee9eecd291db79396caab1b904ec56218a3287c55a0ddbaf0a0452f4",
- "impliedFormat": 99
- },
- {
- "version": "1847392b6785b0154d31f9c5833f51ebdc736d930e97da40dd9fae7db1328533",
- "signature": "1b0cd5cef393c50a35ed378492d4de6f6a311e9cc6a9d4230c8572967da8bfa2"
- },
- {
- "version": "fe93c474ab38ac02e30e3af073412b4f92b740152cf3a751fdaee8cbea982341",
- "impliedFormat": 1
- },
- {
- "version": "3255b97f3f24af29c79cc1aa88004efb13b6285ebdde0a567bf32e19bb65250d",
- "impliedFormat": 1
- },
- {
- "version": "1e00b8bf9e3766c958218cd6144ffe08418286f89ff44ba5a2cc830c03dd22c7",
- "impliedFormat": 1
- },
- {
- "version": "ac5f571dd7f1daefbed00a58081dc72c3a3da67c63644ab63f35e5f98b0d6f72",
- "signature": "71f255c282738f3d1bd895a59df9a7270e2890169778e8e9f45032469555ffcb"
- },
- {
- "version": "db7da89b083e353471f3911adb59288c2d4bda401b25433943e8128d654e0afc",
- "impliedFormat": 1
- },
- {
- "version": "c57b441e0c0a9cbdfa7d850dae1f8a387d6f81cbffbc3cd0465d530084c2417d",
- "impliedFormat": 99
- },
- {
- "version": "2fbe402f0ee5aa8ab55367f88030f79d46211c0a0f342becaa9f648bf8534e9d",
- "impliedFormat": 1
- },
- {
- "version": "b94258ef37e67474ac5522e9c519489a55dcb3d4a8f645e335fc68ea2215fe88",
- "impliedFormat": 1
- },
- {
- "version": "8b15d05f236e8537d3ecbe4422ce46bf0de4e4cd40b2f909c91c5818af4ff17a",
- "impliedFormat": 1
- },
- {
- "version": "024829c0b317972acf4f871bf701525f81896ad74015f1a52d46ae6036205cb9",
- "impliedFormat": 99
- },
- {
- "version": "a9373d52584b48809ffd61d74f5b3dfd127da846e3c4ee3c415560386df3994b",
- "impliedFormat": 99
- },
- {
- "version": "caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9",
- "impliedFormat": 99
- },
- {
- "version": "0943a6e4e026d0de8a4969ee975a7283e0627bf41aa4635d8502f6f24365ac9b",
- "impliedFormat": 99
- },
- {
- "version": "1461efc4aefd3e999244f238f59c9b9753a7e3dfede923ebe2b4a11d6e13a0d0",
- "impliedFormat": 99
- },
- {
- "version": "7ec047b73f621c526468517fea779fec2007dd05baa880989def59126c98ef79",
- "impliedFormat": 99
- },
- {
- "version": "8dd450de6d756cee0761f277c6dc58b0b5a66b8c274b980949318b8cad26d712",
- "impliedFormat": 99
- },
- {
- "version": "904d6ad970b6bd825449480488a73d9b98432357ab38cf8d31ffd651ae376ff5",
- "impliedFormat": 99
- },
- {
- "version": "dfcf16e716338e9fe8cf790ac7756f61c85b83b699861df970661e97bf482692",
- "impliedFormat": 99
- },
- {
- "version": "31c30cc54e8c3da37c8e2e40e5658471f65915df22d348990d1601901e8c9ff3",
- "impliedFormat": 99
- },
- {
- "version": "36d8011f1437aecf0e6e88677d933e4fb3403557f086f4ac00c5a4cb6d028ac2",
- "impliedFormat": 99
- },
- {
- "version": "8085954ba165e611c6230596078063627f3656fed3fb68ad1e36a414c4d7599a",
- "impliedFormat": 99
- },
- {
- "version": "2c57db2bf2dbd9e8ef4853be7257d62a1cb72845f7b976bb4ee827d362675f96",
- "impliedFormat": 99
- },
- {
- "version": "6b5f886fe41e2e767168e491fe6048398ed6439d44e006d9f51cc31265f08978",
- "impliedFormat": 99
- },
- {
- "version": "56a87e37f91f5625eb7d5f8394904f3f1e2a90fb08f347161dc94f1ae586bdd0",
- "impliedFormat": 99
- },
- {
- "version": "6b863463764ae572b9ada405bf77aac37b5e5089a3ab420d0862e4471051393b",
- "impliedFormat": 99
- },
- {
- "version": "68b6a7501a56babd7bcd840e0d638ee7ec582f1e70b3c36ebf32e5e5836913c8",
- "impliedFormat": 99
- },
- {
- "version": "89783bd45ab35df55203b522f8271500189c3526976af533a599a86caaf31362",
- "impliedFormat": 99
- },
- {
- "version": "6da2e0928bdab05861abc4e4abebea0c7cf0b67e25374ba35a94df2269563dd8",
- "impliedFormat": 99
- },
- {
- "version": "e7b00bec016013bcde74268d837a8b57173951add2b23c8fd12ffe57f204d88f",
- "impliedFormat": 99
- },
- {
- "version": "26e6c521a290630ea31f0205a46a87cab35faac96e2b30606f37bae7bcda4f9d",
- "impliedFormat": 99
- },
- {
- "version": "71acd198e19fa38447a3cbc5c33f2f5a719d933fccf314aaff0e8b0593271324",
- "impliedFormat": 99
- },
- {
- "version": "044047026c70439867589d8596ffe417b56158a1f054034f590166dd793b676b",
- "impliedFormat": 99
- },
- {
- "version": "89ad9a4e8044299f356f38879a1c2176bc60c997519b442c92cc5a70b731a360",
- "impliedFormat": 99
- },
- {
- "version": "fd4f58cd6b5fc8ce8af0d04bfef5142f15c4bafaac9a9899c6daa056f10bb517",
- "impliedFormat": 99
- },
- {
- "version": "2a00cea77767cb26393ee6f972fd32941249a0d65b246bfcb20a780a2b919a21",
- "impliedFormat": 99
- },
- {
- "version": "440cb5b34e06fabe3dcb13a3f77b98d771bf696857c8e97ce170b4f345f8a26b",
- "impliedFormat": 99
- },
- {
- "version": "5bc7f0946c94e23765bd1b8f62dc3ab65d7716285ca7cf45609f57777ddb436f",
- "impliedFormat": 99
- },
- {
- "version": "7d5a5e603a68faea3d978630a84cacad7668f11e14164c4dd10224fa1e210f56",
- "impliedFormat": 99
- },
- {
- "version": "2535fc1a5fe64892783ff8f61321b181c24f824e688a4a05ae738da33466605b",
- "impliedFormat": 99
- },
- {
- "version": "cbfd5ef0c8fdb4983202252b5f5758a579f4500edc3b9ad413da60cffb5c3564",
- "impliedFormat": 99
- },
- {
- "version": "9f7a3c434912fd3feb87af4aabdf0d1b614152ecb5e7b2aa1fff3429879cdd51",
- "impliedFormat": 99
- },
- {
- "version": "99d1a601593495371e798da1850b52877bf63d0678f15722d5f048e404f002e4",
- "impliedFormat": 99
- },
- {
- "version": "1179ef8174e0e4a09d35576199df04803b1db17c0fb35b9326442884bc0b0cce",
- "impliedFormat": 99
- },
- {
- "version": "9c580c6eae94f8c9a38373566e59d5c3282dc194aa266b23a50686fe10560159",
- "impliedFormat": 99
- },
- {
- "version": "cc3738ba01d9af5ba1206a313896837ff8779791afcd9869e582783550f17f38",
- "impliedFormat": 99
- },
- {
- "version": "a80ec72f5e178862476deaeed532c305bdfcd3627014ae7ac2901356d794fc93",
- "impliedFormat": 99
- },
- {
- "version": "4a5aa16151dbec524bb043a5cbce2c3fec75957d175475c115a953aca53999a9",
- "impliedFormat": 99
- },
- {
- "version": "7a14bf21ae8a29d64c42173c08f026928daf418bed1b97b37ac4bb2aa197b89b",
- "impliedFormat": 99
- },
- {
- "version": "c5013d60cbff572255ccc87c314c39e198c8cc6c5aa7855db7a21b79e06a510f",
- "impliedFormat": 99
- },
- {
- "version": "69ec8d900cfec3d40e50490fedbbea5c1b49d32c38adbc236e73a3b8978c0b11",
- "impliedFormat": 99
- },
- {
- "version": "7fd629484ba6772b686885b443914655089246f75a13dd685845d0abae337671",
- "impliedFormat": 99
- },
- {
- "version": "13dcccb62e8537329ac0448f088ab16fe5b0bbed71e56906d28d202072759804",
- "impliedFormat": 99
- },
- {
- "version": "233267a4a036c64aee95f66a0d31e3e0ef048cccc57dd66f9cf87582b38691e4",
- "impliedFormat": 99
- },
- {
- "version": "ccb9fbe369885d02cf6c2b2948fb5060451565d37b04356bbe753807f98e0682",
- "impliedFormat": 99
- },
- "44c634567d7364c90736e4c51d4e0d3af8b86f6a173300c478cb44f3cef2f406",
- "d05c276c74c39e8174c67c88ec0d8be0b84fb7586805a67e90360968ccf0c762",
- "87d8d57d40a725aaa5f2057ca981e767c3ad9b41d9792d256e2dc54b4a8cd55b",
- "e9ab4ae23fed53e9ebc280b4e259a146e45edf94cb756ed0c2a450b88e1b6d8b",
- "2085bd915049ac9b8707b5ef59c79415f16ed216d911091e5e7fa8d6232614b4",
- "e4f00cedf79b8936fac6a65f47a522e62f1bc554e8c394a7e4a7787c4e1c2795",
- "836b4bb372b90e69e7d6b7c06e9f208641eb420d3cccb0462a8fe074e5fc11b3",
- "d8c67f22851ba2e68727c6305d7f7feef0cc1357a6183fd869a32ea7e10e3c1b",
- "6827fb8916a7d00d6ef8cf3cd461a1732dcd1652a8c6976c0fafdc8c0fd90f96",
- "c2386f38554cb204f78ca398b2ccee13134766aaa731a06358b240450690fa9b",
- "c3c7774ddf4f4a32ab260abe7001da57e0644d47ed7e6431466625c8c50e7ef9",
- {
- "version": "57ae71d27ee71b7d1f2c6d867ddafbbfbaa629ad75565e63a508dbaa3ef9f859",
- "impliedFormat": 99
- },
- {
- "version": "60924ca0c60f0674f208bfa1eaaa54e6973ced7650df7c7a81ae069730ef665a",
- "impliedFormat": 99
- },
- {
- "version": "e3181c7595a89dd03ba9a20eb5065fa37e0b0a514261bed774f6ae2241634470",
- "impliedFormat": 99
- },
- {
- "version": "c42d5cbf94816659c01f7c2298d0370247f1a981f8ca6370301b7a03b3ced950",
- "impliedFormat": 99
- },
- {
- "version": "18c18ab0341fd5fdfefb5d992c365be1696bfe000c7081c964582b315e33f8f2",
- "impliedFormat": 99
- },
- {
- "version": "dafbd4199902d904e3d4a233b5faf5dc4c98847fcd8c0ddd7617b2aed50e90d8",
- "impliedFormat": 99
- },
- {
- "version": "9fc866f9783d12d0412ed8d68af5e4c9e44f0072d442b0c33c3bda0a5c8cae15",
- "impliedFormat": 99
- },
- {
- "version": "5fc13d24a2d0328eac00c4e73cc052a987fbced2151bc0d3b7eb8f3ba4d0f4e2",
- "impliedFormat": 99
- },
- {
- "version": "2cef84bf00cbdb452fdc5d8ecfe7b8c0aa3fa788bdc4ad8961e2e636530dbb60",
- "impliedFormat": 99
- },
- {
- "version": "24104650185414f379d5cc35c0e2c19f06684a73de5b472bae79e0d855771ecf",
- "impliedFormat": 99
- },
- {
- "version": "799003c0ab928582fca04977f47b8d85b43a8de610f4eef0ad2d069fbb9f9399",
- "impliedFormat": 99
- },
- {
- "version": "b13dd41c344a23e085f81b2f5cd96792e6b35ae814f32b25e39d9841844ad240",
- "impliedFormat": 99
- },
- {
- "version": "17d8b4e6416e48b6e23b73d05fd2fde407e2af8fddbe9da2a98ede14949c3489",
- "impliedFormat": 99
- },
- {
- "version": "6d17b2b41f874ab4369b8e04bdbe660163ea5c8239785c850f767370604959e3",
- "impliedFormat": 99
- },
- {
- "version": "04b4c044c8fe6af77b6c196a16c41e0f7d76b285d036d79dcaa6d92e24b4982b",
- "impliedFormat": 99
- },
- {
- "version": "30bdeead5293c1ddfaea4097d3e9dd5a6b0bc59a1e07ff4714ea1bbe7c5b2318",
- "impliedFormat": 99
- },
- {
- "version": "e7df226dcc1b0ce76b32f160556f3d1550124c894aae2d5f73cefaaf28df7779",
- "impliedFormat": 99
- },
- {
- "version": "f2b7eef5c46c61e6e72fba9afd7cc612a08c0c48ed44c3c5518559d8508146a2",
- "impliedFormat": 99
- },
- {
- "version": "00f0ba57e829398d10168b7db1e16217f87933e61bd8612b53a894bd7d6371da",
- "impliedFormat": 99
- },
- {
- "version": "126b20947d9fa74a88bb4e9281462bda05e529f90e22d08ee9f116a224291e84",
- "impliedFormat": 99
- },
- {
- "version": "40d9e43acee39702745eb5c641993978ac40f227475eacc99a83ba893ad995db",
- "impliedFormat": 99
- },
- {
- "version": "8a66b69b21c8de9cb88b4b6d12f655d5b7636e692a014c5aa1bd81745c8c51d5",
- "impliedFormat": 99
- },
- {
- "version": "ebbb846bdd5a78fdacff59ae04cea7a097912aeb1a2b34f8d88f4ebb84643069",
- "impliedFormat": 99
- },
- {
- "version": "7321adb29ffd637acb33ee67ea035f1a97d0aa0b14173291cc2fd58e93296e04",
- "impliedFormat": 99
- },
- {
- "version": "320816f1a4211188f07a782bdb6c1a44555b3e716ce13018f528ad7387108d5f",
- "impliedFormat": 99
- },
- {
- "version": "b2cc8a474b7657f4a03c67baf6bff75e26635fd4b5850675e8cad524a09ddd0c",
- "impliedFormat": 99
- },
- {
- "version": "0d081e9dc251063cc69611041c17d25847e8bdbe18164baaa89b7f1f1633c0ab",
- "impliedFormat": 99
- },
- {
- "version": "a64c25d8f4ec16339db49867ea2324e77060782993432a875d6e5e8608b0de1e",
- "impliedFormat": 99
- },
- {
- "version": "0739310b6b777f3e2baaf908c0fbc622c71160e6310eb93e0d820d86a52e2e23",
- "impliedFormat": 99
- },
- {
- "version": "37b32e4eadd8cd3c263e7ac1681c58b2ac54f3f77bb34c5e4326cc78516d55a9",
- "impliedFormat": 99
- },
- {
- "version": "9b7a8974e028c4ed6f7f9abb969e3eb224c069fd7f226e26fcc3a5b0e2a1eba8",
- "impliedFormat": 99
- },
- {
- "version": "e8100b569926a5592146ed68a0418109d625a045a94ed878a8c5152b1379237c",
- "impliedFormat": 99
- },
- {
- "version": "594201c616c318b7f3149a912abd8d6bdf338d765b7bcbde86bca2e66b144606",
- "impliedFormat": 99
- },
- {
- "version": "03e380975e047c5c6ded532cf8589e6cc85abb7be3629e1e4b0c9e703f2fd36f",
- "impliedFormat": 99
- },
- {
- "version": "fae14b53b7f52a8eb3274c67c11f261a58530969885599efe3df0277b48909e1",
- "impliedFormat": 99
- },
- {
- "version": "c41206757c428186f2e0d1fd373915c823504c249336bdc9a9c9bbdf9da95fef",
- "impliedFormat": 99
- },
- {
- "version": "e961f853b7b0111c42b763a6aa46fc70d06a697db3d8ed69b38f7ba0ae42a62b",
- "impliedFormat": 99
- },
- {
- "version": "3db90f79e36bcb60b3f8de1bc60321026800979c150e5615047d598c787a64b7",
- "impliedFormat": 99
- },
- {
- "version": "639b6fb3afbb8f6067c1564af2bd284c3e883f0f1556d59bd5eb87cdbbdd8486",
- "impliedFormat": 99
- },
- {
- "version": "49795f5478cb607fd5965aa337135a8e7fd1c58bc40c0b6db726adf186dd403f",
- "impliedFormat": 99
- },
- {
- "version": "7d8890e6e2e4e215959e71d5b5bd49482cf7a23be68d48ea446601a4c99bd511",
- "impliedFormat": 99
- },
- {
- "version": "d56f72c4bb518de5702b8b6ae3d3c3045c99e0fd48b3d3b54c653693a8378017",
- "impliedFormat": 99
- },
- {
- "version": "4c9ac40163e4265b5750510d6d2933fb7b39023eed69f7b7c68b540ad960826e",
- "impliedFormat": 99
- },
- {
- "version": "8dfab17cf48e7be6e023c438a9cdf6d15a9b4d2fa976c26e223ba40c53eb8da8",
- "impliedFormat": 99
- },
- {
- "version": "38bdf7ccacfd8e418de3a7b1e3cecc29b5625f90abc2fa4ac7843a290f3bf555",
- "impliedFormat": 99
- },
- {
- "version": "9819e46a914735211fbc04b8dc6ba65152c62e3a329ca0601a46ba6e05b2c897",
- "impliedFormat": 99
- },
- {
- "version": "50f0dc9a42931fb5d65cdd64ba0f7b378aedd36e0cfca988aa4109aad5e714cb",
- "impliedFormat": 99
- },
- {
- "version": "894f23066f9fafccc6e2dd006ed5bd85f3b913de90f17cf1fe15a2eb677fd603",
- "impliedFormat": 99
- },
- {
- "version": "abdf39173867e6c2d6045f120a316de451bbb6351a6929546b8470ddf2e4b3b9",
- "impliedFormat": 99
- },
- {
- "version": "aa2cb4053f948fbd606228195bbe44d78733861b6f7204558bbee603202ee440",
- "impliedFormat": 99
- },
- {
- "version": "6911b41bfe9942ac59c2da1bbcbe5c3c1f4e510bf65cae89ed00f434cc588860",
- "impliedFormat": 99
- },
- {
- "version": "7b81bc4d4e2c764e85d869a8dd9fe3652b34b45c065482ac94ffaacc642b2507",
- "impliedFormat": 99
- },
- {
- "version": "895df4edb46ccdcbce2ec982f5eed292cf7ea3f7168f1efea738ee346feab273",
- "impliedFormat": 99
- },
- {
- "version": "8692bb1a4799eda7b2e3288a6646519d4cebb9a0bddf800085fc1bd8076997a0",
- "impliedFormat": 99
- },
- {
- "version": "239c9e98547fe99711b01a0293f8a1a776fc10330094aa261f3970aaba957c82",
- "impliedFormat": 99
- },
- {
- "version": "34833ec50360a32efdc12780ae624e9a710dd1fd7013b58c540abf856b54285a",
- "impliedFormat": 99
- },
- {
- "version": "647538e4007dcc351a8882067310a0835b5bb8559d1cfa5f378e929bceb2e64d",
- "impliedFormat": 99
- },
- {
- "version": "992d6b1abcc9b6092e5a574d51d441238566b6461ade5de53cb9718e4f27da46",
- "impliedFormat": 99
- },
- {
- "version": "938702305649bf1050bd79f3803cf5cc2904596fc1edd4e3b91033184eae5c54",
- "impliedFormat": 99
- },
- {
- "version": "1e931d3c367d4b96fe043e792196d9c2cf74f672ff9c0b894be54e000280a79d",
- "impliedFormat": 99
- },
- {
- "version": "05bec322ea9f6eb9efcd6458bb47087e55bd688afdd232b78379eb5d526816ed",
- "impliedFormat": 99
- },
- {
- "version": "4c449a874c2d2e5e5bc508e6aa98f3140218e78c585597a21a508a647acd780a",
- "impliedFormat": 99
- },
- {
- "version": "dae15e326140a633d7693e92b1af63274f7295ea94fb7c322d5cbe3f5e48be88",
- "impliedFormat": 99
- },
- {
- "version": "c2b0a869713bca307e58d81d1d1f4b99ebfc7ec8b8f17e80dde40739aa8a2bc6",
- "impliedFormat": 99
- },
- {
- "version": "6e4b4ff6c7c54fa9c6022e88f2f3e675eac3c6923143eb8b9139150f09074049",
- "impliedFormat": 99
- },
- {
- "version": "69559172a9a97bbe34a32bff8c24ef1d8c8063feb5f16a6d3407833b7ee504cf",
- "impliedFormat": 99
- },
- {
- "version": "86b94a2a3edcb78d9bfcdb3b382547d47cb017e71abe770c9ee8721e9c84857f",
- "impliedFormat": 99
- },
- {
- "version": "e3fafafda82853c45c0afc075fea1eaf0df373a06daf6e6c7f382f9f61b2deb3",
- "impliedFormat": 99
- },
- {
- "version": "a4ba4b31de9e9140bc49c0addddbfaf96b943a7956a46d45f894822e12bf5560",
- "impliedFormat": 99
- },
- {
- "version": "d8a7926fc75f2ed887f17bae732ee31a4064b8a95a406c87e430c58578ee1f67",
- "impliedFormat": 99
- },
- {
- "version": "9886ffbb134b0a0059fd82219eba2a75f8af341d98bc6331b6ef8a921e10ec68",
- "impliedFormat": 99
- },
- {
- "version": "c2ead057b70d0ae7b87a771461a6222ebdb187ba6f300c974768b0ae5966d10e",
- "impliedFormat": 99
- },
- {
- "version": "46687d985aed8485ab2c71085f82fafb11e69e82e8552cf5d3849c00e64a00a5",
- "impliedFormat": 99
- },
- {
- "version": "999ca66d4b5e2790b656e0a7ce42267737577fc7a52b891e97644ec418eff7ec",
- "impliedFormat": 99
- },
- {
- "version": "ec948ee7e92d0888f92d4a490fdd0afb27fbf6d7aabebe2347a3e8ac82c36db9",
- "impliedFormat": 99
- },
- {
- "version": "03ef2386c683707ce741a1c30cb126e8c51a908aa0acc01c3471fafb9baaacd5",
- "impliedFormat": 99
- },
- {
- "version": "66a372e03c41d2d5e920df5282dadcec2acae4c629cb51cab850825d2a144cea",
- "impliedFormat": 99
- },
- {
- "version": "ddf9b157bd4c06c2e4646c9f034f36267a0fbd028bd4738214709de7ea7c548b",
- "impliedFormat": 99
- },
- {
- "version": "3e795aac9be23d4ad9781c00b153e7603be580602e40e5228e2dafe8a8e3aba1",
- "impliedFormat": 99
- },
- {
- "version": "98c461ec5953dfb1b5d5bca5fee0833c8a932383b9e651ca6548e55f1e2c71c3",
- "impliedFormat": 99
- },
- {
- "version": "5c42107b46cb1d36b6f1dee268df125e930b81f9b47b5fa0b7a5f2a42d556c10",
- "impliedFormat": 99
- },
- {
- "version": "7e32f1251d1e986e9dd98b6ff25f62c06445301b94aeebdf1f4296dbd2b8652f",
- "impliedFormat": 99
- },
- {
- "version": "2f7e328dda700dcb2b72db0f58c652ae926913de27391bd11505fc5e9aae6c33",
- "impliedFormat": 99
- },
- {
- "version": "3de7190e4d37da0c316db53a8a60096dbcd06d1a50677ccf11d182fa26882080",
- "impliedFormat": 99
- },
- {
- "version": "a9d6f87e59b32b02c861aade3f4477d7277c30d43939462b93f48644fa548c58",
- "impliedFormat": 99
- },
- {
- "version": "2bce8fd2d16a9432110bbe0ba1e663fd02f7d8b8968cd10178ea7bc306c4a5df",
- "impliedFormat": 99
- },
- {
- "version": "798bedbf45a8f1e55594e6879cd46023e8767757ecce1d3feaa78d16ad728703",
- "impliedFormat": 99
- },
- {
- "version": "62723d5ac66f7ed6885a3931dd5cfa017797e73000d590492988a944832e8bc2",
- "impliedFormat": 99
- },
- {
- "version": "03db8e7df7514bf17fc729c87fff56ca99567b9aa50821f544587a666537c233",
- "impliedFormat": 99
- },
- {
- "version": "9b1f311ba4409968b68bf20b5d892dbd3c5b1d65c673d5841c7dbde351bc0d0b",
- "impliedFormat": 99
- },
- {
- "version": "2d1e8b5431502739fe335ceec0aaded030b0f918e758a5d76f61effa0965b189",
- "impliedFormat": 99
- },
- {
- "version": "e725839b8f884dab141b42e9d7ff5659212f6e1d7b4054caa23bc719a4629071",
- "impliedFormat": 99
- },
- {
- "version": "4fa38a0b8ae02507f966675d0a7d230ed67c92ab8b5736d99a16c5fbe2b42036",
- "impliedFormat": 99
- },
- {
- "version": "50ec1e8c23bad160ddedf8debeebc722becbddda127b8fdce06c23eacd3fe689",
- "impliedFormat": 99
- },
- {
- "version": "9a0aea3a113064fd607f41375ade308c035911d3c8af5ae9db89593b5ca9f1f9",
- "impliedFormat": 99
- },
- {
- "version": "8d643903b58a0bf739ce4e6a8b0e5fb3fbdfaacbae50581b90803934b27d5b89",
- "impliedFormat": 99
- },
- {
- "version": "19de2915ccebc0a1482c2337b34cb178d446def2493bf775c4018a4ea355adb8",
- "impliedFormat": 99
- },
- {
- "version": "9be8fc03c8b5392cd17d40fd61063d73f08d0ee3457ecf075dcb3768ae1427bd",
- "impliedFormat": 99
- },
- {
- "version": "a2d89a8dc5a993514ca79585039eea083a56822b1d9b9d9d85b14232e4782cbe",
- "impliedFormat": 99
- },
- {
- "version": "f526f20cae73f17e8f38905de4c3765287575c9c4d9ecacee41cfda8c887da5b",
- "impliedFormat": 99
- },
- {
- "version": "d9ec0978b7023612b9b83a71fee8972e290d02f8ff894e95cdd732cd0213b070",
- "impliedFormat": 99
- },
- {
- "version": "7ab10c473a058ec8ac4790b05cae6f3a86c56be9b0c0a897771d428a2a48a9f9",
- "impliedFormat": 99
- },
- {
- "version": "451d7a93f8249d2e1453b495b13805e58f47784ef2131061821b0e456a9fd0e1",
- "impliedFormat": 99
- },
- {
- "version": "21c56fe515d227ed4943f275a8b242d884046001722a4ba81f342a08dbe74ae2",
- "impliedFormat": 99
- },
- {
- "version": "d8311f0c39381aa1825081c921efde36e618c5cf46258c351633342a11601208",
- "impliedFormat": 99
- },
- {
- "version": "6b50c3bcc92dc417047740810596fcb2df2502aa3f280c9e7827e87896da168a",
- "impliedFormat": 99
- },
- {
- "version": "18a6b318d1e7b31e5749a52be0cf9bbce1b275f63190ef32e2c79db0579328ca",
- "impliedFormat": 99
- },
- {
- "version": "6a2d0af2c27b993aa85414f3759898502aa198301bc58b0d410948fe908b07b0",
- "impliedFormat": 99
- },
- {
- "version": "2da11b6f5c374300e5e66a6b01c3c78ec21b5d3fec0748a28cc28e00be73e006",
- "impliedFormat": 99
- },
- {
- "version": "0729691b39c24d222f0b854776b00530877217bfc30aac1dc7fa2f4b1795c536",
- "impliedFormat": 99
- },
- {
- "version": "ca45bb5c98c474d669f0e47615e4a5ae65d90a2e78531fda7862ee43e687a059",
- "impliedFormat": 99
- },
- {
- "version": "c1c058b91d5b9a24c95a51aea814b0ad4185f411c38ac1d5eef0bf3cebec17dc",
- "impliedFormat": 99
- },
- {
- "version": "3ab0ed4060b8e5b5e594138aab3e7f0262d68ad671d6678bcda51568d4fc4ccc",
- "impliedFormat": 99
- },
- {
- "version": "e2bf1faba4ff10a6020c41df276411f641d3fdce5c6bae1db0ec84a0bf042106",
- "impliedFormat": 99
- },
- {
- "version": "80b0a8fe14d47a71e23d7c3d4dcee9584d4282ef1d843b70cab1a42a4ea1588c",
- "impliedFormat": 99
- },
- {
- "version": "a0f02a73f6e3de48168d14abe33bf5970fdacdb52d7c574e908e75ad571e78f7",
- "impliedFormat": 99
- },
- {
- "version": "c728002a759d8ec6bccb10eed56184e86aeff0a762c1555b62b5d0fa9d1f7d64",
- "impliedFormat": 99
- },
- {
- "version": "586f94e07a295f3d02f847f9e0e47dbf14c16e04ccc172b011b3f4774a28aaea",
- "impliedFormat": 99
- },
- {
- "version": "cfe1a0f4ed2df36a2c65ea6bc235dbb8cf6e6c25feb6629989f1fa51210b32e7",
- "impliedFormat": 99
- },
- {
- "version": "8ba69c9bf6de79c177329451ffde48ddab7ec495410b86972ded226552f664df",
- "impliedFormat": 99
- },
- {
- "version": "15111cbe020f8802ad1d150524f974a5251f53d2fe10eb55675f9df1e82dbb62",
- "impliedFormat": 99
- },
- {
- "version": "782dc153c56a99c9ed07b2f6f497d8ad2747764966876dbfef32f3e27ce11421",
- "impliedFormat": 99
- },
- {
- "version": "cc2db30c3d8bb7feb53a9c9ff9b0b859dd5e04c83d678680930b5594b2bf99cb",
- "impliedFormat": 99
- },
- {
- "version": "46909b8c85a6fd52e0807d18045da0991e3bdc7373435794a6ba425bc23cc6be",
- "impliedFormat": 99
- },
- {
- "version": "e4e511ff63bb6bd69a2a51e472c6044298bca2c27835a34a20827bc3ef9b7d13",
- "impliedFormat": 99
- },
- {
- "version": "2c86f279d7db3c024de0f21cd9c8c2c972972f842357016bfbbd86955723b223",
- "impliedFormat": 99
- },
- {
- "version": "112c895cff9554cf754f928477c7d58a21191c8089bffbf6905c87fe2dc6054f",
- "impliedFormat": 99
- },
- {
- "version": "8cfc293b33082003cacbf7856b8b5e2d6dd3bde46abbd575b0c935dc83af4844",
- "impliedFormat": 99
- },
- {
- "version": "d2c5c53f85ce0474b3a876d76c4fc44ff7bb766b14ed1bf495f9abac181d7f5f",
- "impliedFormat": 99
- },
- {
- "version": "3c523f27926905fcbe20b8301a0cc2da317f3f9aea2273f8fc8d9ae88b524819",
- "impliedFormat": 99
- },
- {
- "version": "9ca0d706f6b039cc52552323aeccb4db72e600b67ddc7a54cebc095fc6f35539",
- "impliedFormat": 99
- },
- {
- "version": "a64909a9f75081342ddd061f8c6b49decf0d28051bc78e698d347bdcb9746577",
- "impliedFormat": 99
- },
- {
- "version": "7d8d55ae58766d0d52033eae73084c4db6a93c4630a3e17f419dd8a0b2a4dcd8",
- "impliedFormat": 99
- },
- {
- "version": "b8b5c8ba972d9ffff313b3c8a3321e7c14523fc58173862187e8d1cb814168ac",
- "impliedFormat": 99
- },
- {
- "version": "9c42c0fa76ee36cf9cc7cc34b1389fbb4bd49033ec124b93674ec635fabf7ffe",
- "impliedFormat": 99
- },
- {
- "version": "6184c8da9d8107e3e67c0b99dedb5d2dfe5ccf6dfea55c2a71d4037caf8ca196",
- "impliedFormat": 99
- },
- {
- "version": "4030ceea7bf41449c1b86478b786e3b7eadd13dfe5a4f8f5fe2eb359260e08b3",
- "impliedFormat": 99
- },
- {
- "version": "7bf516ec5dfc60e97a5bde32a6b73d772bd9de24a2e0ec91d83138d39ac83d04",
- "impliedFormat": 99
- },
- {
- "version": "e6a6fb3e6525f84edf42ba92e261240d4efead3093aca3d6eb1799d5942ba393",
- "impliedFormat": 99
- },
- {
- "version": "45df74648934f97d26800262e9b2af2f77ef7191d4a5c2eb1df0062f55e77891",
- "impliedFormat": 99
- },
- {
- "version": "3fe361e4e567f32a53af1f2c67ad62d958e3d264e974b0a8763d174102fe3b29",
- "impliedFormat": 99
- },
- {
- "version": "28b520acee4bc6911bfe458d1ad3ebc455fa23678463f59946ad97a327c9ab2b",
- "impliedFormat": 99
- },
- {
- "version": "121b39b1a9ad5d23ed1076b0db2fe326025150ef476dccb8bf87778fcc4f6dd7",
- "impliedFormat": 99
- },
- {
- "version": "f791f92a060b52aa043dde44eb60307938f18d4c7ac13df1b52c82a1e658953f",
- "impliedFormat": 99
- },
- {
- "version": "df09443e7743fd6adc7eb108e760084bacdf5914403b7aac5fbd4dc4e24e0c2c",
- "impliedFormat": 99
- },
- {
- "version": "eeb4ff4aa06956083eaa2aad59070361c20254b865d986bc997ee345dbd44cbb",
- "impliedFormat": 99
- },
- {
- "version": "ed84d5043444d51e1e5908f664addc4472c227b9da8401f13daa565f23624b6e",
- "impliedFormat": 99
- },
- {
- "version": "146bf888b703d8baa825f3f2fb1b7b31bda5dff803e15973d9636cdda33f4af3",
- "impliedFormat": 99
- },
- {
- "version": "b4ec8b7a8d23bdf7e1c31e43e5beac3209deb7571d2ccf2a9572865bf242da7c",
- "impliedFormat": 99
- },
- {
- "version": "3fba0d61d172091638e56fba651aa1f8a8500aac02147d29bd5a9cc0bc8f9ec2",
- "impliedFormat": 99
- },
- {
- "version": "a5a57deb0351b03041e0a1448d3a0cc5558c48e0ed9b79b69c99163cdca64ad8",
- "impliedFormat": 99
- },
- {
- "version": "9bcecf0cbc2bfc17e33199864c19549905309a0f9ecc37871146107aac6e05ae",
- "impliedFormat": 99
- },
- {
- "version": "d6a211db4b4a821e93c978add57e484f2a003142a6aef9dbfa1fe990c66f337b",
- "impliedFormat": 99
- },
- {
- "version": "bd4d10bd44ce3f630dd9ce44f102422cb2814ead5711955aa537a52c8d2cae14",
- "impliedFormat": 99
- },
- {
- "version": "08e4c39ab1e52eea1e528ee597170480405716bae92ebe7a7c529f490afff1e0",
- "impliedFormat": 99
- },
- {
- "version": "625bb2bc3867557ea7912bd4581288a9fca4f3423b8dffa1d9ed57fafc8610e3",
- "impliedFormat": 99
- },
- {
- "version": "d1992164ecc334257e0bef56b1fd7e3e1cea649c70c64ffc39999bb480c0ecdf",
- "impliedFormat": 99
- },
- {
- "version": "a53ff2c4037481eb357e33b85e0d78e8236e285b6428b93aa286ceea1db2f5dc",
- "impliedFormat": 99
- },
- {
- "version": "4fe608d524954b6857d78857efce623852fcb0c155f010710656f9db86e973a5",
- "impliedFormat": 99
- },
- {
- "version": "b53b62a9838d3f57b70cc456093662302abb9962e5555f5def046172a4fe0d4e",
- "impliedFormat": 99
- },
- {
- "version": "9866369eb72b6e77be2a92589c9df9be1232a1a66e96736170819e8a1297b61f",
- "impliedFormat": 99
- },
- {
- "version": "43abfbdf4e297868d780b8f4cfdd8b781b90ecd9f588b05e845192146a86df34",
- "impliedFormat": 99
- },
- {
- "version": "582419791241fb851403ae4a08d0712a63d4c94787524a7419c2bc8e0eb1b031",
- "impliedFormat": 99
- },
- {
- "version": "18437eeb932fe48590b15f404090db0ab3b32d58f831d5ffc157f63b04885ee5",
- "impliedFormat": 99
- },
- {
- "version": "0c5eaedf622d7a8150f5c2ec1f79ac3d51eea1966b0b3e61bfdea35e8ca213a7",
- "impliedFormat": 99
- },
- {
- "version": "fac39fc7a9367c0246de3543a6ee866a0cf2e4c3a8f64641461c9f2dac0d8aae",
- "impliedFormat": 99
- },
- {
- "version": "3b9f559d0200134f3c196168630997caedeadc6733523c8b6076a09615d5dec8",
- "impliedFormat": 99
- },
- {
- "version": "932af64286d9723da5ef7b77a0c4229829ce8e085e6bcc5f874cb0b83e8310d4",
- "impliedFormat": 99
- },
- {
- "version": "adeb9278f11f5561157feee565171c72fd48f5fe34ed06f71abf24e561fcaa1e",
- "impliedFormat": 99
- },
- {
- "version": "2269fef79b4900fc6b08c840260622ca33524771ff24fda5b9101ad98ea551f3",
- "impliedFormat": 99
- },
- {
- "version": "73d47498a1b73d5392d40fb42a3e7b009ae900c8423f4088c4faa663cc508886",
- "impliedFormat": 99
- },
- {
- "version": "7efc34cdc4da0968c3ba687bc780d5cacde561915577d8d1c1e46c7ac931d023",
- "impliedFormat": 99
- },
- {
- "version": "3c20a3bb0c50c819419f44aa55acc58476dad4754a16884cef06012d02b0722f",
- "impliedFormat": 99
- },
- {
- "version": "4569abf6bc7d51a455503670f3f1c0e9b4f8632a3b030e0794c61bfbba2d13be",
- "impliedFormat": 99
- },
- {
- "version": "98b2297b4dc1404078a54b61758d8643e4c1d7830af724f3ed2445d77a7a2d57",
- "impliedFormat": 99
- },
- {
- "version": "952ba89d75f1b589e07070fea2d8174332e3028752e76fd46e1c16cc51e6e2af",
- "impliedFormat": 99
- },
- {
- "version": "b6c9a2deefb6a57ff68d2a38d33c34407b9939487fc9ee9f32ba3ecf2987a88a",
- "impliedFormat": 99
- },
- {
- "version": "f6b371377bab3018dac2bca63e27502ecbd5d06f708ad7e312658d3b5315d948",
- "impliedFormat": 99
- },
- {
- "version": "31947dd8f1c8eeb7841e1f139a493a73bd520f90e59a6415375d0d8e6a031f01",
- "impliedFormat": 99
- },
- {
- "version": "95cd83b807e10b1af408e62caf5fea98562221e8ddca9d7ccc053d482283ddda",
- "impliedFormat": 99
- },
- {
- "version": "19287d6b76288c2814f1633bdd68d2b76748757ffd355e73e41151644e4773d6",
- "impliedFormat": 99
- },
- {
- "version": "fc4e6ec7dade5f9d422b153c5d8f6ad074bd9cc4e280415b7dc58fb5c52b5df1",
- "impliedFormat": 99
- },
- {
- "version": "3aea973106e1184db82d8880f0ca134388b6cbc420f7309d1c8947b842886349",
- "impliedFormat": 99
- },
- {
- "version": "765e278c464923da94dda7c2b281ece92f58981642421ae097862effe2bd30fa",
- "impliedFormat": 99
- },
- {
- "version": "de260bed7f7d25593f59e859bd7c7f8c6e6bb87e8686a0fcafa3774cb5ca02d8",
- "impliedFormat": 99
- },
- {
- "version": "b5c341ce978f5777fbe05bc86f65e9906a492fa6b327bda3c6aae900c22e76c6",
- "impliedFormat": 99
- },
- {
- "version": "686ddbfaf88f06b02c6324005042f85317187866ca0f8f4c9584dd9479653344",
- "impliedFormat": 99
- },
- {
- "version": "7f789c0c1db29dd3aab6e159d1ba82894a046bf8df595ac48385931ae6ad83e0",
- "impliedFormat": 99
- },
- {
- "version": "8eb3057d4fe9b59b2492921b73a795a2455ebe94ccb3d01027a7866612ead137",
- "impliedFormat": 99
- },
- {
- "version": "1e43c5d7aee1c5ec20611e28b5417f5840c75d048de9d7f1800d6808499236f8",
- "impliedFormat": 99
- },
- {
- "version": "d42610a5a2bee4b71769968a24878885c9910cd049569daa2d2ee94208b3a7a5",
- "impliedFormat": 99
- },
- {
- "version": "f6ed95506a6ed2d40ed5425747529befaa4c35fcbbc1e0d793813f6d725690fa",
- "impliedFormat": 99
- },
- {
- "version": "a6fcc1cd6583939506c906dff1276e7ebdc38fbe12d3e108ba38ad231bd18d97",
- "impliedFormat": 99
- },
- {
- "version": "ed13354f0d96fb6d5878655b1fead51722b54875e91d5e53ef16de5b71a0e278",
- "impliedFormat": 99
- },
- {
- "version": "1193b4872c1fb65769d8b164ca48124c7ebacc33eae03abf52087c2b29e8c46c",
- "impliedFormat": 99
- },
- {
- "version": "af682dfabe85688289b420d939020a10eb61f0120e393d53c127f1968b3e9f66",
- "impliedFormat": 99
- },
- {
- "version": "0dca04006bf13f72240c6a6a502df9c0b49c41c3cab2be75e81e9b592dcd4ea8",
- "impliedFormat": 99
- },
- {
- "version": "79d6ac4a2a229047259116688f9cd62fda25422dee3ad304f77d7e9af53a41ef",
- "impliedFormat": 99
- },
- {
- "version": "64534c17173990dc4c3d9388d16675a059aac407031cfce8f7fdffa4ee2de988",
- "impliedFormat": 99
- },
- {
- "version": "ba46d160a192639f3ca9e5b640b870b1263f24ac77b6895ab42960937b42dcbb",
- "impliedFormat": 99
- },
- {
- "version": "5e5ddd6fc5b590190dde881974ab969455e7fad61012e32423415ae3d085b037",
- "impliedFormat": 99
- },
- {
- "version": "1c16fd00c42b60b96fe0fa62113a953af58ddf0d93b0a49cb4919cf5644616f0",
- "impliedFormat": 99
- },
- {
- "version": "eb240c0e6b412c57f7d9a9f1c6cd933642a929837c807b179a818f6e8d3a4e44",
- "impliedFormat": 99
- },
- {
- "version": "4a7bde5a1155107fc7d9483b8830099f1a6072b6afda5b78d91eb5d6549b3956",
- "impliedFormat": 99
- },
- {
- "version": "3c1baaffa9a24cc7ef9eea6b64742394498e0616b127ca630aca0e11e3298006",
- "impliedFormat": 99
- },
- {
- "version": "87ca1c31a326c898fa3feb99ec10750d775e1c84dbb7c4b37252bcf3742c7b21",
- "impliedFormat": 99
- },
- {
- "version": "d7bd26af1f5457f037225602035c2d7e876b80d02663ab4ca644099ad3a55888",
- "impliedFormat": 99
- },
- {
- "version": "2ad0a6b93e84a56b64f92f36a07de7ebcb910822f9a72ad22df5f5d642aff6f3",
- "impliedFormat": 99
- },
- {
- "version": "523d1775135260f53f672264937ee0f3dc42a92a39de8bee6c48c7ea60b50b5a",
- "impliedFormat": 99
- },
- {
- "version": "e441b9eebbc1284e5d995d99b53ed520b76a87cab512286651c4612d86cd408e",
- "impliedFormat": 99
- },
- {
- "version": "76f853ee21425c339a79d28e0859d74f2e53dee2e4919edafff6883dd7b7a80f",
- "impliedFormat": 99
- },
- {
- "version": "00cf042cd6ba1915648c8d6d2aa00e63bbbc300ea54d28ed087185f0f662e080",
- "impliedFormat": 99
- },
- {
- "version": "f57e6707d035ab89a03797d34faef37deefd3dd90aa17d90de2f33dce46a2c56",
- "impliedFormat": 99
- },
- {
- "version": "cc8b559b2cf9380ca72922c64576a43f000275c72042b2af2415ce0fb88d7077",
- "impliedFormat": 99
- },
- {
- "version": "1a337ca294c428ba8f2eb01e887b28d080ee4a4307ae87e02e468b1d26af4a74",
- "impliedFormat": 99
- },
- {
- "version": "5a15362fc2e72765a908c0d4dd89e3ab3b763e8bc8c23f19234a709ecfd202fe",
- "impliedFormat": 99
- },
- {
- "version": "2dffdfe62ac8af0943853234519616db6fd8958fc7ff631149fd8364e663f361",
- "impliedFormat": 99
- },
- {
- "version": "5dbdb2b2229b5547d8177c34705272da5a10b8d0033c49efbc9f6efba5e617f2",
- "impliedFormat": 99
- },
- {
- "version": "6fc0498cd8823d139004baff830343c9a0d210c687b2402c1384fb40f0aa461c",
- "impliedFormat": 99
- },
- {
- "version": "8492306a4864a1dc6fc7e0cc0de0ae9279cbd37f3aae3e9dc1065afcdc83dddc",
- "impliedFormat": 99
- },
- {
- "version": "c011b378127497d6337a93f020a05f726db2c30d55dc56d20e6a5090f05919a6",
- "impliedFormat": 99
- },
- {
- "version": "f4556979e95a274687ae206bbab2bb9a71c3ad923b92df241d9ab88c184b3f40",
- "impliedFormat": 99
- },
- {
- "version": "50e82bb6e238db008b5beba16d733b77e8b2a933c9152d1019cf8096845171a4",
- "impliedFormat": 99
- },
- {
- "version": "d6011f8b8bbf5163ef1e73588e64a53e8bf1f13533c375ec53e631aad95f1375",
- "impliedFormat": 99
- },
- {
- "version": "693cd7936ac7acfa026d4bcb5801fce71cec49835ba45c67af1ef90dbfd30af7",
- "impliedFormat": 99
- },
- {
- "version": "195e2cf684ecddfc1f6420564535d7c469f9611ce7a380d6e191811f84556cd2",
- "impliedFormat": 99
- },
- {
- "version": "1dc6b6e7b2a7f2962f31c77f4713f3a5a132bbe14c00db75d557568fe82e4311",
- "impliedFormat": 99
- },
- {
- "version": "add93b1180e9aaac2dae4ef3b16f7655893e2ecbe62bd9e48366c305f0063d89",
- "impliedFormat": 99
- },
- {
- "version": "594bd896fe37c970aafb7a376ebeec4c0d636b62a5f611e2e27d30fb839ad8a5",
- "impliedFormat": 99
- },
- {
- "version": "b1c6a6faf60542ba4b4271db045d7faea56e143b326ef507d2797815250f3afc",
- "impliedFormat": 99
- },
- {
- "version": "8c8b165beb794260f462679329b131419e9f5f35212de11c4d53e6d4d9cbedf6",
- "impliedFormat": 99
- },
- {
- "version": "ee5a4cf57d49fcf977249ab73c690a59995997c4672bb73fcaaf2eed65dbd1b2",
- "impliedFormat": 99
- },
- {
- "version": "f9f36051f138ab1c40b76b230c2a12b3ce6e1271179f4508da06a959f8bee4c1",
- "impliedFormat": 99
- },
- {
- "version": "9dc2011a3573d271a45c12656326530c0930f92539accbec3531d65131a14a14",
- "impliedFormat": 99
- },
- {
- "version": "091521ce3ede6747f784ae6f68ad2ea86bbda76b59d2bf678bcad2f9d141f629",
- "impliedFormat": 99
- },
- {
- "version": "202c2be951f53bafe943fb2c8d1245e35ed0e4dfed89f48c9a948e4d186dd6d4",
- "impliedFormat": 99
- },
- {
- "version": "c618aead1d799dbf4f5b28df5a6b9ce13d72722000a0ec3fe90a8115b1ea9226",
- "impliedFormat": 99
- },
- {
- "version": "9b0bf59708549c3e77fddd36530b95b55419414f88bbe5893f7bc8b534617973",
- "impliedFormat": 99
- },
- {
- "version": "7e216f67c4886f1bde564fb4eebdd6b185f262fe85ad1d6128cad9b229b10354",
- "impliedFormat": 99
- },
- {
- "version": "cd51e60b96b4d43698df74a665aa7a16604488193de86aa60ec0c44d9f114951",
- "impliedFormat": 99
- },
- {
- "version": "b63341fb6c7ba6f2aeabd9fc46b43e6cc2d2b9eec06534cfd583d9709f310ec2",
- "impliedFormat": 99
- },
- {
- "version": "be2af50c81b15bcfe54ad60f53eb1c72dae681c72d0a9dce1967825e1b5830a3",
- "impliedFormat": 99
- },
- {
- "version": "be5366845dfb9726f05005331b9b9645f237f1ddc594c0def851208e8b7d297b",
- "impliedFormat": 99
- },
- {
- "version": "5ddd536aaeadd4bf0f020492b3788ed209a7050ce27abec4e01c7563ff65da81",
- "impliedFormat": 99
- },
- {
- "version": "e243b24da119c1ef0d79af2a45217e50682b139cb48e7607efd66cc01bd9dcda",
- "impliedFormat": 99
- },
- {
- "version": "5b1398c8257fd180d0bf62e999fe0a89751c641e87089a83b24392efda720476",
- "impliedFormat": 99
- },
- {
- "version": "1588b1359f8507a16dbef67cd2759965fc2e8d305e5b3eb71be5aa9506277dff",
- "impliedFormat": 99
- },
- {
- "version": "4c99f2524eee1ec81356e2b4f67047a4b7efaf145f1c4eb530cd358c36784423",
- "impliedFormat": 99
- },
- {
- "version": "b30c6b9f6f30c35d6ef84daed1c3781e367f4360171b90598c02468b0db2fc3d",
- "impliedFormat": 99
- },
- {
- "version": "79c0d32274ccfd45fae74ac61d17a2be27aea74c70806d22c43fc625b7e9f12a",
- "impliedFormat": 99
- },
- {
- "version": "1b7e3958f668063c9d24ac75279f3e610755b0f49b1c02bb3b1c232deb958f54",
- "impliedFormat": 99
- },
- {
- "version": "779d4022c3d0a4df070f94858a33d9ebf54af3664754536c4ce9fd37c6f4a8db",
- "impliedFormat": 99
- },
- {
- "version": "e662f063d46aa8c088edffdf1d96cb13d9a2cbf06bc38dc6fc62b4d125fb7b49",
- "impliedFormat": 99
- },
- {
- "version": "d1d612df1e41c90d9678b07740d13d4f8e6acec2f17390d4ff4be5c889a6d37d",
- "impliedFormat": 99
- },
- {
- "version": "c95933fe140918892d569186f17b70ef6b1162f851a0f13f6a89e8f4d599c5a1",
- "impliedFormat": 99
- },
- {
- "version": "1d8d30677f87c13c2786980a80750ac1e281bdb65aa013ea193766fe9f0edd74",
- "impliedFormat": 99
- },
- {
- "version": "4661673cbc984b8a6ee5e14875a71ed529b64e7f8e347e12c0db4cecc25ad67d",
- "impliedFormat": 99
- },
- {
- "version": "7f980a414274f0f23658baa9a16e21d828535f9eac538e2eab2bb965325841db",
- "impliedFormat": 99
- },
- {
- "version": "20fb747a339d3c1d4a032a31881d0c65695f8167575e01f222df98791a65da9b",
- "impliedFormat": 99
- },
- {
- "version": "dd4e7ebd3f205a11becf1157422f98db675a626243d2fbd123b8b93efe5fb505",
- "impliedFormat": 99
- },
- {
- "version": "43ec6b74c8d31e88bb6947bb256ad78e5c6c435cbbbad991c3ff39315b1a3dba",
- "impliedFormat": 99
- },
- {
- "version": "b27242dd3af2a5548d0c7231db7da63d6373636d6c4e72d9b616adaa2acef7e1",
- "impliedFormat": 99
- },
- {
- "version": "e0ee7ba0571b83c53a3d6ec761cf391e7128d8f8f590f8832c28661b73c21b68",
- "impliedFormat": 99
- },
- {
- "version": "072bfd97fc61c894ef260723f43a416d49ebd8b703696f647c8322671c598873",
- "impliedFormat": 99
- },
- {
- "version": "e70875232f5d5528f1650dd6f5c94a5bed344ecf04bdbb998f7f78a3c1317d02",
- "impliedFormat": 99
- },
- {
- "version": "8e495129cb6cd8008de6f4ff8ce34fe1302a9e0dcff8d13714bd5593be3f7898",
- "impliedFormat": 99
- },
- {
- "version": "0345bc0b1067588c4ea4c48e34425d3284498c629bc6788ebc481c59949c9037",
- "impliedFormat": 99
- },
- {
- "version": "e30f5b5d77c891bc16bd65a2e46cd5384ea57ab3d216c377f482f535db48fc8f",
- "impliedFormat": 99
- },
- {
- "version": "f113afe92ee919df8fc29bca91cab6b2ffbdd12e4ac441d2bb56121eb5e7dbe3",
- "impliedFormat": 99
- },
- {
- "version": "49d567cc002efb337f437675717c04f207033f7067825b42bb59c9c269313d83",
- "impliedFormat": 99
- },
- {
- "version": "1d248f707d02dc76555298a934fba0f337f5028bb1163ce59cd7afb831c9070f",
- "impliedFormat": 99
- },
- {
- "version": "5d8debffc9e7b842dc0f17b111673fe0fc0cca65e67655a2b543db2150743385",
- "impliedFormat": 99
- },
- {
- "version": "5fccbedc3eb3b23bc6a3a1e44ceb110a1f1a70fa8e76941dce3ae25752caa7a9",
- "impliedFormat": 99
- },
- {
- "version": "f4031b95f3bab2b40e1616bd973880fb2f1a97c730bac5491d28d6484fac9560",
- "impliedFormat": 99
- },
- {
- "version": "dbe75b3c5ed547812656e7945628f023c4cd0bc1879db0db3f43a57fb8ec0e2b",
- "impliedFormat": 99
- },
- {
- "version": "b754718a546a1939399a6d2a99f9022d8a515f2db646bab09f7d2b5bff3cbb82",
- "impliedFormat": 99
- },
- {
- "version": "2eef10fb18ed0b4be450accf7a6d5bcce7b7f98e02cac4e6e793b7ad04fc0d79",
- "impliedFormat": 99
- },
- {
- "version": "c46f471e172c3be12c0d85d24876fedcc0c334b0dab48060cdb1f0f605f09fed",
- "impliedFormat": 99
- },
- {
- "version": "7d6ddeead1d208588586c58c26e4a23f0a826b7a143fb93de62ed094d0056a33",
- "impliedFormat": 99
- },
- {
- "version": "7c5782291ff6e7f2a3593295681b9a411c126e3736b83b37848032834832e6b9",
- "impliedFormat": 99
- },
- {
- "version": "3a3f09df6258a657dd909d06d4067ee360cd2dccc5f5d41533ae397944a11828",
- "impliedFormat": 99
- },
- {
- "version": "ea54615be964503fec7bce04336111a6fa455d3e8d93d44da37b02c863b93eb8",
- "impliedFormat": 99
- },
- {
- "version": "2a83694bc3541791b64b0e57766228ea23d92834df5bf0b0fcb93c5bb418069c",
- "impliedFormat": 99
- },
- {
- "version": "b5913641d6830e7de0c02366c08b1d26063b5758132d8464c938e78a45355979",
- "impliedFormat": 99
- },
- {
- "version": "46c095d39c1887979d9494a824eda7857ec13fb5c20a6d4f7d02c2975309bf45",
- "impliedFormat": 99
- },
- {
- "version": "f6e02ca076dc8e624aa38038e3488ebd0091e2faea419082ed764187ba8a6500",
- "impliedFormat": 99
- },
- {
- "version": "4d49e8a78aba1d4e0ad32289bf8727ae53bc2def9285dff56151a91e7d770c3e",
- "impliedFormat": 99
- },
- {
- "version": "63315cf08117cc728eab8f3eec8801a91d2cd86f91d0ae895d7fd928ab54596d",
- "impliedFormat": 99
- },
- {
- "version": "a14a6f3a5636bcaebfe9ec2ccfa9b07dc94deb1f6c30358e9d8ea800a1190d5e",
- "impliedFormat": 99
- },
- {
- "version": "21206e7e81876dabf2a7af7aa403f343af1c205bdcf7eff24d9d7f4eee6214c4",
- "impliedFormat": 99
- },
- {
- "version": "cd0a9f0ffec2486cad86b7ef1e4da42953ffeb0eb9f79f536e16ff933ec28698",
- "impliedFormat": 99
- },
- {
- "version": "f609a6ec6f1ab04dba769e14d6b55411262fd4627a099e333aa8876ea125b822",
- "impliedFormat": 99
- },
- {
- "version": "6d8052bb814be030c64cb22ca0e041fe036ad3fc8d66208170f4e90d0167d354",
- "impliedFormat": 99
- },
- {
- "version": "851f72a5d3e8a2bf7eeb84a3544da82628f74515c92bdf23c4a40af26dcc1d16",
- "impliedFormat": 99
- },
- {
- "version": "59692a7938aab65ea812a8339bbc63c160d64097fe5a457906ea734d6f36bcd4",
- "impliedFormat": 99
- },
- {
- "version": "8cb3b95e610c44a9986a7eab94d7b8f8462e5de457d5d10a0b9c6dd16bde563b",
- "impliedFormat": 99
- },
- {
- "version": "f571713abd9a676da6237fe1e624d2c6b88c0ca271c9f1acc1b4d8efeea60b66",
- "impliedFormat": 99
- },
- {
- "version": "16c5d3637d1517a3d17ed5ebcfbb0524f8a9997a7b60f6100f7c5309b3bb5ac8",
- "impliedFormat": 99
- },
- {
- "version": "ca1ec669726352c8e9d897f24899abf27ad15018a6b6bcf9168d5cd1242058ab",
- "impliedFormat": 99
- },
- {
- "version": "bffb1b39484facf6d0c5d5feefe6c0736d06b73540b9ce0cf0f12da2edfd8e1d",
- "impliedFormat": 99
- },
- {
- "version": "f1663c030754f6171b8bb429096c7d2743282de7733bccd6f67f84a4c588d96e",
- "impliedFormat": 99
- },
- {
- "version": "dd09693285e58504057413c3adc84943f52b07d2d2fd455917f50fa2a63c9d69",
- "impliedFormat": 99
- },
- {
- "version": "d94c94593d03d44a03810a85186ae6d61ebeb3a17a9b210a995d85f4b584f23d",
- "impliedFormat": 99
- },
- {
- "version": "c7c3bf625a8cb5a04b1c0a2fbe8066ecdbb1f383d574ca3ffdabe7571589a935",
- "impliedFormat": 99
- },
- {
- "version": "7a2f39a4467b819e873cd672c184f45f548511b18f6a408fe4e826136d0193bb",
- "impliedFormat": 99
- },
- {
- "version": "f8a0ae0d3d4993616196619da15da60a6ec5a7dfaf294fe877d274385eb07433",
- "impliedFormat": 99
- },
- {
- "version": "2cca80de38c80ef6c26deb4e403ca1ff4efbe3cf12451e26adae5e165421b58d",
- "impliedFormat": 99
- },
- {
- "version": "0070d3e17aa5ad697538bf865faaff94c41f064db9304b2b949eb8bcccb62d34",
- "impliedFormat": 99
- },
- {
- "version": "53df93f2db5b7eb8415e98242c1c60f6afcac2db44bce4a8830c8f21eee6b1dd",
- "impliedFormat": 99
- },
- {
- "version": "d67bf28dc9e6691d165357424c8729c5443290367344263146d99b2f02a72584",
- "impliedFormat": 99
- },
- {
- "version": "932557e93fbdf0c36cc29b9e35950f6875425b3ac917fa0d3c7c2a6b4f550078",
- "impliedFormat": 99
- },
- {
- "version": "e3dc7ec1597fb61de7959335fb7f8340c17bebf2feb1852ed8167a552d9a4a25",
- "impliedFormat": 99
- },
- {
- "version": "b64e15030511c5049542c2e0300f1fe096f926cf612662884f40227267f5cd9f",
- "impliedFormat": 99
- },
- {
- "version": "1932796f09c193783801972a05d8fb1bfef941bb46ac76fbe1abb0b3bfb674fa",
- "impliedFormat": 99
- },
- {
- "version": "d9575d5787311ee7d61ad503f5061ebcfaf76b531cfecce3dc12afb72bb2d105",
- "impliedFormat": 99
- },
- {
- "version": "5b41d96c9a4c2c2d83f1200949f795c3b6a4d2be432b357ad1ab687e0f0de07c",
- "impliedFormat": 99
- },
- {
- "version": "38ec829a548e869de4c5e51671245a909644c8fb8e7953259ebb028d36b4dd06",
- "impliedFormat": 99
- },
- {
- "version": "20c2c5e44d37dac953b516620b5dba60c9abd062235cdf2c3bfbf722d877a96b",
- "impliedFormat": 99
- },
- {
- "version": "875fe6f7103cf87c1b741a0895fda9240fed6353d5e7941c8c8cbfb686f072b4",
- "impliedFormat": 99
- },
- {
- "version": "c0ccccf8fbcf5d95f88ed151d0d8ce3015aa88cf98d4fd5e8f75e5f1534ee7ae",
- "impliedFormat": 99
- },
- {
- "version": "1b1f4aba21fd956269ced249b00b0e5bfdbd5ebd9e628a2877ab1a2cf493c919",
- "impliedFormat": 99
- },
- {
- "version": "939e3299952dff0869330e3324ba16efe42d2cf25456d7721d7f01a43c1b0b34",
- "impliedFormat": 99
- },
- {
- "version": "f0a9b52faec508ba22053dedfa4013a61c0425c8b96598cef3dea9e4a22637c6",
- "impliedFormat": 99
- },
- {
- "version": "d5b302f50db61181adc6e209af46ae1f27d7ef3d822de5ea808c9f44d7d219fd",
- "impliedFormat": 99
- },
- {
- "version": "19131632ba492c83e8eeadf91a481def0e0b39ffc3f155bc20a7f640e0570335",
- "impliedFormat": 99
- },
- {
- "version": "4581c03abea21396c3e1bb119e2fd785a4d91408756209cbeed0de7070f0ab5b",
- "impliedFormat": 99
- },
- {
- "version": "ebcd3b99e17329e9d542ef2ccdd64fddab7f39bc958ee99bbdb09056c02d6e64",
- "impliedFormat": 99
- },
- {
- "version": "4b148999deb1d95b8aedd1a810473a41d9794655af52b40e4894b51a8a4e6a6d",
- "impliedFormat": 99
- },
- {
- "version": "1781cc99a0f3b4f11668bb37cca7b8d71f136911e87269e032f15cf5baa339bf",
- "impliedFormat": 99
- },
- {
- "version": "33f1b7fa96117d690035a235b60ecd3cd979fb670f5f77b08206e4d8eb2eb521",
- "impliedFormat": 99
- },
- {
- "version": "01429b306b94ff0f1f5548ce5331344e4e0f5872b97a4776bd38fd2035ad4764",
- "impliedFormat": 99
- },
- {
- "version": "c1bc4f2136de7044943d784e7a18cb8411c558dbb7be4e4b4876d273cbd952af",
- "impliedFormat": 99
- },
- {
- "version": "5470f84a69b94643697f0d7ec2c8a54a4bea78838aaa9170189b9e0a6e75d2cf",
- "impliedFormat": 99
- },
- {
- "version": "36aaa44ee26b2508e9a6e93cd567e20ec700940b62595caf962249035e95b5e3",
- "impliedFormat": 99
- },
- {
- "version": "f8343562f283b7f701f86ad3732d0c7fd000c20fe5dc47fa4ed0073614202b4d",
- "impliedFormat": 99
- },
- {
- "version": "a53c572630a78cd99a25b529069c1e1370f8a5d8586d98e798875f9052ad7ad1",
- "impliedFormat": 99
- },
- {
- "version": "4ad3451d066711dde1430c544e30e123f39e23c744341b2dfd3859431c186c53",
- "impliedFormat": 99
- },
- {
- "version": "8069cbef9efa7445b2f09957ffbc27b5f8946fdbade4358fb68019e23df4c462",
- "impliedFormat": 99
- },
- {
- "version": "cd8b4e7ad04ba9d54eb5b28ac088315c07335b837ee6908765436a78d382b4c3",
- "impliedFormat": 99
- },
- {
- "version": "d533d8f8e5c80a30c51f0cbfe067b60b89b620f2321d3a581b5ba9ac8ffd7c3a",
- "impliedFormat": 99
- },
- {
- "version": "33f49f22fdda67e1ddbacdcba39e62924793937ea7f71f4948ed36e237555de3",
- "impliedFormat": 99
- },
- {
- "version": "710c31d7c30437e2b8795854d1aca43b540cb37cefd5900f09cfcd9e5b8540c4",
- "impliedFormat": 99
- },
- {
- "version": "b2c03a0e9628273bc26a1a58112c311ffbc7a0d39938f3878837ab14acf3bc41",
- "impliedFormat": 99
- },
- {
- "version": "a93beb0aa992c9b6408e355ea3f850c6f41e20328186a8e064173106375876c2",
- "impliedFormat": 99
- },
- {
- "version": "efdcba88fcd5421867898b5c0e8ea6331752492bd3547942dea96c7ebcb65194",
- "impliedFormat": 99
- },
- {
- "version": "a98e777e7a6c2c32336a017b011ba1419e327320c3556b9139413e48a8460b9a",
- "impliedFormat": 99
- },
- {
- "version": "ea44f7f8e1fe490516803c06636c1b33a6b82314366be1bd6ffa4ba89bc09f86",
- "impliedFormat": 99
- },
- {
- "version": "c25f22d78cc7f46226179c33bef0e4b29c54912bde47b62e5fdaf9312f22ffcb",
- "impliedFormat": 99
- },
- {
- "version": "d57579cfedc5a60fda79be303080e47dfe0c721185a5d95276523612228fcefc",
- "impliedFormat": 99
- },
- {
- "version": "a41630012afe0d4a9ff14707f96a7e26e1154266c008ddbd229e3f614e4d1cf7",
- "impliedFormat": 99
- },
- {
- "version": "298a858633dfa361bb8306bbd4cfd74f25ab7cc20631997dd9f57164bc2116d1",
- "impliedFormat": 99
- },
- {
- "version": "921782c45e09940feb232d8626a0b8edb881be2956520c42c44141d9b1ddb779",
- "impliedFormat": 99
- },
- {
- "version": "06117e4cc7399ce1c2b512aa070043464e0561f956bda39ef8971a2fcbcdbf2e",
- "impliedFormat": 99
- },
- {
- "version": "daccf332594b304566c7677c2732fed6e8d356da5faac8c5f09e38c2f607a4ab",
- "impliedFormat": 99
- },
- {
- "version": "4386051a0b6b072f35a2fc0695fecbe4a7a8a469a1d28c73be514548e95cd558",
- "impliedFormat": 99
- },
- {
- "version": "78e41de491fe25947a7fd8eeef7ebc8f1c28c1849a90705d6e33f34b1a083b90",
- "impliedFormat": 99
- },
- {
- "version": "3ccd198e0a693dd293ed22e527c8537c76b8fe188e1ebf20923589c7cfb2c270",
- "impliedFormat": 99
- },
- {
- "version": "2ebf2ee015d5c8008428493d4987e2af9815a76e4598025dd8c2f138edc1dcae",
- "impliedFormat": 99
- },
- {
- "version": "0dcc8f61382c9fcdafd48acc54b6ffda69ca4bb7e872f8ad12fb011672e8b20c",
- "impliedFormat": 99
- },
- {
- "version": "9db563287eb527ead0bcb9eb26fbec32f662f225869101af3cabcb6aee9259cf",
- "impliedFormat": 99
- },
- {
- "version": "068489bec523be43f12d8e4c5c337be4ff6a7efb4fe8658283673ae5aae14b85",
- "impliedFormat": 99
- },
- {
- "version": "838212d0dc5b97f7c5b5e29a89953de3906f72fce13c5ae3c5ade346f561d226",
- "impliedFormat": 99
- },
- {
- "version": "ddc78d29af824ad7587152ea523ed5d60f2bc0148d8741c5dacf9b5b44587b1b",
- "impliedFormat": 99
- },
- {
- "version": "019b522e3783e5519966927ceeb570eefcc64aba3f9545828a5fb4ae1fde53c6",
- "impliedFormat": 99
- },
- {
- "version": "b34623cc86497a5123de522afba770390009a56eebddba38d2aa5798b70b0a87",
- "impliedFormat": 99
- },
- {
- "version": "d2a8cbeb0c0caaf531342062b4b5c227118862879f6a25033e31fad00797b7eb",
- "impliedFormat": 99
- },
- {
- "version": "14891c20f15be1d0d42ecbbd63de1c56a4d745e3ea2b4c56775a4d5d36855630",
- "impliedFormat": 99
- },
- {
- "version": "e55a1f6b198a39e38a3cea3ffe916aab6fde7965c827db3b8a1cacf144a67cd9",
- "impliedFormat": 99
- },
- {
- "version": "f7910ccfe56131e99d52099d24f3585570dc9df9c85dd599a387b4499596dd4d",
- "impliedFormat": 99
- },
- {
- "version": "9409ac347c5779f339112000d7627f17ede6e39b0b6900679ce5454d3ad2e3c9",
- "impliedFormat": 99
- },
- {
- "version": "22dfe27b0aa1c669ce2891f5c89ece9be18074a867fe5dd8b8eb7c46be295ca1",
- "impliedFormat": 99
- },
- {
- "version": "684a5c26ce2bb7956ef6b21e7f2d1c584172cd120709e5764bc8b89bac1a10eb",
- "impliedFormat": 99
- },
- {
- "version": "93761e39ce9d3f8dd58c4327e615483f0713428fa1a230883eb812292d47bbe8",
- "impliedFormat": 99
- },
- {
- "version": "c66be51e3d121c163a4e140b6b520a92e1a6a8a8862d44337be682e6f5ec290a",
- "impliedFormat": 99
- },
- {
- "version": "66e486a9c9a86154dc9780f04325e61741f677713b7e78e515938bf54364fee2",
- "impliedFormat": 99
- },
- {
- "version": "d211bc80b6b6e98445df46fe9dd3091944825dd924986a1c15f9c66d7659c495",
- "impliedFormat": 99
- },
- {
- "version": "8dd2b72f5e9bf88939d066d965144d07518e180efec3e2b6d06ae5e725d84c7d",
- "impliedFormat": 99
- },
- {
- "version": "949cb88e315ab1a098c3aa4a8b02496a32b79c7ef6d189eee381b96471a7f609",
- "impliedFormat": 99
- },
- {
- "version": "bc43af2a5fa30a36be4a3ed195ff29ffb8067bf4925aa350ace9d9f18f380cc2",
- "impliedFormat": 99
- },
- {
- "version": "36844f94161a10af6586f50b95d40baa244215fea31055f27bcbea42cd30373e",
- "impliedFormat": 99
- },
- {
- "version": "8428e71f6d1b63acf55ceb56244aad9cf07678cf9626166e4aded15e3d252f8a",
- "impliedFormat": 99
- },
- {
- "version": "11505212ab24aa0f06d719a09add4be866e26f0fc15e96a1a2a8522c0c6a73a8",
- "impliedFormat": 99
- },
- {
- "version": "55828c4ddfee3bc66d533123ff52942ae67a2115f7395b2a2e0a22cea3ca64e7",
- "impliedFormat": 99
- },
- {
- "version": "c44bb0071cededc08236d57d1131c44339c1add98b029a95584dfe1462533575",
- "impliedFormat": 99
- },
- {
- "version": "7a4935af71877da3bbc53938af00e5d4f6d445ef850e1573a240447dcb137b5c",
- "impliedFormat": 99
- },
- {
- "version": "4e313033202712168ecc70a6d830964ad05c9c93f81d806d7a25d344f6352565",
- "impliedFormat": 99
- },
- {
- "version": "8a1fc69eaf8fc8d447e6f776fbfa0c1b12245d7f35f1dbfb18fbc2d941f5edd8",
- "impliedFormat": 99
- },
- {
- "version": "afb9b4c8bd38fb43d38a674de56e6f940698f91114fded0aa119de99c6cd049a",
- "impliedFormat": 99
- },
- {
- "version": "1d277860f19b8825d027947fca9928ee1f3bfaa0095e85a97dd7a681b0698dfc",
- "impliedFormat": 99
- },
- {
- "version": "6d32122bb1e7c0b38b6f126d166dff1f74c8020f8ba050248d182dcafc835d08",
- "impliedFormat": 99
- },
- {
- "version": "cfac5627d337b82d2fbeff5f0f638b48a370a8d72d653327529868a70c5bc0f8",
- "impliedFormat": 99
- },
- {
- "version": "8a826bc18afa4c5ed096ceb5d923e2791a5bae802219e588a999f535b1c80492",
- "impliedFormat": 99
- },
- {
- "version": "73e94021c55ab908a1b8c53792e03bf7e0d195fee223bdc5567791b2ccbfcdec",
- "impliedFormat": 99
- },
- {
- "version": "5f73eb47b37f3a957fe2ac6fe654648d60185908cab930fc01c31832a5cb4b10",
- "impliedFormat": 99
- },
- {
- "version": "cb6372a2460010a342ba39e06e1dcfd722e696c9d63b4a71577f9a3c72d09e0a",
- "impliedFormat": 99
- },
- {
- "version": "1e289698069f553f36bbf12ee0084c492245004a69409066faceb173d2304ec4",
- "impliedFormat": 99
- },
- {
- "version": "f1ca71145e5c3bba4d7f731db295d593c3353e9a618b40c4af0a4e9a814bb290",
- "impliedFormat": 99
- },
- {
- "version": "ac12a6010ff501e641f5a8334b8eaf521d0e0739a7e254451b6eea924c3035c7",
- "impliedFormat": 99
- },
- {
- "version": "97395d1e03af4928f3496cc3b118c0468b560765ab896ce811acb86f6b902b5c",
- "impliedFormat": 99
- },
- {
- "version": "7dcfbd6a9f1ce1ddf3050bd469aa680e5259973b4522694dc6291afe20a2ae28",
- "impliedFormat": 99
- },
- {
- "version": "6e545419ad200ae4614f8e14d32b7e67e039c26a872c0f93437b0713f54cde53",
- "impliedFormat": 99
- },
- {
- "version": "efc225581aae9bb47d421a1b9f278db0238bc617b257ce6447943e59a2d1621e",
- "impliedFormat": 99
- },
- {
- "version": "8833b88e26156b685bc6f3d6a014c2014a878ffbd240a01a8aee8a9091014e9c",
- "impliedFormat": 99
- },
- {
- "version": "7a2a42a1ac642a9c28646731bd77d9849cb1a05aa1b7a8e648f19ab7d72dd7dc",
- "impliedFormat": 99
- },
- {
- "version": "4d371c53067a3cc1a882ff16432b03291a016f4834875b77169a2d10bb1b023e",
- "impliedFormat": 99
- },
- {
- "version": "99b38f72e30976fd1946d7b4efe91aa227ecf0c9180e1dd6502c1d39f37445b4",
- "impliedFormat": 99
- },
- {
- "version": "df1bcf0b1c413e2945ce63a67a1c5a7b21dbbec156a97d55e9ea0eed90d2c604",
- "impliedFormat": 99
- },
- {
- "version": "6e2011a859fa435b1196da1720be944ed59c668bb42d2f2711b49a506b3e4e90",
- "impliedFormat": 99
- },
- {
- "version": "b4bfa90fac90c6e0d0185d2fe22f059fec67587cc34281f62294f9c4615a8082",
- "impliedFormat": 99
- },
- {
- "version": "036d363e409ebe316a6366aff5207380846f8f82e100c2e3db4af5fe0ad0c378",
- "impliedFormat": 99
- },
- {
- "version": "5ae6642588e4a72e5a62f6111cb750820034a7fbe56b5d8ec2bcb29df806ce52",
- "impliedFormat": 99
- },
- {
- "version": "6fca09e1abc83168caf36b751dec4ddda308b5714ec841c3ff0f3dc07b93c1b8",
- "impliedFormat": 99
- },
- {
- "version": "2f7268e6ac610c7122b6b416e34415ce42b51c56d080bef41786d2365f06772d",
- "impliedFormat": 99
- },
- {
- "version": "9a07957f75128ed0be5fc8a692a14da900878d5d5c21880f7c08f89688354aa4",
- "impliedFormat": 99
- },
- {
- "version": "8b6f3ae84eab35c50cf0f1b608c143fe95f1f765df6f753cd5855ae61b3efbe2",
- "impliedFormat": 99
- },
- {
- "version": "992491d83ff2d1e7f64a8b9117daee73724af13161f1b03171f0fa3ffe9b4e3e",
- "impliedFormat": 99
- },
- {
- "version": "12bcf6af851be8dd5f3e66c152bb77a83829a6a8ba8c5acc267e7b15e11aa9ab",
- "impliedFormat": 99
- },
- {
- "version": "e2704efc7423b077d7d9a21ddb42f640af1565e668d5ec85f0c08550eff8b833",
- "impliedFormat": 99
- },
- {
- "version": "e0513c71fd562f859a98940633830a7e5bcd7316b990310e8bb68b1d41d676a3",
- "impliedFormat": 99
- },
- {
- "version": "712071b9066a2d8f4e11c3b8b3d5ada6253f211a90f06c6e131cff413312e26d",
- "impliedFormat": 99
- },
- {
- "version": "5a187a7bc1e7514ef1c3d6eaafa470fc45541674d8fca0f9898238728d62666a",
- "impliedFormat": 99
- },
- {
- "version": "0c06897f7ab3830cef0701e0e083b2c684ed783ae820b306aedd501f32e9562d",
- "impliedFormat": 99
- },
- {
- "version": "56cc6eae48fd08fa709cf9163d01649f8d24d3fea5806f488d2b1b53d25e1d6c",
- "impliedFormat": 99
- },
- {
- "version": "57a925b13947b38c34277d93fb1e85d6f03f47be18ca5293b14082a1bd4a48f5",
- "impliedFormat": 99
- },
- {
- "version": "9d9d64c1fa76211dd529b6a24061b8d724e2110ee55d3829131bca47f3fe4838",
- "impliedFormat": 99
- },
- {
- "version": "c13042e244bb8cf65586e4131ef7aed9ca33bf1e029a43ed0ebab338b4465553",
- "impliedFormat": 99
- },
- {
- "version": "54be9b9c71a17cb2519b841fad294fa9dc6e0796ed86c8ac8dd9d8c0d1c3a631",
- "impliedFormat": 99
- },
- {
- "version": "10881be85efd595bef1d74dfa7b9a76a5ab1bfed9fb4a4ca7f73396b72d25b90",
- "impliedFormat": 99
- },
- {
- "version": "925e71eaa87021d9a1215b5cf5c5933f85fe2371ddc81c32d1191d7842565302",
- "impliedFormat": 99
- },
- {
- "version": "faed0b3f8979bfbfb54babcff9d91bd51fda90931c7716effa686b4f30a09575",
- "impliedFormat": 99
- },
- {
- "version": "53c72d68328780f711dbd39de7af674287d57e387ddc5a7d94f0ffd53d8d3564",
- "impliedFormat": 99
- },
- {
- "version": "51129924d359cdebdccbf20dbabc98c381b58bfebe2457a7defed57002a61316",
- "impliedFormat": 99
- },
- {
- "version": "7270a757071e3bc7b5e7a6175f1ac9a4ddf4de09f3664d80cb8805138f7d365b",
- "impliedFormat": 99
- },
- {
- "version": "ea7b5c6a79a6511cdeeedc47610370be1b0e932e93297404ef75c90f05fc1b61",
- "impliedFormat": 99
- },
- "ea7a1b1f7a1d44d222d98a01a836f19ac22602324d1c3faf755303adf270f0fb",
- "183e02d315b3fc619b0dcd0a5762647534473f62a4e9018b76744f3ba55967bc",
- {
- "version": "e516240bc1e5e9faef055432b900bc0d3c9ca7edce177fdabbc6c53d728cced8",
- "impliedFormat": 99
- },
- {
- "version": "5402765feacf44e052068ccb4535a346716fa1318713e3dae1af46e1e85f29a9",
- "impliedFormat": 99
- },
- {
- "version": "e16ec5d4796e7a765810efee80373675cedc4aa4814cf7272025a88addf5f0be",
- "impliedFormat": 99
- },
- {
- "version": "1f57157fcd45f9300c6efcfc53e2071fbe43396b0a7ed2701fbd1efb5599f07f",
- "impliedFormat": 99
- },
- {
- "version": "9f1886f3efddfac35babcada2d454acd4e23164345d11c979966c594af63468b",
- "impliedFormat": 99
- },
- {
- "version": "a3541c308f223863526df064933e408eba640c0208c7345769d7dc330ad90407",
- "impliedFormat": 99
- },
- {
- "version": "59af208befeb7b3c9ab0cb6c511e4fec54ede11922f2ffb7b497351deaf8aa2e",
- "impliedFormat": 99
- },
- {
- "version": "928b16f344f6cddaba565da8238f4cf2ddf12fe03eb426ab46a7560e9b3078fa",
- "impliedFormat": 99
- },
- {
- "version": "120bdf62bccef4ea96562a3d30dd60c9d55481662f5cf31c19725f56c0056b34",
- "impliedFormat": 99
- },
- {
- "version": "39e0da933908de42ba76ea1a92e4657305ae195804cfaa8760664e80baac2d6a",
- "impliedFormat": 99
- },
- {
- "version": "55ce6ca8df9d774d60cef58dd5d716807d5cc8410b8b065c06d3edac13f2e726",
- "impliedFormat": 99
- },
- {
- "version": "788a0faf3f28d43ce3793b4147b7539418a887b4a15a00ffb037214ed8f0b7f6",
- "impliedFormat": 99
- },
- {
- "version": "a3e66e7b8ccdab967cd4ada0f178151f1c42746eabb589a06958482fd4ed354e",
- "impliedFormat": 99
- },
- {
- "version": "bf45a2964a872c9966d06b971d0823daecbd707f97e927f2368ba54bb1b13a90",
- "impliedFormat": 99
- },
- {
- "version": "39973a12c57e06face646fb79462aabe8002e5523eec4e86e399228eb34b32c9",
- "impliedFormat": 99
- },
- {
- "version": "f01091e9b5028acfb38208113ae051fad8a0b4b8ec1f7137a2a5cf903c47eefc",
- "impliedFormat": 99
- },
- {
- "version": "b3e87824c9e7e3a3be7f76246e45c8d603ce83d116733047200b3aa95875445b",
- "impliedFormat": 99
- },
- {
- "version": "7e1f7f9ae14e362d41167dc861be6a8d76eca30dde3a9893c42946dc5a5fc686",
- "impliedFormat": 99
- },
- {
- "version": "9308ef3b9433063ac753a55c3f36d6d89fa38a8e6c51e05d9d8329c7f1174f24",
- "impliedFormat": 99
- },
- {
- "version": "cd3bb1aa24726a0abd67558fde5759fe968c3c6aa3ec7bad272e718851502894",
- "impliedFormat": 99
- },
- {
- "version": "1ae0f22c3b8420b5c2fec118f07b7ebd5ae9716339ab3477f63c603fe7a151c8",
- "impliedFormat": 99
- },
- {
- "version": "919ff537fff349930acc8ad8b875fd985a17582fb1beb43e2f558c541fd6ecd9",
- "impliedFormat": 99
- },
- {
- "version": "4e67811e45bae6c44bd6f13a160e4188d72fd643665f40c2ac3e8a27552d3fd9",
- "impliedFormat": 99
- },
- {
- "version": "3d1450fd1576c1073f6f4db9ebae5104e52e2c4599afb68d7d6c3d283bdbaf4f",
- "impliedFormat": 99
- },
- {
- "version": "c072af873c33ff11af126c56a846dfada32461b393983a72b6da7bff373e0002",
- "impliedFormat": 99
- },
- {
- "version": "de66e997ea5376d4aeb16d77b86f01c7b7d6d72fbb738241966459d42a4089e0",
- "impliedFormat": 99
- },
- {
- "version": "d77ea3b91e4bc44d710b7c9487c2c6158e8e5a3439d25fc578befeb27b03efd7",
- "impliedFormat": 99
- },
- {
- "version": "a3d5c695c3d1ebc9b0bd55804afaf2ac7c97328667cbeedf2c0861b933c45d3e",
- "impliedFormat": 99
- },
- {
- "version": "270724545d446036f42ddea422ee4d06963db1563ccc5e18b01c76f6e67968ae",
- "impliedFormat": 99
- },
- {
- "version": "85441c4f6883f7cfd1c5a211c26e702d33695acbabec8044e7fa6831ed501b45",
- "impliedFormat": 99
- },
- {
- "version": "0f268017a6b1891fdeea69c2a11d576646d7fd9cdfc8aac74d003cd7e87e9c5a",
- "impliedFormat": 99
- },
- {
- "version": "9ece188c336c80358742a5a0279f2f550175f5a07264349d8e0ce64db9701c0b",
- "impliedFormat": 99
- },
- {
- "version": "cf41b0fc7d57643d1a8d21af07b0247db2f2d7e2391c2e55929e9c00fbe6ab9a",
- "impliedFormat": 99
- },
- {
- "version": "11e7ddddd9eddaac56a6f23d8699ae7a94c2a55ae8c986fdabc719d3c3e875a1",
- "impliedFormat": 99
- },
- {
- "version": "dd129c2d348be7dbf9f15d34661defdfc11ee00628ca6f7161bead46095c6bc3",
- "impliedFormat": 99
- },
- {
- "version": "c38d8e7cfc64bbfc14a63346388249c1cfa2cc02166c5f37e5a57da4790ce27f",
- "impliedFormat": 99
- },
- "dcbf3ef5c41676b2e5b83abc13d8ab0d88fe9da17d2272f3cca2a2ce18921b25",
- {
- "version": "56208c500dcb5f42be7e18e8cb578f257a1a89b94b3280c506818fed06391805",
- "impliedFormat": 1
- },
- {
- "version": "0c94c2e497e1b9bcfda66aea239d5d36cd980d12a6d9d59e66f4be1fa3da5d5a",
- "impliedFormat": 1
- },
- {
- "version": "eb9271b3c585ea9dc7b19b906a921bf93f30f22330408ffec6df6a22057f3296",
- "impliedFormat": 1
- },
- {
- "version": "aa4a927d0c7239dff845a64e676c71aeed2bbda89a7fb486baab22eb7688ba1d",
- "impliedFormat": 1
- },
- {
- "version": "340a990742a00862049b378aaa482b5bb8323d443c799dded51ce711f4f8eb51",
- "impliedFormat": 1
- },
- {
- "version": "89eeeebbc612a079c6e7ebe0bde08e06fbc46cfeaebf6157ea3051ed55967b10",
- "impliedFormat": 1
- },
- {
- "version": "4c72f66622e266b542fb097f4d1fe88eb858b88b98414a13ef3dd901109e03a1",
- "impliedFormat": 1
- },
- {
- "version": "23a933d83f3a8d595b35f3827c5e68239fb4f6eb44e96389269d183fe7ff09ba",
- "impliedFormat": 1
- },
- {
- "version": "2acad3ae616a9fb5a8c3d4d7bb5edb11d1d0102372ee939e7fc64359fec4046e",
- "impliedFormat": 1
- },
- {
- "version": "c812eabb7d2e13c8e72e216208448f92341a4094dd107cbb0bdb2cb23d1a83e7",
- "impliedFormat": 1
- },
- {
- "version": "f734b58ea162765ff4d4a36f671ee06da898921e985a2064510f4925ec1ed062",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "55c0569d0b70dbc0bb9a811469a1e2a7b8e2bab2d70c013f2e40dfb2d2803d05",
- "impliedFormat": 1
- },
- {
- "version": "37f96daaddc2dd96712b2e86f3901f477ac01a5c2539b1bc07fd609d62039ee1",
- "impliedFormat": 1
- },
- {
- "version": "9c5c84c449a3d74e417343410ba9f1bd8bfeb32abd16945a1b3d0592ded31bc8",
- "impliedFormat": 1
- },
- {
- "version": "a7f09d2aaf994dbfd872eda4f2411d619217b04dbe0916202304e7a3d4b0f5f8",
- "impliedFormat": 1
- },
- {
- "version": "a66ebe9a1302d167b34d302dd6719a83697897f3104d255fe02ff65c47c5814e",
- "impliedFormat": 99
- },
- {
- "version": "a7f23fecdccf1504dae27c359db676d0a1fbaaeb400b55959078924e4c3a4992",
- "impliedFormat": 1
- },
- {
- "version": "bee66a62aa1da254412bb2c3c8c1a0dd12efea0722d35cc6ea7b5fdaa6778fd1",
- "impliedFormat": 1
- },
- {
- "version": "05d80364872e31465f8a1eaf2697e4fc418f78aa336f4cea68620a23f1379f6f",
- "impliedFormat": 1
- },
- {
- "version": "7345ba3b9eb2182d8cdc4c961b62847c3c9918985179ddefd5ca58a80d8b9e6a",
- "impliedFormat": 1
- },
- {
- "version": "81c4a0e6de3d5674ec3a721e04b3eb3244180bda86a22c4185ecac0e3f051cd8",
- "impliedFormat": 1
- },
- {
- "version": "39975a01d837394bcac2559639e88ecdc4cfd22433327b46ea6f78eb2c584813",
- "impliedFormat": 1
- },
- {
- "version": "7261cabedede09ebfd50e135af40be34f76fb9dbc617e129eaec21b00161ae86",
- "impliedFormat": 1
- },
- {
- "version": "ea554794a0d4136c5c6ea8f59ae894c3c0848b17848468a63ed5d3a307e148ae",
- "impliedFormat": 1
- },
- {
- "version": "2c378d9368abcd2eba8c29b294d40909845f68557bc0b38117e4f04fc56e5f9c",
- "impliedFormat": 1
- },
- {
- "version": "9b048390bcffe88c023a4cd742a720b41d4cd7df83bc9270e6f2339bf38de278",
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "c60b14c297cc569c648ddaea70bc1540903b7f4da416edd46687e88a543515a1",
- "impliedFormat": 1
- },
- {
- "version": "acfa00e5599216bcb8c9f3095e5fec4aeddfcc65aabe0eac7e8dbc51e33691c9",
- "impliedFormat": 1
- },
- {
- "version": "922d8f0f46dbe9fb80def96f7bcd9d5c1a6c0022d71023afa9eb7b45189d61f2",
- "impliedFormat": 1
- },
- {
- "version": "90588fb5ef85f4a8a4234e8062eb97bd3c8114dfb86a0c67f62685969222da8b",
- "impliedFormat": 1
- },
- {
- "version": "6ce50ada4bc9d2ad69927dce35cead36da337a618de0a2daaaeeafe38c692597",
- "impliedFormat": 1
- },
- {
- "version": "13b8d0a9b0493191f15d11a5452e7c523f811583a983852c1c8539ab2cfdae7c",
- "impliedFormat": 1
- },
- {
- "version": "8932771f941e3f8f153a950c65707d0611f30f577256aa59d4b92eda1c3d8f32",
- "impliedFormat": 1
- },
- {
- "version": "df6251bd4b5fad52759bfe96e8ab8f2ce625d0b6739b825209b263729a9c321e",
- "impliedFormat": 1
- },
- {
- "version": "846068dbe466864be6e2cae9993a4e3ac492a5cb05a36d5ce36e98690fde41f4",
- "impliedFormat": 1
- },
- {
- "version": "94c8c60f751015c8f38923e0d1ae32dd4780b572660123fa087b0cf9884a68a8",
- "impliedFormat": 1
- },
- {
- "version": "db8747c785df161ef65237bac36a7716168e5ebf18976ab16fd2fff69cf9c6ce",
- "impliedFormat": 1
- },
- {
- "version": "3085abdf921a6d225ad037c89eb2ba26a4c3b2c262f842dd3061949d1969b784",
- "impliedFormat": 1
- },
- {
- "version": "8e8f7b36675be31c4e9538529c30a552538c42ff866ba59fe70f23ba18479c5a",
- "impliedFormat": 1
- },
- {
- "version": "f4f7fbf0e5bf2097ddee2c998cca04b063f6f9cdcb255e728c0e85967119f9e5",
- "impliedFormat": 1
- },
- {
- "version": "c5b47653a15ec7c0bde956e77e5ca103ddc180d40eb4b311e4a024ef7c668fb0",
- "impliedFormat": 1
- },
- {
- "version": "223709d7c096b4e2bb00390775e43481426c370ac8e270de7e4c36d355fc8bc9",
- "impliedFormat": 1
- },
- {
- "version": "0528a80462b04f2f2ad8bee604fe9db235db6a359d1208f370a236e23fc0b1e0",
- "impliedFormat": 1
- },
- {
- "version": "17fb3716df78592be07500e9a90bd8c9424dd70c6201226886a8e71b9d2af396",
- "impliedFormat": 1
- },
- {
- "version": "82ef7d775e89b200380d8a14dc6af6d985a45868478773d98850ea2449f1be56",
- "impliedFormat": 1
- },
- {
- "version": "b86720947f763bbb869c2b183f8e58bca9fa089ed8f9c5a1574b2bea18cfbc02",
- "impliedFormat": 1
- },
- {
- "version": "fb7e20b94d23d989fa7c7d20fccebef31c1ef2d3d9ca179cadba6516e4e918ad",
- "impliedFormat": 1
- },
- {
- "version": "8326f735a1f0d2b4ad20539cda4e0d2e7c5fc0b534e3c0d503d5ed20a5711009",
- "impliedFormat": 1
- },
- {
- "version": "8d720cd4ee809af1d81f4ce88f02168568d5fded574d89875afd8fe7afd9549e",
- "impliedFormat": 1
- },
- {
- "version": "df87c2628c5567fd71dc0b765c845b0cbfef61e7c2e56961ac527bfb615ea639",
- "impliedFormat": 1
- },
- {
- "version": "659a83f1dd901de4198c9c2aa70e4a46a9bd0c41ce8a42ee26f2dbff5e86b1f3",
- "impliedFormat": 1
- },
- {
- "version": "1db5c2491eebd894eb9be03408601cddfe1b08357d021aeb86c3fb6c329a7843",
- "impliedFormat": 1
- },
- {
- "version": "224f85b48786de61fb0b018fbea89620ebec6289179daa78ed33c0f83014fc75",
- "impliedFormat": 1
- },
- {
- "version": "05fbfcb5c5c247a8b8a1d97dd8557c78ead2fff524f0b6380b4ac9d3e35249fb",
- "impliedFormat": 1
- },
- {
- "version": "322f70408b4e1f550ecc411869707764d8b28da3608e4422587630b366daf9de",
- "impliedFormat": 1
- },
- {
- "version": "acb93abc527fa52eb2adc5602a7c3c0949861f8e4317a187bb5c3372f872eff4",
- "impliedFormat": 1
- },
- {
- "version": "c4ef9e9e0fcb14b52c97ce847fb26a446b7d668d9db98a7de915a22c46f44c37",
- "impliedFormat": 1
- },
- {
- "version": "0e447b14e81b5b3e5d83cbea58b734850f78fb883f810e46d3dedba1a5124658",
- "impliedFormat": 1
- },
- {
- "version": "045f36d3a830b5ae1b7586492e1a2368d0e4b4209fa656f529fd6f6bb9ac7ced",
- "impliedFormat": 1
- },
- {
- "version": "929939785efdef0b6781b7d3a7098238ea3af41be010f18d6627fd061b6c9edf",
- "impliedFormat": 1
- },
- {
- "version": "fca68ac3b92725dbf3dac3f9fbc80775b66d2a9c642e75595a4a11a2095b3c9a",
- "impliedFormat": 1
- },
- {
- "version": "245d13141d7f9ec6edd36b14844b247e0680950c1c3289774d431cbbd47e714e",
- "impliedFormat": 1
- },
- {
- "version": "4326dc453ff5bf36ad778e93b7021cdd9abcfc4efe75a5c04032324f404af558",
- "impliedFormat": 1
- },
- {
- "version": "27b47fbd2f2d0d3cd44b8c7231c800f8528949cc56f421093e2b829d6976f173",
- "impliedFormat": 1
- },
- {
- "version": "0795a213434963328e8b60e65a9d03a88efc138ae171bbcca39d9000c040e7a4",
- "impliedFormat": 1
- },
- {
- "version": "fc745bebefc96e2a518a2d559af6850626cada22a75f794fd40a17aae11e2d54",
- "impliedFormat": 1
- },
- {
- "version": "2b0fe9ba00d0d593fb475d4204214a0f604ad8a56f22a5f05c378b52205ef36b",
- "impliedFormat": 1
- },
- {
- "version": "3d94a259051acf8acd2108cee57ad58fee7f7b278de76a7a5746f0656eecbff6",
- "impliedFormat": 1
- },
- {
- "version": "46097d076be332463ea64865c41d232865614cf358a11af75095dd9cef2871cc",
- "impliedFormat": 1
- },
- {
- "version": "6e18a70a7c64e6fe578a8f3ecc1dd562cd0bf6843bbf8e65fde37cf63b9a8ea8",
- "impliedFormat": 1
- },
- {
- "version": "3f3526aea8d29f0c53f8fb99201c770c87c357b5e87349aca8494bfd0c145c26",
- "impliedFormat": 1
- },
- {
- "version": "6ee92d844e5a1c0eb562d110676a3a17f00d2cd2ea2aaaff0a98d7881b9a4041",
- "impliedFormat": 1
- },
- {
- "version": "b9dc36d1f7c5c2350feafb55c090127104e59b7d2a20729b286dab00d70e283d",
- "impliedFormat": 1
- },
- {
- "version": "45d3f1d53fa99783a5e3c29debb065d6060d0db650a6a1055308a8619bd6b263",
- "impliedFormat": 1
- },
- {
- "version": "a14febaf38fd75a88620a0808732cf9841afc403da2dc3de7a6fc9a49d36bdbc",
- "impliedFormat": 1
- },
- {
- "version": "6052522a593f094cfee0e99c76312a229cf2d49ac2e75095af83813ec9f4b109",
- "impliedFormat": 1
- },
- {
- "version": "a0ceb6ce93981581494bae078b971b17e36b67502a36a056966940377517091d",
- "impliedFormat": 1
- },
- {
- "version": "a63ce903dd08c662702e33700a3d28ca66ed21ac0591e1dbf4a0b309ae80e690",
- "impliedFormat": 1
- },
- {
- "version": "2b63d2725550866e0f2b56b2394ce001ebf1145cb4b04dc9daa29d73867b878c",
- "impliedFormat": 1
- },
- {
- "version": "e885933b92f26fa3204403999eddc61651cd3109faf8bffa4f6b6e558b0ab2fa",
- "impliedFormat": 1
- },
- {
- "version": "bd834465d4395ac3d8d55e94bf2a39c1f5e9be719c99340957b3b6a3a85ec66a",
- "impliedFormat": 1
- },
- {
- "version": "0b1238c0e3536321ae822c84216614bad2f3a7bd3f1de5c6ec8a85b26d900e6b",
- "impliedFormat": 1
- },
- {
- "version": "6e2d2b63c278fd1c8dd54da2328622c964f50afa62978ed1a73ccd85e99a4fc7",
- "impliedFormat": 1
- },
- {
- "version": "e151e41c82004cf09b7ea863f591348c9035e0f7a69d4189cbac89cc9611b89d",
- "impliedFormat": 1
- },
- {
- "version": "74d62eb5f24ae3e1fa7374380fa6ef354449757293c7434d00b702b1c7f87249",
- "impliedFormat": 1
- },
- {
- "version": "b83ffe71adbac91c5596133251e5ec0c9e6664017ee5b776841effe93de8f466",
- "impliedFormat": 1
- },
- {
- "version": "61ecf051972c69e7c992bab9cf74c511ecba51b273c4e1590574d97a542bd4ea",
- "impliedFormat": 1
- },
- {
- "version": "068f5afbae92a20a5fcd9cfce76f7b90de2c59a952396b5da225b61f95a1d60a",
- "impliedFormat": 1
- },
- {
- "version": "bdf5e07a22e661de2c7115e8364b98ef399c24c9fe62035dc1ac945a9dd3372a",
- "impliedFormat": 1
- },
- {
- "version": "4e024e2530feda4719448af6bdd0c0c7cfa28d1a4887900f4886bec70cd48fea",
- "impliedFormat": 1
- },
- {
- "version": "99c88ea4f93e883d10c04961dbf37c403c4f3c8444948b86effec0bf52176d0e",
- "impliedFormat": 1
- },
- {
- "version": "e88f3729fcc3d38d2a1b3cdcbd773d13d72ea3bdf4d0c0c784818e3bfbe7998d",
- "impliedFormat": 1
- },
- {
- "version": "f25b1264b694a647593b0a9a044a267098aaf249d646981a7f0503b8bb185352",
- "impliedFormat": 1
- },
- {
- "version": "964d0862660f8e46675c83793f42ab2af336f3d6106dee966a4053d5dc433063",
- "impliedFormat": 1
- },
- {
- "version": "292ad4203c181f33beb9eb8fe7c6aaae29f62163793278a7ffc2fcc0d0dbed19",
- "impliedFormat": 1
- },
- {
- "version": "4e04e6263670ad377f2f6bcd477def099ac3634d760ee8a7cca74a6f39d70a48",
- "impliedFormat": 1
- },
- {
- "version": "f1a4ca3688d951daa2d7740da5a0827fa34d4a7709eed7b8225215986ee87108",
- "impliedFormat": 1
- },
- {
- "version": "7879a9ca9f953587b6d1471d5b9c7ed0d9852f1a30e9c5b6a7227a7bb7a0894d",
- "impliedFormat": 1
- },
- {
- "version": "f8453a3fe0fe49ab718357120bec2b8205e15eb91ff62eada60a4780458fa91e",
- "impliedFormat": 1
- },
- {
- "version": "06f186bb9a6408ef8563dbf17d53cbe23e68422518b49b96afac732844ddbaa1",
- "impliedFormat": 1
- },
- {
- "version": "525f9c06245b5b43b1237cfd757396fd7fd8090e5d6a4ded758c7ce17a04bf42",
- "impliedFormat": 1
- },
- {
- "version": "04bc74b8fa987f140989e9f4d6dc37f04a307417af3e0a3767baa1eef4964e10",
- "impliedFormat": 1
- },
- {
- "version": "6a9d3aa58228faa62ec3d9e305f472a24441f22a8d028234577beb592ec295b2",
- "impliedFormat": 1
- },
- {
- "version": "683e2d454f64394931d233740b762dabc379e3ce5c4c4ad4747cdbd6d5fd8e8d",
- "impliedFormat": 1
- },
- {
- "version": "18594ddc7900f3e477645819bce4d824989ad296e3d70bdcdce13cabc5d97335",
- "impliedFormat": 1
- },
- {
- "version": "9376cce4d849f1d6ad2cb0048807c77cfeb78cee6e29b61dcfe74c7ab2980e18",
- "impliedFormat": 1
- },
- {
- "version": "2698935791615907eb632186119dfc307363d6a163f26017084009e44ea261f2",
- "impliedFormat": 1
- },
- {
- "version": "4edfc4848068bf58016856dfeb27341c15679884575e1a501e2389a1fea5c579",
- "impliedFormat": 1
- },
- {
- "version": "0c3d7a094ef401b3c36c8e3d88382a7e7a8b1e4f702769eba861d03db559876b",
- "impliedFormat": 1
- },
- {
- "version": "d3c3280f081f28e846239d27c2f77a41417e6a19f39267d20a282fd07ef36b96",
- "impliedFormat": 1
- },
- {
- "version": "7e3a4800683a39375bc99f0d53b21328b0a0377ab7cbb732c564ca7ca04d9b37",
- "impliedFormat": 1
- },
- {
- "version": "c777b498a93261d6caa5dbd1187090b79f0263a03526c64ea4f844a679e8299e",
- "impliedFormat": 1
- },
- {
- "version": "b4677e9d8802a82455a0f03a211b85f5d4b04cfbc89fc9aa691695b8e70df326",
- "impliedFormat": 1
- },
- {
- "version": "7cb0d946957daea11f78a31b85de435e00bcd8964eba66d3e8056ba9d14b9c55",
- "impliedFormat": 1
- },
- {
- "version": "b3e441cdb9d9e55e6e120052fe8bf2a8b5e5a46287f21d5bc39561594574e1a9",
- "impliedFormat": 1
- },
- {
- "version": "0870e8eb0527c044e844a1d83127f020aa7f79048218a62b2875e818355f8cb2",
- "impliedFormat": 1
- },
- {
- "version": "6b7446f89f9e5d47835117416e6d7656bac2bf700513d330254ae979260ce99f",
- "impliedFormat": 1
- },
- {
- "version": "9750752db342b88df1b860958a20fac9fd6a507f67c5cfb6bd5cfa8759338b1e",
- "impliedFormat": 1
- },
- {
- "version": "946de511c5e04659d9dfaf5ef83770122846d26d3ffe30e636d3339482bbf35a",
- "impliedFormat": 1
- },
- {
- "version": "fbcc201a8fc377a92714567491e3f81e204750b612d51a1720af452f1a254760",
- "impliedFormat": 1
- },
- {
- "version": "6dd704b0ba0131eb9e707aeedc39be6a224b4669544e518217a75eb7f5dd65c2",
- "impliedFormat": 1
- },
- {
- "version": "6effa89f483e5c83c0e0063df5f1d8b006d9d0f1de7eed2233886642424dc8fb",
- "impliedFormat": 1
- },
- {
- "version": "84a8c844f9562da8994c07b44dd2777178a147e06020c62a7f6e349e695e7149",
- "impliedFormat": 1
- },
- {
- "version": "d43130c35762a80da2299f8b59a4321b6e64acfb0b11a36183379b4c7b83314b",
- "impliedFormat": 1
- },
- {
- "version": "6bf44b890824799af8e20c0387ffa987e890fac5c5954a3a7352351eefe55d5d",
- "impliedFormat": 1
- },
- {
- "version": "892b19153694b7a3c9a69bcedb54e1c8ad3b9fa370076db4d3522838afd2cd60",
- "impliedFormat": 1
- },
- {
- "version": "5461fca70947a4d8fa272d3dda4c729317cec825141313352adf33bc94de142a",
- "impliedFormat": 1
- },
- {
- "version": "f83afa274e0f11860c6609198ecca220f5df60690923b990ca06cae21771016e",
- "impliedFormat": 1
- },
- {
- "version": "af31f37264ea5d5349eec50786ceca75c572ed3be91bdd7cb428fdd8cd14b17c",
- "impliedFormat": 1
- },
- {
- "version": "85e4673ec8507aef18afd4a9acfae0294bdfaac29458ede0b8b56f5a63738486",
- "impliedFormat": 1
- },
- {
- "version": "40683566071340b03c74d0a4ffa84d49fedb181a691ce04c97e11b231a7deee4",
- "impliedFormat": 1
- },
- {
- "version": "81c8ab81daa2286241ad27468d6fc7ad3ecc62da04b18b77ce9b9b437f6b0863",
- "impliedFormat": 1
- },
- {
- "version": "f158721f7427976b5510660c8e53389d5033c915496c028558c66caaf3d1db1c",
- "impliedFormat": 1
- },
- {
- "version": "8e56db8febfe127a9142435940c9a5a1ad17ddb2b2a6d8e9e8984785a76db1fd",
- "impliedFormat": 1
- },
- {
- "version": "6113c2f172a875db117357f0aa35aa7c1b6316516e813977ef98dc3b4b8baf2a",
- "impliedFormat": 1
- },
- {
- "version": "f25c9802b1316afbf667dd8fa6db4ed23aa5e7acc076a1054ca45d7bc9c8e811",
- "impliedFormat": 1
- },
- {
- "version": "e99285f74c22ad823c0b9fac55316b84144e15eb91830034badd9eb0fafe71bf",
- "impliedFormat": 1
- },
- "63959b7be74e01c4fc55ec3c7fc1cc31bcc9953c95d825956f883484e7af7223",
- "f16272ee586be4ad380e30a943ef44518910519c676a3be5e0208d23afff658c",
- "72558c21409eca7e4b927e731da5b32a3308de64b6ab45eece203905eb3e8b85",
- {
- "version": "7459d85c80f2971be954b562724106b13d5a2a57e8bfde51723e94e838f6fcbf",
- "impliedFormat": 99
- },
- {
- "version": "c24ab9ac84d65b417a807ada25456697bb2adf1189fa80cb240625dfb3e61c42",
- "impliedFormat": 99
- },
- {
- "version": "2f0fa19ebe34e7d2cf7823063555ee4439857c69edb03b6a705b97ce95a69070",
- "impliedFormat": 99
- },
- {
- "version": "959ffb2edd511f72c17bb07c9192443bc512f7dd707b0127c513ef3fe13b397f",
- "impliedFormat": 99
- },
- {
- "version": "4a950137dbff496fdca742066964f48efdaa748794668dd552419d43a6125603",
- "impliedFormat": 99
- },
- {
- "version": "4b15cc0373f1ca84bdb230115a283869f9016d7246b22ee76d2b93af5d2f1004",
- "impliedFormat": 99
- },
- {
- "version": "4d857105510df8011cfb5b3769dec55624a1df92e85d399cd03bc82bb89d090c",
- "impliedFormat": 99
- },
- {
- "version": "0027415abaae3a127e25fabad82bb581b09d89235c553a1eb847fa14faf69bc9",
- "impliedFormat": 99
- },
- {
- "version": "2e10e08e6ab5ebb88025cb0309457f86f59af9e4ae87186df0d096b53802445c",
- "impliedFormat": 99
- },
- {
- "version": "21e5c69ad89ff162b5de9fee105994d98d63fa3fe7a5673ba8fe8e366a75d7da",
- "impliedFormat": 99
- },
- {
- "version": "cfaf4f60b3290259d7cb24e27644fe868da003713f3f389602e6607ed7a9b1c6",
- "impliedFormat": 99
- },
- {
- "version": "61d1912d86dffc312be80f1126bd65f1f6dd2e3ca6b4539eb029a209a77f408f",
- "impliedFormat": 99
- },
- {
- "version": "97bc6fd88a4a101f9132ae93bc684a0c195a4ee401eab1492c6248f6bf012375",
- "impliedFormat": 99
- },
- {
- "version": "00ec6732d15b24c301e967de238c4a75cf7b8b87d5b0e9924052d0bc97978193",
- "impliedFormat": 99
- },
- {
- "version": "eb7f907ec09c730f66cfaef2aee237c86e43eed68bcb794db7f81fcecb01c577",
- "impliedFormat": 99
- },
- {
- "version": "59a69685139ba76cc6e0c9a0a596ac5aff1041f3874949c5e89decb555e43cff",
- "impliedFormat": 99
- },
- {
- "version": "144a4e5780b800c0553949169f50be285eccbdb0298afd83ef2ae03fef77e2d2",
- "impliedFormat": 99
- },
- {
- "version": "66aeb47bf8638d6767f7b4ff684c2d794391c981590073025e98f98e1afed499",
- "impliedFormat": 99
- },
- {
- "version": "26748898fec8579096c776866e8e6f07754845b3d08f5ae98c3a59baa9e85c2e",
- "impliedFormat": 99
- },
- {
- "version": "6d805abd62920edbd9ed4b20be26d040d01529f3ce53fdab9ca4d0fa9b589f02",
- "impliedFormat": 99
- },
- {
- "version": "9cb3e4826879023518628e2d6b3cc936a1dc1c558e3e65c450263886dd060703",
- "impliedFormat": 99
- },
- {
- "version": "7009f30d921edd039a57942d50060fd7f856159384075a53e6405a5c03fd603f",
- "impliedFormat": 99
- },
- {
- "version": "97b02501eb45f487174d5a0ff89b6a95690d50e9eae242e2162118edd5f2705c",
- "impliedFormat": 99
- },
- {
- "version": "2b4276dde46aa2faf0dd86119999c76b81e6488cd6b0d0fcf9fb985769cd11c0",
- "impliedFormat": 99
- },
- {
- "version": "38d4cff03e87dc58bfd50ffe5a3fb25e6e6d4136a1282883285baf71d35967c5",
- "impliedFormat": 99
- },
- {
- "version": "5ecea63968444d55f7c3cf677cbec9525db9229953b34f06be0386a24b0fffd2",
- "impliedFormat": 99
- },
- {
- "version": "6ea9c8bf2ae4d47a0dbc2a1f9ac1e36c639b2ac9225c4d271c2f63a2faf24831",
- "impliedFormat": 99
- },
- {
- "version": "a3d603c46b55d51493799241b8a456169d36301cc926ff72c75f5480e7eb25bf",
- "impliedFormat": 99
- },
- {
- "version": "ad98c359284db8c984e88949b2c3394e4a35158880767b772491489788a6c5a0",
- "impliedFormat": 99
- },
- {
- "version": "5c117cca0b75ed634fe3085142a931df2e2214e26f2bbcb34c592b767f13c1e8",
- "impliedFormat": 99
- },
- {
- "version": "773c18e2bcc18598df8f8b2be930eb26b22608edf368e42e9ca3484828ec4122",
- "impliedFormat": 99
- },
- {
- "version": "c385a1392fbde5ad2e29d1bda89b5438ba11d99f03108d4465cb3af50a26fdff",
- "impliedFormat": 99
- },
- {
- "version": "425a03d68f43164e0214b1c333cd58e777d4186f412b530467c18ef0d2b37a80",
- "impliedFormat": 99
- },
- {
- "version": "26cfaec143443411bc7d5363f274f885ced430b8f4bee25a81f7827248848d7b",
- "impliedFormat": 99
- },
- {
- "version": "f9a591e5fe0be6728cc84e70325aacafffcf203b051ddef37d65651b43c05056",
- "impliedFormat": 99
- },
- {
- "version": "4594572155e436ee22bff36cd0c41990b644797530e1d5ac0ae44d7bd9a9b6d7",
- "impliedFormat": 99
- },
- {
- "version": "de8b4c367880fe92a0a740b706f08a46d1cf9e3981d55c2701e82423e81ef0ef",
- "impliedFormat": 99
- },
- {
- "version": "4a056a71ffda9ff3f2adec60c0189c906f7e46976a0c6650fa196674ff8c4dff",
- "impliedFormat": 99
- },
- {
- "version": "3a3fd6f5ca85ceeb293f2a010125f9455404958122b6dd0ba0b34f7dab74feb5",
- "impliedFormat": 99
- },
- {
- "version": "42b58bc8da11e9181ecf4ac498d41c74930c73c8ebef091474d0f8cf971b50ac",
- "impliedFormat": 99
- },
- {
- "version": "0458fbed073aeebfe0ce055b9bcc450627f5fc9aaec7634a6b9c44ff10431d8e",
- "impliedFormat": 99
- },
- {
- "version": "fc30f37a98ab20a8db1309801095f4f7234f4840f0a9281dc63251e9dd75fad1",
- "impliedFormat": 99
- },
- {
- "version": "951e9556f7441d86eef0b6160779e2f97c0d43da6110951b4fff87d493143ac7",
- "impliedFormat": 99
- },
- {
- "version": "d2746ea0021f79365dcff95fc255ac529b6ef7f51981fc8e9cff62e65a2087a6",
- "impliedFormat": 99
- },
- {
- "version": "9fe94c8f6b36cb41acd30d89567761a52246932dece21e1ce104baa2e84b07ac",
- "impliedFormat": 99
- },
- {
- "version": "d0d58671b91fad1b24b87186a81bac181d07a6d61c58dc067f79b38c8c1e2b88",
- "impliedFormat": 99
- },
- {
- "version": "c5aa3449a1a90686b5bb9e9c389b88e9a6fd8ed410289fff3c8d9359e4d510aa",
- "impliedFormat": 99
- },
- {
- "version": "e96bd939a55117abe6ccbc02839f2f4d9ce3893368fea528ca91c59ebddf496f",
- "impliedFormat": 99
- },
- {
- "version": "81f6bf27eedb1ed92466abfcee33795a6b2304691ae01f42e60f8c76894fade7",
- "impliedFormat": 99
- },
- {
- "version": "4b05275d33bc4acbc41634e6c38d95da3771c23182ca12c00139b6069c66a15c",
- "impliedFormat": 99
- },
- {
- "version": "26a0c2d883e1ed55ba00810d957dedcde5d16d637e33063686e2bc3f58a5c64a",
- "impliedFormat": 99
- },
- {
- "version": "b2c697a96a297c1a207d9bc9b3fd4cb92b95bac1c0717c94a364f3590c25fda6",
- "impliedFormat": 99
- },
- {
- "version": "bfb900f7de2066a4be644c269285fda8ccca40b065476a27b082173014d00467",
- "impliedFormat": 99
- },
- {
- "version": "0817f58fceb66836eb354fb16f1b20093f9bc3d475995b2d20f3621a2e5dd3f0",
- "impliedFormat": 99
- },
- {
- "version": "7e2b8299e85423435784cc6244e2d559ea862d226e7b0ec871c6a53f88e5139f",
- "impliedFormat": 99
- },
- {
- "version": "8eca47167dadd486582ecd4e41f7fba6ae66cc4a4c5202f1f7acf34129a0dadf",
- "impliedFormat": 99
- },
- {
- "version": "5f6aa85935176c45e47cfed4d6af31c2c53fa4a24ccb92ea32ff9c9a915a1908",
- "impliedFormat": 99
- },
- {
- "version": "fea899959c19f5d41eb556cfb29e0d6722c470463b27036b23e672aaa4da70f5",
- "impliedFormat": 99
- },
- {
- "version": "062c0cf9641ca90ff3ad8edc61c2e06299fe6585fb9a4014a8acdf7f11810d51",
- "impliedFormat": 99
- },
- {
- "version": "745db40747b91a21d6b87a140dbf26c995545994c87ad2297a4033d6192113a8",
- "impliedFormat": 99
- },
- {
- "version": "5db46b90fabb0e78d84d231fe090aff47e09d2cacb4a38b6b06bc5a2f9c73cb0",
- "impliedFormat": 99
- },
- {
- "version": "0eb30dfdea5fb0bc646ece93f7e368e39f63a846c28728eaa3714ae67ebf4a4b",
- "impliedFormat": 99
- },
- {
- "version": "533fe789a14f6087b274308c257964da60cce305b42f55f5e9483315e5ac19b6",
- "impliedFormat": 99
- },
- {
- "version": "2a1fc3ab59c5d74c4e7bec3880b98c1e11d48276173b314eaccd9b34c4aceaa7",
- "impliedFormat": 99
- },
- {
- "version": "112c5c25a4e75f0bd1bcdda0630afddd634d96f74263c0d0c98a14505577c7ba",
- "impliedFormat": 99
- },
- {
- "version": "0751c7fbc7fd80df189156cd8b277d1b537e6b711b316db0b6aa35b9c674a6fa",
- "impliedFormat": 99
- },
- {
- "version": "d8f7ba1d7a0eb2191ac0b656a4ff4624cc7c615c9f0209760a664aa4f2993ba4",
- "impliedFormat": 99
- },
- {
- "version": "62d30429d222ea6faafe408fe136c3a1e9df0cde180b0dba5fa4ebd77c0807ee",
- "impliedFormat": 99
- },
- {
- "version": "ea2276e4ce7ceab26d8a340f53554db2ace013d85903d7b5e781ace26c3eee41",
- "impliedFormat": 99
- },
- {
- "version": "dbe63b3e06a26a1a3e74b407474745d3a9148775f2bf96588863099d64d1e54c",
- "impliedFormat": 99
- },
- {
- "version": "fd41f8da8f9ee3606b5460e3810572ada02d29726e2f0180fcdac1be260a6da7",
- "impliedFormat": 99
- },
- {
- "version": "3bbde357e5d8d70cd29460e158586f4ff7c57e12d4ae997ad5368d6431a5e892",
- "impliedFormat": 99
- },
- {
- "version": "d2000199162496a4e85e7ddc9ea0ab05286737b6acb6b8390100fac220e8cb77",
- "impliedFormat": 99
- },
- {
- "version": "aaebbcd44c28c0e088dda4bd1c94aabc126318a96938dc849c0fc21d5ce0afc7",
- "impliedFormat": 99
- },
- {
- "version": "faf9a217d8d237b02ab6d95508d8736ae431bbeb38d98885eb5b8fb6dbe48cec",
- "impliedFormat": 99
- },
- {
- "version": "d5633ef9a26db101247322db090e95c7b0eef123503cc53099850d35fcb4fe8b",
- "impliedFormat": 99
- },
- {
- "version": "838c1878bc1ec773ca2b72ecc544d0f5b8913711fa8cb2b7f14cef8259743669",
- "impliedFormat": 99
- },
- {
- "version": "74b564cd3da8f83d5e472a5b0cc53bf7e276b25576097cb89e6f67caf95b12dc",
- "impliedFormat": 99
- },
- {
- "version": "68333289edbcca548c7f8370f9c1dcb71694136a11f418e38691f05bd2c299ce",
- "impliedFormat": 99
- },
- {
- "version": "ae3a1d96127f7c759d2b6c466d2f3e96657c830356bde016f89c44075add8da6",
- "impliedFormat": 99
- },
- {
- "version": "cce820aba9ba9d1984461c67d0d543d8eba7ea25c6a1be7a47c31cc18907a631",
- "impliedFormat": 99
- },
- {
- "version": "6a1e5cea457be906011d1736eea8d0ae82e883cff9fe4a91f3218c5c9cd84e13",
- "impliedFormat": 99
- },
- {
- "version": "51b6335f5a8e177306647558a3eefa1f6abe259b283c6462223be3d7d0f33300",
- "impliedFormat": 99
- },
- {
- "version": "4674cb63fb87b9ccd97b95106de31583132dac5ab544c414e5902d10db34699a",
- "impliedFormat": 99
- },
- {
- "version": "3ffe7d5bb7b38b8133e65f41e7b17d8799479418fdae3e352c891a64d14f65ac",
- "impliedFormat": 99
- },
- {
- "version": "474dcc8f8d16e3b9c43fddd9b1930fbed50d26a66dc75cf17a2888ffc654c0bb",
- "impliedFormat": 99
- },
- {
- "version": "cbf0390e81de86db9f6979227deaa5cf4f6bc4df00d1b034716a5adf1044e079",
- "impliedFormat": 99
- },
- {
- "version": "136bde95f389f316a60b40bbf0f53c2a30474d8941b3554dba2d246f14dd254b",
- "impliedFormat": 99
- },
- {
- "version": "be31399eb87d9773cdf0d109ff2af942a6a22c82efdaa3c389102c287c419e8b",
- "impliedFormat": 99
- },
- {
- "version": "079a563e723579e9f4b37c0a26e88437fae2716e976273425615c939b821cdff",
- "impliedFormat": 99
- },
- {
- "version": "667d3df98d1432158d20452fd0c175b0fffade57db9c7cecdd3922567f23c7e8",
- "impliedFormat": 99
- },
- {
- "version": "d16321086fd36596aaf00d9590c2de1812f8204c6f870ac8f0d8fecde70570b5",
- "impliedFormat": 99
- },
- {
- "version": "46a2c32879b8082fb031f575977bbdec9f3041167bf8acc9abba34b498e49443",
- "impliedFormat": 99
- },
- {
- "version": "2d09c2f8b415e6973baa6b314f9023612c47f76fda13d542c711b08eba4b6f6e",
- "impliedFormat": 99
- },
- {
- "version": "f5593ebceb9e3ea81f78c9ea001d8b22e86210a03ba1de9c6d66eaddc667b797",
- "impliedFormat": 99
- },
- {
- "version": "2c285a3af1b420020956dc9d315bd73861aa943df786143d0aab6580053d0b77",
- "impliedFormat": 99
- },
- {
- "version": "fb732d4dfd6387d8efd99f0757c3a68a1664e9b16a0461e4572bb2cf1b1f978b",
- "impliedFormat": 99
- },
- {
- "version": "7804e6d8dd4e50c1ee6b4466eca30dedcff424c04113c23a0083afb5a588b9b8",
- "impliedFormat": 99
- },
- {
- "version": "a79f09851a1353dc376b19bedf96bb7191402ec01890308119f6ab8cb33b9726",
- "impliedFormat": 99
- },
- {
- "version": "d5897465eb4696de9518faa21172441ee95ce80a0b1d7c8b90dbcf70d3db7e67",
- "impliedFormat": 99
- },
- {
- "version": "e8d2d8e7bf7eb324f9e5c9f323384d4066f508f7182a0506dbf7336cf70e1f4e",
- "impliedFormat": 99
- },
- {
- "version": "b6bdd50d0e977f5fb48d01ec58387c4ea4ca4061180896d92667a121d8c359ce",
- "impliedFormat": 99
- },
- {
- "version": "aaa93af07b03d69f6d7f49380ef42d13b41a2c6169b248c2e07552bb94c08faf",
- "impliedFormat": 99
- },
- {
- "version": "b62d96002ec0c8710d0e99aa3175434e1df0f22f5a09291b19e5ec05e8a877e6",
- "impliedFormat": 99
- },
- {
- "version": "d93c145cb04df5d21c2d0f66194700d2f1d6f8e04abe7ef723651e915bc6bc4e",
- "impliedFormat": 99
- },
- {
- "version": "6e085274a812504f697c8130336ad47a6b249eab56a547a2a34f9b2c294e9a3a",
- "impliedFormat": 99
- },
- {
- "version": "5834c68c6e0f55055514834fe00e65ebe8d0ed8f8e127ab071ce2ced36eb0967",
- "impliedFormat": 99
- },
- {
- "version": "433839016857a5a785134d2d5e760fdcc9819d241a3ffb5cb76985e666a34a8c",
- "impliedFormat": 99
- },
- {
- "version": "fe75ad82fe44452125aba2301647fb1197bd611ecc5857e225d022f9d95469eb",
- "impliedFormat": 99
- },
- {
- "version": "23a55ad8067538d0d1cb0b55b1aff47b6a5979b9ef2e46c6e9b0160377a46616",
- "impliedFormat": 99
- },
- {
- "version": "66cd137411911fea6db4b352a98279470e386eb3b1cac5db3de1efad678a9015",
- "impliedFormat": 99
- },
- {
- "version": "f8d95db2d66d268765d447b554dffdb3f1cd2a22e8da7f6f57dfdcad6a19a1e8",
- "impliedFormat": 99
- },
- {
- "version": "bdceae6ab40835cb0a1fa08e0367ec3fc43cfcecb1840d3a90ea75bcfe605ddf",
- "impliedFormat": 99
- },
- {
- "version": "e38a172f8912eebc79671e07b81687a304a9d366a47933fde9f97ad79f8ac08a",
- "impliedFormat": 99
- },
- {
- "version": "42f60dc9ecd3ef8ae7ef6c883f648243cdc645ea7f539d16eb2ce043f9ca3d27",
- "impliedFormat": 99
- },
- {
- "version": "6082ee8fee6b3736c8bcd0a1d9dfff7125a406039020316f9512d88ab21b4206",
- "impliedFormat": 99
- },
- {
- "version": "f6ba66f3f6c4409e878f48161529c585b3c0e687c8917dd8f6c6464fc5cd4f8e",
- "impliedFormat": 99
- },
- {
- "version": "0366e97d9c966d748ad91b782e8ce843ebb692d93a1d211ef5b84cccbe8f53a8",
- "impliedFormat": 99
- },
- {
- "version": "aa74551dc1eea3e902560acc832ac63a78ae05fe5f3b04c6813fe2ec57511456",
- "impliedFormat": 99
- },
- {
- "version": "b86777df5a816b1b1a2b12a017a8ef8f14ea2fb1a533d1e18e956ced70ac9d28",
- "impliedFormat": 99
- },
- {
- "version": "ce9e6f87c3a69558b58fe849abe2ed9a105cd5195809851d99397395a4442bc0",
- "impliedFormat": 99
- },
- {
- "version": "8c85110d99da8adc0da3cc811023d6f7e0f6ee28564d10a26b27c190f34e200c",
- "impliedFormat": 99
- },
- {
- "version": "ab95baa99c5dc2a49bd1d1c00d90955088463e675f4eb869008a357b5b02d6fe",
- "impliedFormat": 99
- },
- {
- "version": "7980ab0dad3e7e1eb6e9873231d45f3860864c84c48608267864e4774c4bf39d",
- "impliedFormat": 99
- },
- {
- "version": "845b523a3ca13e3fbd496a579aaf51875d60e15ee56f4be60a358dfd87699afe",
- "impliedFormat": 99
- },
- {
- "version": "53c3302d92c8cf76bc6557a1f762fc2f7ee6156af5bc7a2ef22c591d53cbc4cf",
- "impliedFormat": 99
- },
- {
- "version": "32c98d5e98a05f108f4e405c853db481f83c5a1a9cd6c53870501d8248f9afad",
- "impliedFormat": 99
- },
- {
- "version": "d7ce891d302b15d9f28cae31eddc6a88be37c290c512fb1247735e7f923b1104",
- "impliedFormat": 99
- },
- {
- "version": "147ca4dfd1729f9b34c3c074589cdf518c0b80fd1efa29ef75bdb39507b23153",
- "impliedFormat": 99
- },
- {
- "version": "ea8f093cdf681d9487034f80323bdd4168c727eb9d5c985f250e3c4488d64639",
- "impliedFormat": 99
- },
- {
- "version": "09b8b299789b2ac464776895e96f64cca0ffa6449a178d775adea0401d9b49fb",
- "impliedFormat": 99
- },
- {
- "version": "15abcaa279117eb516a90c09c4b60c53fb29c1242c7f67bb1003e0cce06f7d19",
- "impliedFormat": 99
- },
- {
- "version": "df506f8ab6bcab64cd24be5e65bcf12b959d1d00cd9127d73afc59ba4062867c",
- "impliedFormat": 99
- },
- {
- "version": "ecb5aeb3771bea2795b5f4c0f79036c061c3a2bfe0b1d5a83d9183a43e38cd9c",
- "impliedFormat": 99
- },
- {
- "version": "8a5ff6c3f290223a222cd540136d2bf4880d1c13d94f62503d7029ff74533b41",
- "impliedFormat": 99
- },
- {
- "version": "eabb41775a846406c423449b13eca4e43214c0bab2ab00b4e22b01e39d510023",
- "impliedFormat": 99
- },
- {
- "version": "015ed10c7e81ea426199e7d9b92978416f420466088487b25577bea09b469a54",
- "impliedFormat": 99
- },
- {
- "version": "d5da26af31358a4883edb6112879018b14c7c1fbcc457aa36961b03ee17bedea",
- "impliedFormat": 99
- },
- {
- "version": "4e93fb2d2c59bbc1f1a5211b36c447efe4d0af568d682ef1e5eb5f84ca6ccc2e",
- "impliedFormat": 99
- },
- {
- "version": "3d13fe973e92e708ad3dbbf1b2385bb799f8e70c8da71a1ac72fcb5521c8a5e9",
- "impliedFormat": 99
- },
- {
- "version": "16f3f66b5182e57c554d0e374e29fdc0a899c1321b3f94fa997d19abf9faf931",
- "impliedFormat": 99
- },
- {
- "version": "a8d6a3a562196c0a6e193e303ff1b2c6932a6a16a631ce14f2110dcb1667f622",
- "impliedFormat": 99
- },
- {
- "version": "556079af6cfdcb562e1a7408e73ac2203ed8fad6cc768d498238b137ac06247d",
- "impliedFormat": 99
- },
- {
- "version": "17096b785db48bd6b340542cf9752db28508b637e9721022e9993aa15372367a",
- "impliedFormat": 99
- },
- {
- "version": "e177a7a7a17e5d282c4379cc20c3b21f3bcd22abdb88557695eb83c4d51b186b",
- "impliedFormat": 99
- },
- {
- "version": "49f41e28b536a2a1722017672ef24a0720b2d0a37f66f1a272c7d8595b3b3a39",
- "impliedFormat": 99
- },
- {
- "version": "dfa5ecdeea6492f56d1a1b7905fe3fc24a2ab44a5420ca23fc9133da991015e7",
- "impliedFormat": 99
- },
- {
- "version": "ca359d684454111a2118c60f361166ad3595b74fd7b9c8eea5c7de05d9ba13a3",
- "impliedFormat": 99
- },
- {
- "version": "c61abe93e13d89322bef06b0d2063ffcca5e0c547722fcea7a57c6f435cd58a4",
- "impliedFormat": 99
- },
- {
- "version": "2ab01a0368f65b3b891e25416ae785dca54808f70d8f6204b99589ed4f7f1d2f",
- "impliedFormat": 99
- },
- {
- "version": "43b5886036965659dae63950130d2aa6c4728c336fe1ffd09b0832fbeb027b15",
- "impliedFormat": 99
- },
- {
- "version": "0e93b1f86d8778076f04fe97295548d6d10b31d29daaa3980568929da4c94b5f",
- "impliedFormat": 99
- },
- {
- "version": "2984438b44f77f375cf80075b7c26e84d593aa56490e3703ebe094e34626e183",
- "impliedFormat": 99
- },
- {
- "version": "b594999319e34d99ba2048dbdeb0fb2660044d4fd2e26456275f4d6a43f61f65",
- "impliedFormat": 99
- },
- {
- "version": "7bae4a3f50a844fcbdc504d717f5f13dd7178ca99f131b230305db6b55e1dbc3",
- "impliedFormat": 99
- },
- {
- "version": "214c393513df9438d6956ad5b738efcb1538c301c81d60e0adb9f2113c780265",
- "impliedFormat": 99
- },
- {
- "version": "58977c552caa6b5993e10d48a8d97bb7e636516b1526cfbcfd045c144476597d",
- "impliedFormat": 99
- },
- {
- "version": "2288fdc58bb7180154bf4e3e20b01f2f0a279a5ff253679baa8d326bbc3c0020",
- "impliedFormat": 99
- },
- {
- "version": "dbf382db41bc652896fe67296a9bd1880836cd2ddc16a3811bfd7bb9c2fec1ea",
- "impliedFormat": 99
- },
- {
- "version": "f49e8feb6d7473579a5ceb5872598bbc1be3723da653993472720629c72fa0ba",
- "impliedFormat": 99
- },
- {
- "version": "14c727434cfe6a078b51a88d005033ad01a76bec36292d7b47369d82e48e1cb0",
- "impliedFormat": 99
- },
- {
- "version": "d909cc4d55736652a82d5f76be92980a1cfb14b6beb65137171deb4c7cbb608c",
- "impliedFormat": 99
- },
- {
- "version": "0a37887a4d2c6a6ed5e5ddd3619d04165079eda5477340fa56e635510333e8a3",
- "impliedFormat": 99
- },
- {
- "version": "53adb1224146150628fd59d35c5a3f3f69629a649052c34ef6ee5186cc911c81",
- "impliedFormat": 99
- },
- {
- "version": "f645ed7ab08689c3fc4afec989000af708f562adb32819d1079762c027f225e7",
- "impliedFormat": 99
- },
- {
- "version": "b03aa91aef645f9856216a2223a47001a84954caf37b7ffb1d63d1327b4231fe",
- "impliedFormat": 99
- },
- {
- "version": "2d982c7dba93b9bcabb045898b00e62dd09919b2b35ee63c42880b22494a7ad8",
- "impliedFormat": 99
- },
- {
- "version": "cfcb85724714ed6320c09fddcffed5ac71069125cd5b9957406c920dfd4c16ec",
- "impliedFormat": 99
- },
- {
- "version": "7142177cf3158dad7b42726ea15c78512dbad6370117509c8eadefcedae72534",
- "impliedFormat": 99
- },
- {
- "version": "9322da0c85b107feebedf3005249cb863f4e03736c4b8ab3edcbfcc29981d13b",
- "impliedFormat": 99
- },
- {
- "version": "54a730e06094b37f96436ccc8e736bb65b74d256439bf1663344e3fab16d2246",
- "impliedFormat": 99
- },
- {
- "version": "e502cb97a6fa3ea9268d2c2b2bcad7a1c8cfaade589f501a30cbf542e098f4a8",
- "impliedFormat": 99
- },
- {
- "version": "19586f37701483574eb9615faa417281f9b417225c0595c2a242031f6c86e267",
- "impliedFormat": 99
- },
- {
- "version": "4e8b929462a5c46c53151f6e7519a06e31ea6754a735c942d9ac5d8b535a46fd",
- "impliedFormat": 99
- },
- {
- "version": "d2e6d9f45141863efb1ce3846875ca23fca7b731496c45006e4931837c3ff3e4",
- "impliedFormat": 99
- },
- {
- "version": "d06ad53b5004aefc1adffde50247af521e0e10d334392fc0cdfa8fa965d7243f",
- "impliedFormat": 99
- },
- {
- "version": "8f1eceb25b3591bc9222483317ca1bd13d4be70aff908d9d26fa3c18b7f7ce2b",
- "impliedFormat": 99
- },
- {
- "version": "b56026fce41fba17e89346ef0ad03b2f5fcd04c1120176e4eac77a7d72dcd8e9",
- "impliedFormat": 99
- },
- {
- "version": "d3aa309128e84a97c160e41f2cd9408e19e43e3a6373b72b37fcec94fd3f2c7d",
- "impliedFormat": 99
- },
- {
- "version": "0513d6c3cb14947d45f1471345eab07dfa5b9237124f639c9e0dc056df236584",
- "impliedFormat": 99
- },
- {
- "version": "a4a1f24de17edfa0b47c4e939390b38f229d9e42ded4f53639e9df475fe453be",
- "impliedFormat": 99
- },
- {
- "version": "366c1b30d171d42458d361430d16dac31854cff2db854abb59ff4a5df3e349c3",
- "impliedFormat": 99
- },
- {
- "version": "ab2dc76864097e3d2dc5a0553376474ebf026fc5f25e10adbb5e81b1247b03d7",
- "impliedFormat": 99
- },
- {
- "version": "8e68a48d38419d478b823e2f04c8418fc348fb6d4d370b15743cde4d48392506",
- "impliedFormat": 99
- },
- {
- "version": "a93626ded4c88421ac4e27150b0e11a514683a25f54d6639347a66652e118c9a",
- "impliedFormat": 99
- },
- {
- "version": "5804ffbc65b78751fd510218b90827a7ca677ca34a45b4709a00783b658cbaba",
- "impliedFormat": 99
- },
- {
- "version": "5bc28e22162587d3940c3f73668bfd191a65d7381ad7c242901ed7a395e04198",
- "impliedFormat": 99
- },
- {
- "version": "31dad812abb967c21c2ba11f6c1ade44ed75a7441c2df7e6fa78f6af0f112eba",
- "impliedFormat": 99
- },
- {
- "version": "ff9e2545e5c4e207179f01a1ec905d0fbbfa1d162501679a01cc75591fd5bfe1",
- "impliedFormat": 99
- },
- {
- "version": "1c247df73ee92991ea75d19419b5625e37a9da3bef05f015d7097a35c66a1fc0",
- "impliedFormat": 99
- },
- {
- "version": "c29921af69f3db7348ed27915972a51cddde446ac029fface772271c085eacbb",
- "impliedFormat": 99
- },
- {
- "version": "e4a58769bce747f03a3606f55e84690c2003f754ab4354a27ac6aba30eef01bb",
- "impliedFormat": 99
- },
- {
- "version": "78bd82da60d7021316b170afa284acb4a0400d52eb34ed089e38861bd3c53d10",
- "impliedFormat": 99
- },
- {
- "version": "1ce699f32fea004f388368e19e9cadb41dd52ecc72c9d6b353c9d9e01abe2cf4",
- "impliedFormat": 99
- },
- {
- "version": "597fc3b46d5654c4f8361c36ded591d5f12826dd1df9e7643e8bcf1f0803cbd9",
- "impliedFormat": 99
- },
- {
- "version": "b56a743deaeb1ec9be37a9a8e5599e1cccd267267d4fc41c01e0c5371892a70b",
- "impliedFormat": 99
- },
- {
- "version": "d8fbed05640e6df144bbc9bc1ce7586d6e020119968f9491c157ab670c97f003",
- "impliedFormat": 99
- },
- {
- "version": "ac782435f9434aeda13f2d65fe840eb282bdbe2405549b166b2a89bcdea2396e",
- "impliedFormat": 99
- },
- {
- "version": "98ef9c3f5f15c18abcd6fa9f12e93e1bbd608225501151603cce97642dbc961d",
- "impliedFormat": 99
- },
- {
- "version": "c80a56a10f1a8e01c4b7f08df6e9260ae076c910402dae8173fa6c7dcacc51fe",
- "impliedFormat": 99
- },
- {
- "version": "809cabbaee3df008c5c31e842047b487417eca144d2f4a4b0e04940827a3d062",
- "impliedFormat": 99
- },
- {
- "version": "30d726e77d959648e8f6fe104bacdc29ee4e1cfc6e8ea7c952141b3a3482d007",
- "impliedFormat": 99
- },
- {
- "version": "7dfcc5f32fd73d26d849530d15ab3459a60d296c13dee963fb2cbc5b78052d0f",
- "impliedFormat": 99
- },
- {
- "version": "930c6bd33500b62b1338a60a9a5bc3a2d57267ac49ba66d75917cb1fda319238",
- "impliedFormat": 99
- },
- {
- "version": "3612c99dd83ed479d269970994dac77984c951cd7b9a52a291051517cc09e6de",
- "impliedFormat": 99
- },
- {
- "version": "32b344c3765dc7c383516f3326c108ca84c33df44ece8ac789fce47d47ba8810",
- "impliedFormat": 99
- },
- {
- "version": "88a44d532be7c83da9c55d744c23721edd5c7401e7319207d957cc0afa36a341",
- "impliedFormat": 99
- },
- {
- "version": "ae8a68cf0adad59ea1b6e86f51588d809fca647b917bb0f92c155b6023b09e4d",
- "impliedFormat": 99
- },
- {
- "version": "606d6d2855288bbd8da341607890f38aae30cd54be6a13246b901db07dc0b041",
- "impliedFormat": 99
- },
- {
- "version": "6ae92eaaaef30fae975de604d3af31d5b00eca7f02d89fab589152df926685fd",
- "impliedFormat": 99
- },
- {
- "version": "cef2c14946e957c2c4a5d99837c6a9f730390158c08ce313fc7248baeee0cde3",
- "impliedFormat": 99
- },
- {
- "version": "f1363ec1f8aafcad89a89c7cfaf805dc709107294c32ffcca1cede004ccfbba0",
- "impliedFormat": 99
- },
- {
- "version": "9f074f00a892947b04f99252866ce01cbdad4899eab96d1ea2d090419b9d0383",
- "impliedFormat": 99
- },
- {
- "version": "94f793b66dcb1a755800090817a189e5ffa519d524f0223e6b918f9e20df92e8",
- "impliedFormat": 99
- },
- {
- "version": "b96130e763eeb5392b6501ffabcec57fe110780ffcaeeef061e7cdeca4d65960",
- "impliedFormat": 99
- },
- {
- "version": "4a0be6234a190079827c8909b3ec1949d44434ada4d898450b5fb330cc64551d",
- "impliedFormat": 99
- },
- {
- "version": "28bdaf936bc3792e20a906ce59550aa56fbe62ec1a575421202cca5bb347941c",
- "impliedFormat": 99
- },
- {
- "version": "52d0e4a995a1328cafd0c0a9441b729136bbdeea7896789c253aece60e4ec2c7",
- "impliedFormat": 99
- },
- {
- "version": "68337576317652e5fccf4c687020c06c00728c1bb0dc60a10fd8d78cc15091bc",
- "impliedFormat": 99
- },
- {
- "version": "06ef9e335bec6e052d9df473a06a08552d34dca231a5a31a04fe0e05c194e933",
- "impliedFormat": 99
- },
- {
- "version": "8fd2aa139269a583dc70ef2f34fbbf57bbfa7490136ddead980ee23a408029f5",
- "impliedFormat": 99
- },
- {
- "version": "89dba06f08c33ff2006e6ca98e01284846927a6be23a9aa7be6856a8d7242939",
- "impliedFormat": 99
- },
- {
- "version": "8e551cda9ceaeac0ed69fa73b16de6ec53b41a07309b2af1922425132e90ca8f",
- "impliedFormat": 99
- },
- {
- "version": "706b3fd6ff575b15077a97851686c5a8d4f563f096050a397c5fb15cd9ce0b78",
- "impliedFormat": 99
- },
- {
- "version": "2ca97aeaca4ac5be7b3815c3468c86f512e3c8504ab6ad0599e418d2feef1b5c",
- "impliedFormat": 99
- },
- {
- "version": "85a60f3f0491c3c835a7679464349048513bb8e4d61fe865a9b1833229ebc9e9",
- "impliedFormat": 99
- },
- {
- "version": "7194c45f80a22684e43fea3a9aeaeb69845361d8039d6f013f50230c78792f21",
- "impliedFormat": 99
- },
- {
- "version": "4f81fb228ca91355a6210787a2db9fb9ebeb7b45fda1b577af6b2da1cc40702a",
- "impliedFormat": 99
- },
- {
- "version": "57b1def459ec822d42eba31a62d69cc6d0329a88d45331ec987c6ec60d46ed82",
- "impliedFormat": 99
- },
- {
- "version": "2ae910ab09cdf74168412a94bdb35966a1f62fe396e478cd20a734c98a360782",
- "impliedFormat": 99
- },
- {
- "version": "2b5177892e7b27a3597ecb4769c9e048dff0610ac1a5312202f2ba595f2b09d2",
- "impliedFormat": 99
- },
- {
- "version": "dffbd270006e6d1eb7e54019953f568f745fbad1f286e6b6f9700c713dd9d71d",
- "impliedFormat": 99
- },
- {
- "version": "3209d42dcb86b35a13c127fc39981a644b61a1fb0e59524038d0f3bd7fe25768",
- "impliedFormat": 99
- },
- {
- "version": "a165816fd744d55bb0b17e7851eb07c3e372081f0de12b37ab18b5241bb8777a",
- "impliedFormat": 99
- },
- {
- "version": "e8da9d04f0bb044998c238d339d6fce0afbd773827eb0921fa5b11b804740242",
- "impliedFormat": 99
- },
- {
- "version": "415295fdda8d3f2630dcba09d2c6ac1ad737e9b5c8e91880514029953eb629dd",
- "impliedFormat": 99
- },
- {
- "version": "57a75ba33c112c59a783a2e7595294b86c6ab4a5fcc65a537ff9356a3b23abc2",
- "impliedFormat": 99
- },
- {
- "version": "f846b7cc91e29c0ddd12b8d817abc81f4e3ba1c37dceaaacc82a896031a771a1",
- "impliedFormat": 99
- },
- {
- "version": "070062b01eed7a9d7c7763eb25d98c6581182edcd39bfe6d84aa64ffb9b980be",
- "impliedFormat": 99
- },
- {
- "version": "128cd80e8980123fd5174b2ab5c1295add61e51a5659a1e8d4fcfb82884edbda",
- "impliedFormat": 99
- },
- {
- "version": "fa6df0af2818d39dcccafa76a485baf0944292ecaf7acc623acdc5832149f796",
- "impliedFormat": 99
- },
- {
- "version": "bf2f4914e8b356a9907f7b347f984d4cb8efd2fd359d443793c52d55d9f2abb6",
- "impliedFormat": 99
- },
- {
- "version": "f8d6e2784bb518d523898f614b8c0ae55341968c982d4617f08867b5d11cf354",
- "impliedFormat": 99
- },
- {
- "version": "b47f1dc9eccc82752263ec4d70ff7464f0412469102bd22537a5005ec298aa68",
- "impliedFormat": 99
- },
- {
- "version": "7b75a17e8586b0d83e4d3732ffe41a10812873a89eafec329b879988537fa83e",
- "impliedFormat": 99
- },
- {
- "version": "768989d7bcc666427495223f2e78c1e5b541e16b6542e64abb92d54f0f37b7cb",
- "impliedFormat": 99
- },
- {
- "version": "a171b8cb18c8c2e92ed5c39ca1ed713b803722352829b948e3c84cd463b2b617",
- "impliedFormat": 99
- },
- {
- "version": "a2c7210b0f2be82aed4cdfc51ca084b3ac017a2d2e9baf5b519732fafb6feff7",
- "impliedFormat": 99
- },
- {
- "version": "f10d4445bd7db9939402b239776287476b42d1ac4bc8e6b80a7ab7013b9c9981",
- "impliedFormat": 99
- },
- {
- "version": "4df8dc56ba9be273bee231caa239d04fb28293b92c109c32f4fc027f65e5aca8",
- "impliedFormat": 99
- },
- {
- "version": "7458750d4c17b31f538c9faa569a75ece0bad5ff89be08b54aa7ebf485ec1dcb",
- "impliedFormat": 99
- },
- {
- "version": "2dc42bdd932c6f6c33203ef3adf9a3c3f9c92e55119967c4b8eca75048527ec8",
- "impliedFormat": 99
- },
- {
- "version": "a8a30971ee06a579685d25fa7135d8226f1faf0fa6571a3dadeceacb9291f2ed",
- "impliedFormat": 99
- },
- {
- "version": "e2aafc728d8f60a248d640eb447028edcf9b80d9d99f50c465b06011d885bd6a",
- "impliedFormat": 99
- },
- {
- "version": "3015667b8858f86fee317668c4572b9bddc3b14df96d23383507d618edcdc577",
- "impliedFormat": 99
- },
- {
- "version": "f46d9c50782b5c3d0d0a1114188c704288224e91dec2d078fb50180621d58c1d",
- "impliedFormat": 99
- },
- {
- "version": "edf1398a29effd40893b4e850271ea22bdeb0d3d6a901eb08ad2516f13b8bd05",
- "impliedFormat": 99
- },
- {
- "version": "73421be7cc17957418f22a7be68c4e6b8d818f1597585bb3020aeb6ef7006f9c",
- "impliedFormat": 99
- },
- {
- "version": "d80c3265f6b0717428e089d897e503d19debb1f5348dc5d286f3a850e93d5061",
- "impliedFormat": 99
- },
- {
- "version": "5bb81a9aa2387411321b9f1f5c021b6303428634bee563c9a8f1cd388b1be443",
- "impliedFormat": 99
- },
- {
- "version": "30522d15d4f6aadebfabfa0d23ad5adf467335a6ef7bc8508db50e8dc388b3fa",
- "impliedFormat": 99
- },
- {
- "version": "9c160cf18020aec7bd1deac84fb3bda1a03c590ceae2bc5c150ab037dd226886",
- "impliedFormat": 99
- },
- {
- "version": "4b966b4f48c930b166a0058b0d8aadcf0b111135b99a6297aaaad1528c42ed97",
- "impliedFormat": 99
- },
- {
- "version": "113fd627693c4050016f9da31114c196ed3e55d1a94ea023bd6bc829dca4c550",
- "impliedFormat": 99
- },
- {
- "version": "bd90ad1350bb360f83082e98021e7cfbeb6bbc75565b76c70bd2ebf9ba936a23",
- "impliedFormat": 99
- },
- {
- "version": "c2ef4463c7d697365ca578709c801077009dd3caef689c5dba0a8521969a95eb",
- "impliedFormat": 99
- },
- {
- "version": "15b34f0a2bc3d983723e394aa54333b2f4cd41e391a5e68aa5bb782351e359fe",
- "impliedFormat": 99
- },
- {
- "version": "ac5b9f2d5cbd50ec86d5856917c5eb5ab6fc7152fb182598c9b9fc2bf458b8d4",
- "impliedFormat": 99
- },
- {
- "version": "1d44832eaee499d791379ab65c32f9b72ed807613b72d7efe0e4dabec955d21b",
- "impliedFormat": 99
- },
- {
- "version": "db17327ad596824321aefdfa22cc1d45d9fe3192fc8fefe4ad17dafe93c739c3",
- "impliedFormat": 99
- },
- {
- "version": "0819b4f64eb1b87f884d52895505d8e913a3f84e1eb164bdf96ea2b50354e7d6",
- "impliedFormat": 99
- },
- {
- "version": "60e6c7ed01a617453bb91682fe4958e698292ec3ab2e8473a3123c3b6daf0676",
- "impliedFormat": 99
- },
- {
- "version": "8d426454bc1da7cdd3408c926c58228bce4dcc30c8a962bb0141cc13b1d81018",
- "impliedFormat": 99
- },
- {
- "version": "f04c3edcb4544775f079ade30ad601d9e50aef13a19fcc0325bb1d33fadc3f58",
- "impliedFormat": 99
- },
- {
- "version": "025c17c748488159fcafcd87b95b08a029ecdbd25000f598804bdd7788b1b6f6",
- "impliedFormat": 99
- },
- {
- "version": "4c22848e2508e85af2c9f8e895d5ed64d92e1b02711f45c751e709086e4da919",
- "impliedFormat": 99
- },
- {
- "version": "7b928049f4bb3f15bca40fc7d57ff661cdb6c24a7b235fc8fa083f4dc863ede3",
- "impliedFormat": 99
- },
- {
- "version": "2693d3e219283d2bb133924f0bdfd8aed628ff62b3857a6de107282a4c145dd9",
- "impliedFormat": 99
- },
- {
- "version": "d1a2690ce0378c3d377e7bd07614bb3c7e2bec52dd7f660198475a550dc13cc6",
- "impliedFormat": 99
- },
- {
- "version": "46b171ad2ab9b534979ea5086fbe669948fb8e31eeb2b7ad3d45d6a9ded78748",
- "impliedFormat": 99
- },
- {
- "version": "2e73ce1cc735fa0c03af07b0dd40b90bfc7bd5cc11d6271a9a965f0403cf69d9",
- "impliedFormat": 99
- },
- {
- "version": "753b3efbdc07a3d9993a8fff8295f7b4f95663e308ea85efc7a0c1ffd2ef116f",
- "impliedFormat": 99
- },
- {
- "version": "b08d54872af7b7df6fa9533cfe07b2e7aa2f50f5a84f172d292d53c75a54f8cc",
- "impliedFormat": 99
- },
- {
- "version": "e9e0b502312db594634de99abc4a0becaa67c69faf5531f66d7495e0bd5f5e0b",
- "impliedFormat": 99
- },
- {
- "version": "427bcc746c725d19ef8e041226bf8a60e20acc421e08cc723b0239b599a97482",
- "impliedFormat": 99
- },
- {
- "version": "bd012f6cfbb374e40d238c255eacd604243d1bf5bb065e216bd72bbb57aa2182",
- "impliedFormat": 99
- },
- {
- "version": "29ea832df7ac71578ed701393fb6e3e158cc643dfd1d3cc80b41a4c289e86524",
- "impliedFormat": 99
- },
- {
- "version": "df7600c69bc9611d77639d13248b087203b232e2acba76b3b4cdaa4cbc25d0e4",
- "impliedFormat": 99
- },
- {
- "version": "8be849acfdb4ade6d987865b17febdda1b9a6e320e87c746deec0e555121567b",
- "impliedFormat": 99
- },
- {
- "version": "cdc0b51f289385c35e0befb4db66c36821431bc4275369d51b2e2d3f3652049d",
- "impliedFormat": 99
- },
- {
- "version": "c79752b70dcb13137ee7bf01e6add89298c15e0d773d4c6faf56c1caa5d997bb",
- "impliedFormat": 99
- },
- {
- "version": "7e44cb4862e072b762134c46b95bc3e86124439931ae85159e845d0ca2166bb0",
- "impliedFormat": 99
- },
- {
- "version": "eb76bb4ca060b378e6bab61d7dd24e2cd7ca61a5c448e1bb327c63baa96ea6c3",
- "impliedFormat": 99
- },
- {
- "version": "9376146c27f8e0cace730fbf789648da353877c78e990e173391befa191e70ed",
- "impliedFormat": 99
- },
- {
- "version": "c7f6096a62192ee567f7de6cba63e1a19e32e6cf51e11725126446ae6ffa3d31",
- "impliedFormat": 99
- },
- {
- "version": "e8682dbf2be4ee767cc14576f3e461a8b8c2b1e59a7f787e89d22d1cb6876377",
- "impliedFormat": 99
- },
- {
- "version": "f9791fdca540b14eb2d745e95ce1904716f1f81f7b8955bccc96e4a0501fba00",
- "impliedFormat": 99
- },
- {
- "version": "2673620ee9cb5e62777ceeea4e84f0c53a2bea44d74f103ece49bfb7efe95aec",
- "impliedFormat": 99
- },
- {
- "version": "525f82081df6786aee16931dbb571de908e7235f3d0e55a774e71eb855cd4ae3",
- "impliedFormat": 99
- },
- {
- "version": "87fed3456418e122f03bde7afa0c512c55bfcd2ba6d6305385dd6c5e3c71ff6d",
- "impliedFormat": 99
- },
- {
- "version": "2ea4160e3867a56867f27637c7ecc3ab01a1d7534f892493582af82b24bff97f",
- "impliedFormat": 99
- },
- {
- "version": "dc9875d80504e711826648ca27882ffc145a136db37031e6f250b31fd357b8f0",
- "impliedFormat": 99
- },
- {
- "version": "e73198b060fba5d556b7b411073ac48383a539227522afbe5a3a9156edea2fdf",
- "impliedFormat": 99
- },
- {
- "version": "bd40604dce7f9329f800afebad8601fe708f32012c464fcab62c68cbf2fd39d7",
- "impliedFormat": 99
- },
- {
- "version": "b95561e98ee78519d7c2e98f86da7a9342b936b0e52cbc42894a517c38682f4b",
- "impliedFormat": 99
- },
- {
- "version": "91a9ebdd32734499d34fc812087ff1f59a70d2c6185981f229fcc2679a33b8e8",
- "impliedFormat": 99
- },
- {
- "version": "c0ff7336db1bb822f6e38dd91d58ba77f107309f453e8d5ed85d7bccaaa7863e",
- "impliedFormat": 99
- },
- {
- "version": "c42858690ca5e76a83277a2234057c126033a927b1419228f98011caf9332e22",
- "impliedFormat": 99
- },
- {
- "version": "b8b9141324d97526669e3b9c2914d5707c5fc2d1f4842d76f74c902b7a03549e",
- "impliedFormat": 99
- },
- {
- "version": "80b6ab00ab7bd0bfdebe92d387ca33446a7102ec4f5ae67a7aa392311f0647ab",
- "impliedFormat": 99
- },
- {
- "version": "3c9e08a6171b77f9409f6fbeee92cc7cec90295165305f4749c15b66984094b7",
- "impliedFormat": 99
- },
- {
- "version": "d5f52fef25eebd772b28fe3acd0ef103cb3d338c73fd23dae81235aa3d3216f3",
- "impliedFormat": 99
- },
- {
- "version": "a1d51984613f1b5faef052fb04f81743b8209fce70f8d1a1d73f2fb9be6d6912",
- "impliedFormat": 99
- },
- {
- "version": "e313dde308495525f7e18a1e3a62d49407e562d389661bff3def7aa6718547b4",
- "impliedFormat": 99
- },
- {
- "version": "b6fc849fefcf2d80c9f877a4b609da4e913a1b960adf9b8ee78dcebf2ccb1a18",
- "impliedFormat": 99
- },
- {
- "version": "ad93293f86fb21b8941415ebc7785f728d4fe8389f855f185dbc77dba548fe53",
- "impliedFormat": 99
- },
- {
- "version": "d582707b4fbb409fd9e62253e66631a521a79e57ec8a79ba205e6364877d3c0f",
- "impliedFormat": 99
- },
- {
- "version": "a1d1ddfa2b0d806b2778b931ef3221e5a16cf993005eed4b74b2561d7020864f",
- "impliedFormat": 99
- },
- {
- "version": "c71b08b656ec67568f366241678b35569c65fe7df5b1b1d450bee7e9b06f8ff5",
- "impliedFormat": 99
- },
- {
- "version": "4866caa6f66072a9029b8081a0b0614ddff5995126486d8b96414a8d2a22285c",
- "impliedFormat": 99
- },
- {
- "version": "6d37cb963c5288b5225af7fa9d072c429920718fa87d8352f72b5b80978aaf0b",
- "impliedFormat": 99
- },
- {
- "version": "e429692aefa26a42888b1e63959688bc0c75ef34fd3eb7c246f32b8872aeeb31",
- "impliedFormat": 99
- },
- {
- "version": "d97cf67eb2772d68fbc0ba44ac3c6d6f4d5ae620d8980084690acd049be0cc28",
- "impliedFormat": 99
- },
- {
- "version": "79182cb8300ae458110b9014011f3bce7a1f5983223128b1635f429ca4962b81",
- "impliedFormat": 99
- },
- {
- "version": "9bb8a03e0015254999c1e96830242fa3764856fd14958d3b097149f4491b1fa6",
- "impliedFormat": 99
- },
- {
- "version": "21655de6cf9d8df920b2dd8aaa5d6b4f88630c5c6f4df66947f4a2c4e59f7c79",
- "impliedFormat": 99
- },
- {
- "version": "7db915f07d1dec500718675edd2881ccd140132b7954eecb1bbc4313597ab4b0",
- "impliedFormat": 99
- },
- {
- "version": "7981d90e43327e29911a56c198f090dd816c5f2a15335c294c3f010f02b8f01b",
- "impliedFormat": 99
- },
- {
- "version": "5819a2787a272ae1b20f1cc8c81d98ddf09b163ad24cd1318719113a61205970",
- "impliedFormat": 99
- },
- {
- "version": "7f45ae699788ef0d76c10eaf0ed2fd3843ae12514355842c7ec6d5403925ace1",
- "impliedFormat": 99
- },
- {
- "version": "c565deb632ba928f5ca6e1ad8fea0410a7695b6fabbd1132618f0d329cda0f50",
- "impliedFormat": 99
- },
- {
- "version": "111346e95c27db969bebdf620d68008685571fb01e07c4f9c722f600f5fdda3e",
- "impliedFormat": 99
- },
- {
- "version": "a482905e0aed325e2f3cfd61de96fbf7c11e068e79c65f1974948d8962b85c2e",
- "impliedFormat": 99
- },
- {
- "version": "21ba214033e94c069266f184870db915957890ba80ee669cdca6f2c2346644d7",
- "impliedFormat": 99
- },
- {
- "version": "8dd2b29d482fb6746cfdcff57c1441d105f41ee91daaf346e1d11fd47650c783",
- "impliedFormat": 99
- },
- {
- "version": "4b3035f436869dc5da9815cb51a371a972fe31e2515c5dc594b3d74ddb701bee",
- "impliedFormat": 99
- },
- {
- "version": "13e18664181a3e017dcd8d6da49baf9d039092717810b0c7ca28fa50e3c8734f",
- "impliedFormat": 99
- },
- {
- "version": "8d2a9a4b17120c5c34ff1016a92b33b90e72f9430d8f58f16504beac3f5eba81",
- "impliedFormat": 99
- },
- {
- "version": "580307f6deb46c1f0045f9e74281cc285d2e7e39c96b378e31c251ba09521c9b",
- "impliedFormat": 99
- },
- {
- "version": "5b800f6a5c739360992423332074038edd736bc74b5565373448162289e933af",
- "impliedFormat": 99
- },
- {
- "version": "b78a24b52dea49fa0b8651db08e733debc94c4289700d1ebc89601972daabcbe",
- "impliedFormat": 99
- },
- {
- "version": "e1ce38cfb5b10848859e3c4dfbe9c42521967c4e91042e1f3c40c59c17432dda",
- "impliedFormat": 99
- },
- {
- "version": "a6835ba7439febe71eb3106bb4d26584794dc0f4855cd4c2af3ac2c9f5b25377",
- "impliedFormat": 99
- },
- {
- "version": "85948b36914a06d93bd22ee8580794b8e8486fcd814c301ffbbdce2371dea86d",
- "impliedFormat": 99
- },
- {
- "version": "ec455fb31d11dc3782f7c7bc81bc1ffee91e360b66ee6a55ee8135c896a9b0cd",
- "impliedFormat": 99
- },
- {
- "version": "d8f1e5f8e2f59c9ace3deedff9f1d5fd9aea1fd6abea384dde6f9ca132b5fe79",
- "impliedFormat": 99
- },
- {
- "version": "7022da6a9c58eee4317bc9ed61af467e92ade72a59f9e3785ab7fe8badcb9a35",
- "impliedFormat": 99
- },
- {
- "version": "5692c147dca7d616c0c8f2e8c533515c94457b7232fa255970102aebebaf3fc2",
- "impliedFormat": 99
- },
- {
- "version": "e75a927cc44a75ceadbe2e95ed18cf0b9ba904e14d37c1e2bd24b17b9ae7843b",
- "impliedFormat": 99
- },
- {
- "version": "a97e0fea0ab50bceccc582e21eab30bdcfb4336df84ba51ac633fc1331ad6e90",
- "impliedFormat": 99
- },
- {
- "version": "2ae624226a9bcb73293716bf1054b244938ba91eb3926f4cbc81157e3252513e",
- "impliedFormat": 99
- },
- {
- "version": "59ec53aae4cb5a602660390aab1cbddfc30a8ade8827395ee2e3b30e579377a5",
- "impliedFormat": 99
- },
- {
- "version": "2dca9b2566990a7508270b19ff7a36bce81d829509214a4ac87564ae2bb386fd",
- "impliedFormat": 99
- },
- {
- "version": "cd0c217d59afc04deccdffbe56c75fcfd86170e18252990c7bd8c67725e07132",
- "impliedFormat": 99
- },
- {
- "version": "9737c5818211975651a00a350f9dd836dd13c4de1fd8e5557e208bcecf5a6cea",
- "impliedFormat": 99
- },
- {
- "version": "2d0a4e661dac6ba0e8b6b8e0672d62e5dafea155223d185d9a9298acf2d14665",
- "impliedFormat": 99
- },
- {
- "version": "d6828477d01712f5841330b674ce2f6a76ae298a926f6fdbe67ba7660ec3ace3",
- "impliedFormat": 99
- },
- {
- "version": "347290356c13d55723dd8a866f9f1c85c463b2d00463a72ad072a55600fc8616",
- "impliedFormat": 99
- },
- {
- "version": "642899659eb387a4ced2f61d5d6a2fd20d792b68a3ee4321c446e014da5bf9e1",
- "impliedFormat": 99
- },
- {
- "version": "8fc9c4434476710427388af587998bac7a347cc68329b7da3a57fb11b72d12f3",
- "impliedFormat": 99
- },
- {
- "version": "d64fd4bea85624039b7b0441454419bbedd4501b553395a71bcbf8656f8df237",
- "impliedFormat": 99
- },
- {
- "version": "016e62f3268bdd7223c7ae9b9dc48acad3703ab46d83551b40c448bf24988426",
- "impliedFormat": 99
- },
- {
- "version": "ec3602337c24adb3702d9057f07a2b8751783059303663316736830011d4b474",
- "impliedFormat": 99
- },
- {
- "version": "c8a2414eda9226c6c50af454a9ea1536c176e58432e755ba5fcb229f996d9133",
- "impliedFormat": 99
- },
- {
- "version": "d14328f8d67ccb14c3cff684f2232433977c7eea206444561fa2f379702408eb",
- "impliedFormat": 99
- },
- {
- "version": "6c924e274aa22a4e099fc378a61cadbc90c4fbea075cd1fd577e2a0e9afaf182",
- "impliedFormat": 99
- },
- {
- "version": "393d1b40f1541ea9861b860564c623e3a40e3d959147382af1f49eed8b84be43",
- "impliedFormat": 99
- },
- {
- "version": "7ffda1567fdd3b535ef60e5b8cbab6bb2d11f8fc998e88060c30e595bf61452f",
- "impliedFormat": 99
- },
- {
- "version": "164af37e5cde8d2d830b5a5f2aaa6be547b8004e4e98b33fd6977581f8be4d4a",
- "impliedFormat": 99
- },
- {
- "version": "3f677da0a7ddc370dcab43603da691955a7e0479dac12086696355af9741b5ac",
- "impliedFormat": 99
- },
- {
- "version": "e0ace1698102560c3b8090c2dd1f63ecd0a2b8601b4cb4b16df8642793fd036f",
- "impliedFormat": 99
- },
- {
- "version": "cfb10af0ff7ca1449f9cfe9ab9ea22717f78e7b7d1ca41a88095c584316a4515",
- "impliedFormat": 99
- },
- {
- "version": "e038fcb79d0716bd68af2421b6ed71d35f665b9c6f54948688366284e264c1bd",
- "impliedFormat": 99
- },
- {
- "version": "9052804c912704d31ad2107e130ceca04774b52abaf25735b0b3bdea8e1494b2",
- "impliedFormat": 99
- },
- {
- "version": "9c31f13604ee809712dd2c1e5c78283ec52cdad5b8713f5664c554b8d772e71b",
- "impliedFormat": 99
- },
- "ec898f83ef5fcc47bc332c113a77ba89c12f9ced0d27ec15a2a01f7f42067ea6",
- {
- "version": "bb703864a1bc9ca5ac3589ffd83785f6dc86f7f6c485c97d7ffd53438777cb9e",
- "impliedFormat": 1
- },
- "ee487439f7946c510aee90e571a926a0692c4996f563e134b39266ae2aaa6984",
- "7836a6339a3e3794cec8ded8e146264ce62c9e885139486cdd80a403a121c14b",
- "545bc2f1778a9388f3ee1ac904f043e18cc2d4cea56b062423a6967bc4ac1694",
- {
- "version": "e7441be68f390975c6155c805cea8f54cc1b7f3656b6b9440ecbbbd7753499e6",
- "impliedFormat": 99
- },
- "4be7765c14449bb7885f7a79e2b6b8b635138d56bb52d9f221f75263417d6428",
- "ef8c41cd5beef2fed32d6f7e1995d94e3330dd61f892c3042f266f6692df3a40",
- "36790362365485fc1916026197f00e5a705a7ef6d61f75ed8f4773d9c4003dfb",
- "a29dba1b765b22b9a8fa48ca9a4b8da3f2f89be3ea7641b1a416b485d3e8d2c3",
- {
- "version": "91b4ce96f6ad631a0a6920eb0ab928159ff01a439ae0e266ecdc9ea83126a195",
- "impliedFormat": 1
- },
- {
- "version": "88efe27bebddb62da9655a9f093e0c27719647e96747f16650489dc9671075d6",
- "impliedFormat": 1
- },
- {
- "version": "e348f128032c4807ad9359a1fff29fcbc5f551c81be807bfa86db5a45649b7ba",
- "impliedFormat": 1
- },
- {
- "version": "8ee6b07974528da39b7835556e12dd3198c0a13e4a9de321217cd2044f3de22e",
- "impliedFormat": 1
- },
- {
- "version": "5a38140438107de65fa204b3705b83529e225e1b01c68c73fb7fa4e88e5ddfa3",
- "impliedFormat": 1
- },
- {
- "version": "5f12132800d430adbe59b49c2c0354d85a71ada7d756e34250a655baa8ad4ae5",
- "impliedFormat": 1
- },
- {
- "version": "1996d1cd7d585a8359a35878f67abdd73cc35b1f675c9c6b147b202fdd8dfc3f",
- "impliedFormat": 1
- },
- {
- "version": "b16e757e4c35434065120a2b3bf13a518fc9e621dc9c2ed668f91635a9dc4e75",
- "impliedFormat": 1
- },
- {
- "version": "0b7ba8784d5de5560adeb015ca6d22d8a9d0920dcb16dd627b40010763f26d85",
- "impliedFormat": 1
- },
- {
- "version": "0377607549f9d921e43421851de61264443471afb1f0e86b847872e99bbe3ba0",
- "impliedFormat": 1
- },
- {
- "version": "4374cefdde5c6e9bad52b0436e887b8325b8f407c12035194ad02c28f1553a3a",
- "impliedFormat": 1
- },
- {
- "version": "9b70cad270593f676aecfe4d1611dc766464f0b8138527b0ebbf1ff773578d69",
- "impliedFormat": 1
- },
- {
- "version": "b4f85bfb7e831703ac81737361842f1ae4d924b42c5d1af2bff93cca521de4d1",
- "impliedFormat": 1
- },
- {
- "version": "5fea76008a2d537ca09d569ffae4e08b991b4a5ff90e9f4783bc983584454ede",
- "impliedFormat": 1
- },
- {
- "version": "21575cdeaca6a2c2a0beb8c2ecbc981d9deb95f879f82dc7d6e325fe8737b5ba",
- "impliedFormat": 1
- },
- {
- "version": "40ec58f0fadd0b3981b3d383e1c12fa0680115ae9f018387fc2cfc0bbcf23204",
- "impliedFormat": 1
- },
- {
- "version": "849b9e7283b7309a4556c9b90bb8e2dfc27751f157798065bbc513dcddb09a8c",
- "impliedFormat": 1
- },
- {
- "version": "10e109212c7be8a9f66e988e5d6c2a8900c9d14bf6beadf5fa70d32ada3425cf",
- "impliedFormat": 1
- },
- {
- "version": "2b821aeb31e690092f8eae671dd961a9d0fd598ff4883ce0a600c90e9e8fa716",
- "impliedFormat": 1
- },
- {
- "version": "26602933b613e4df3868a6c82e14fffa2393a08531cb333ed27b151923462981",
- "impliedFormat": 1
- },
- {
- "version": "f57a588d8f6b3ce5c8b494f2dc759a8885eaee18e80a4952df47de45403fedbe",
- "impliedFormat": 1
- },
- {
- "version": "34735727b3fe7a0ed0651a0f88d06449163d1989a2b2de7f047473adc7c1c383",
- "impliedFormat": 1
- },
- {
- "version": "a5b13abc88ab3186e713c445e59e2f6eee20c6167943517bc2f56985d89b8c55",
- "impliedFormat": 1
- },
- {
- "version": "3844b45a774bafe226260cf0772376dce72121ebb801d03902c70a7f11da832b",
- "impliedFormat": 1
- },
- {
- "version": "7ae65fe95b18205e241e6695cb2c61c0828d660aca7d08f68781b439a800e6b8",
- "impliedFormat": 1
- },
- {
- "version": "c2c8c166199d3a7bd093152437d1f6399d05e458a9ca9364456feecba920cda4",
- "impliedFormat": 1
- },
- {
- "version": "369b7270eeeb37982203b2cb18c7302947b89bf5818c1d3d2e95a0418f02b74e",
- "impliedFormat": 1
- },
- {
- "version": "94f95d223e2783b0aef4d15d7f6990a6a550fe17d099c501395f690337f7105e",
- "impliedFormat": 1
- },
- {
- "version": "039bd8d1e0d151570b66e75ee152877fb0e2f42eca43718632ac195e6884be34",
- "impliedFormat": 1
- },
- {
- "version": "a6ce2397f96bdc64269d1ccb6fc8020a7a62f63e068c14cba8be6c3689816228",
- "impliedFormat": 1
- },
- {
- "version": "5f200be1d6585239093ed367e7a77a5400c76c80a00309ba9b4fc2bb5add9899",
- "impliedFormat": 1
- },
- "48f68dbf86320c00b7ae14419a041dfccf487873862976a5798944e1c151de28",
- "3634c42485b97e10d69b2ecf2f76bfbb57321ff7c21526f8623b86347a50b799",
- {
- "version": "0bae91f96a7bd8fbfce9143b6d00f643e551f901d6ab647cae5f499774f27648",
- "impliedFormat": 99
- },
- "9c347d2e43cdc3735cf9442911551e693d255309aa5096e749ad81fe93c2e008",
- "b98729fdca40c90c35ad0a40ff347db5c0978fea906734165cc07f24038e8987",
- "1351c5de85e852c7d76e61da8c88e45ba4e9702db3e16ca7e8551cd695733038",
- {
- "version": "b843496b17a2bbd79c83809c73fd9c59fab53d3e361e04e52e2d489524eea764",
- "impliedFormat": 1
- },
- "0afc3a1b6895b25242bff25639bcb2f571b58412f0c21ebc6a34f399eea2edd4",
- "afdf385f625abefb53b45a084801a903f24e5b80463831cff09dbb69c9694489",
- "a15cb518fd8432bbdeadee6055612deb8526af56b3ad289e837d473402b48296",
- "564feac3adc5230143f3fb9215e32020d1b4e1d46dc95e32760d5f0523b68445",
- "0437c634a2ef34f5c6b2f24237767398741915e9d21e709b2997e5064144c08c",
- "8c79da4eeafe6f8f0a6497bf1c78cacd86089acb24c545652dff13b6954c0d30",
- "639f94d3cf05fdcd46b57e78a08db2f129a31cded4ce6ace02bffeb591462305",
- "f69cdafb276ea3ccae23019833be1d0b71a0a7fde91e0342827ff87d564ba570",
- "dec2aa83e12d469d263687dd4c0c057d92725ab34980fd2b9182bc49924a0bbb",
- "6a335613be60cfdec5f899cb7c98007efba56dad7ec407bf8632cec4984b42f8",
- {
- "version": "6e4e0571da6787901793b3424ad6d4f3af17e133756350418ff06fec1fd740ba",
- "impliedFormat": 99
- },
- "5831ebdf1208502dd05f90c32f42502bb26e15b6961c5c1597e5560a4519bb4a",
- "21436d726207cd9b449d396f4247693033aec12e815b8ea95747044c289b1de7",
- "83cb253963b268cd2ad25217d5a90781e0e7d69167dcc96d2dbf7325e3705852",
- "0d9c4f9c9d061ca4b7213a2d5794ed23e7f5d160c553a5784b345e9f4f6b4ab5",
- "993e2b77accc3bac7482b83971c86657d70449a77c5185d2fc990d68b67357e6",
- "8308eeaa9fa215a082a0bb86da50c2255cf7ddb692d75a2f20312a53a8dae407",
- "7522c40c341060ead4fa689c369170ca08393d50ab3a1b2d33cca27dbca663c0",
- "ad50f00600024bd924e8065bbee0af25930a4ee157a499af4976b435522c042c",
- "36dd4cc1fa7247c28a7e784ecffec7f33ba12c2f1ef9b41f729c251f2f47ecb9",
- "0ca61e8b1b9e77e107f454e9b56a3acbba83ba2536e20e92613deba351cf1c83",
- "4374e37ee7783045f80c7d1d1cd1ae197a5ffde2a8be945782ea542f2cdcbc77",
- "22fbb25b529af8fa3b79cabc63953d516e8b93c2add02a6068fe981d2fcfa674",
- "2a1c8db0a32be18629a78dc6a9e723cf679ca37401bff5f02acec286638544e4",
- "4fa856fcdd6a51c36fcd73936440cf6475c371045306cd8320840842cce70c40",
- "1c26aa5b672d2445ea7e3bab054e8b43646a873e0620ca06ff49d178064ea26f",
- {
- "version": "6c05d0fcee91437571513c404e62396ee798ff37a2d8bef2104accdc79deb9c0",
- "impliedFormat": 1
- },
- "334aaea0825b30a6800492d87b60c626f5c727afbe1a3fbb3a0b0f7fddeaff2e",
- {
- "version": "6aa2859da46f726a22040725e684ea964d7469a6b26f1c0a6634bb65e79062b0",
- "impliedFormat": 99
- },
- "3a36847ae7d8aefdafa8121db60110079cb2c0988f8eea4da52cc51647831455",
- "16227338bb3238de48a072ad6c3c3b70301aa07cb8e4eb2b1a820f5d92bedacd",
- "94fe1d4c683b5741eaa80e560cf5639ff256df953dfa0bf422707307c64c617a",
- "f7252c049fd5c34baf2eee07d0912e1020305e5dbbd4309d11ae48f91a1a06bf",
- "c964b9c32f581d676ce088c5db4a20c22954484d603e026533c56dfb9b974ca1",
- "4fe0ea370ad1c58f5c9c9942115f20737fefcfd4a7adf7514d73156b4455efd1",
- "3d49073fa197347bb741ea058e8ebc4e43876e717aa5c500ddd02a4168e7b184",
- "f28ef8758fd0f99ba378b95abbb780653f9996bbc6a04bd93a2185dfed43c3cb",
- {
- "version": "b8e049e11e28043c79dab4129c374bdf419fd850883dea6728115ee338504537",
- "impliedFormat": 99
- },
- {
- "version": "56c7652b9e41b2acf8fc249f13bbf293f2fd5d20a6826a779fb13f2b41310285",
- "impliedFormat": 99
- },
- {
- "version": "c3a167d97f273863ebaab83d2542d6f65ad441c1ecd503941380ade6e1917d5c",
- "impliedFormat": 99
- },
- {
- "version": "7850d6321a180d766be2135754e02dad1abdf4c838c68af9a209bd1f58b65f4f",
- "impliedFormat": 99
- },
- {
- "version": "27f7e8c28ea53d110d4a4e3a365736dc2cdf2c46e3aa02e48c5ec22207123b9d",
- "impliedFormat": 99
- },
- {
- "version": "c5ee44dca52898ad7262cadc354f5e6f434a007c2d904a53ecfb4ee0e419b403",
- "impliedFormat": 99
- },
- {
- "version": "cb44dd6fd99ade30c70496a3fa535590aed5f2bb64ba7bc92aa34156c10c0f25",
- "impliedFormat": 99
- },
- {
- "version": "1dd1b5dbac5619a8cbec1534db4912fb630347d360083750dad29cf438a94118",
- "impliedFormat": 99
- },
- {
- "version": "0a7e9d7d7549e76e20b61d5ffeeedda9fc221db143c08980e9c55cf9909722cd",
- "impliedFormat": 99
- },
- {
- "version": "c350a902358c95ed32df253305e044aa109e96adfd66528c5d03fe75a45be7f7",
- "impliedFormat": 99
- },
- {
- "version": "553b96a938c932097c0416f529371833994889510c185a8b45630420428c1add",
- "impliedFormat": 99
- },
- {
- "version": "ed6fd0951de157501bfb5772742b7dddac9ca8e53f1ab201513af8c91f92de66",
- "impliedFormat": 99
- },
- {
- "version": "2ad00018e95065d0b14bbd4dcc4ececec08d104860651668452f5c6305692b41",
- "impliedFormat": 99
- },
- {
- "version": "c4dd27a0c3897b8f1b7082f70d70f38231f0e0973813680c8ca08ddf0e7d16c1",
- "impliedFormat": 99
- },
- {
- "version": "b23fad2190be146426a7de0fa403e24fccbc9c985d49d22f8b9f39803db47699",
- "impliedFormat": 99
- },
- {
- "version": "6ad179a688d2cc17c4450ff68d7736487513d84de3bcf56012be7695193abe0c",
- "impliedFormat": 99
- },
- {
- "version": "895d89df016d846222abdd633b1f6e3a7f4c820f56901dbda853916d302c16f2",
- "impliedFormat": 99
- },
- {
- "version": "eac382beb3caab54de8539a7a012aebca873032987acca9a6e60b65b8c5139bd",
- "impliedFormat": 99
- },
- {
- "version": "ab59a5f7526fc8309ee5a5a28e3e358f6ed457bdb599dd6542becb706c0419dc",
- "impliedFormat": 99
- },
- {
- "version": "3079f20851804cfff72cd1b8ca93d8c7a14ea60465176c56dc7ae713498d8c7d",
- "impliedFormat": 99
- },
- {
- "version": "986fc8888567348fbc70abaaa8e41f58f2b0fbcbe0d46f556389cd9750a7e406",
- "impliedFormat": 99
- },
- {
- "version": "da26ce433bffc096a52108d0ef4ac55881d13d70b0c371738d73cbd67591bad2",
- "impliedFormat": 99
- },
- {
- "version": "34b6847b168dd7aa74c772c0f5c68afe7c6b35348f5d3071681c1f26e276318d",
- "impliedFormat": 99
- },
- {
- "version": "5e8dab7ea4056d557b1ac48dc2905b97669a5fdea37c3c79a5563e2e126f1b29",
- "impliedFormat": 99
- },
- {
- "version": "9f2a41d65629c9d3218d3451b5b73dd96956f9078720e5ea2acf469ea6895240",
- "impliedFormat": 99
- },
- {
- "version": "2d1924bb4fa9f785437228ca40cd05162795b36295b9addaed7aaef2e8e5c7e5",
- "impliedFormat": 99
- },
- {
- "version": "99d62f5ac0911ef2a22c1a67a69e8441e1b409d1773837ba58361e8d574b4152",
- "impliedFormat": 99
- },
- {
- "version": "34c57354a2a1b8e654bc730ab55aeeb857ee342ebe848660a078803e0bbd940a",
- "impliedFormat": 99
- },
- {
- "version": "7c1c1d4c8fe888eecca43aa8d1bb12811c4915ffd27718b939c9bb127f2225bf",
- "impliedFormat": 99
- },
- {
- "version": "6977e71491b7a8ea4b4ae158be439ac1a3a596e143feb58a24ba4a44d0b15cc5",
- "impliedFormat": 99
- },
- {
- "version": "3b25ebad946a53bbf61fa93f8d5ff1dfd7b97ffa8b45cab0af0d1d98d4764940",
- "impliedFormat": 99
- },
- {
- "version": "5282413ed863194cc7cd873fe3f485168ad08658a91bf026c2a0a8e4db900196",
- "impliedFormat": 99
- },
- {
- "version": "84aa893c666ccd0e5a15b3fb7fd278b10fcdc0b6e1911fb46a711e3fd649120b",
- "impliedFormat": 99
- },
- {
- "version": "f5c0229716cab5de0c590cd12615c347ef2a6e9793381272f1b074d67ca5d416",
- "impliedFormat": 99
- },
- {
- "version": "28e51826c19447a3354ac4fae5023326269a2a59ad735e1c09ec42aff20acc1c",
- "impliedFormat": 99
- },
- {
- "version": "38f9e317ee90e3ad8cb39d4aafe8afeb784bcb84210bfbb7dd8788e769f1afb3",
- "impliedFormat": 99
- },
- {
- "version": "7ce4403d02c6b349ad44d71cd3e016013046a6509def1124cf6b47247d393163",
- "impliedFormat": 99
- },
- {
- "version": "b450cb686d0c95f4a828599f642f2f1a8de63a729678dc89dfcb06a52aedd123",
- "impliedFormat": 99
- },
- {
- "version": "7c16e0b561a1b5c3215896d7ef2029e73f1b1431a0e8eeb000a8f84d4b8e3c8b",
- "impliedFormat": 99
- },
- {
- "version": "815fb4112c165f37fd2732d5ccd19f5e81ae33b662fb5a3af933b8bfd7954b32",
- "impliedFormat": 99
- },
- {
- "version": "cda7c95ef6f305bdab792edf17cba63f8020898de687d94230735b702ede2c44",
- "impliedFormat": 99
- },
- {
- "version": "9a0514b8d9fc823de2efa2618853532c0587e6f2acf177574ac937452a57ab0b",
- "impliedFormat": 99
- },
- {
- "version": "d45ef31be79806fcc75cd3372344f0a9e192bfdc74a4f317d4067f905d5ee706",
- "impliedFormat": 99
- },
- {
- "version": "fe150492b61ddafa7107def7794e18c699c3251ed4bc5c396a40bb6f062caffb",
- "impliedFormat": 99
- },
- {
- "version": "6613416863489144bd552f14860da0156bae705b15431342d910399548c954d3",
- "impliedFormat": 99
- },
- {
- "version": "aba8091760d701c5e63a48fa98eba3c62c218e89e3bda7880feab56c6f3e6f09",
- "impliedFormat": 99
- },
- {
- "version": "b989caa8ec6c445b5449405d9306201c7ae6e620c45d58b65db162f766b00d18",
- "impliedFormat": 99
- },
- {
- "version": "a3c5413ba38000527d406a57f231838bff7b9b64c060a2247ebb972ca277c86b",
- "impliedFormat": 99
- },
- {
- "version": "9cc9e426a68c265748a862565ad3d0c50e3b83f95cbf729c578b15f0fe56960d",
- "impliedFormat": 99
- },
- {
- "version": "a772c1d8f7fc698119d0f1f959fbb156df11016290e17a39695f5bbb3988716d",
- "impliedFormat": 99
- },
- {
- "version": "956303bcd7c36333c6a57e35bcd68619a2e166b610f76338c02ee38e78d57a96",
- "impliedFormat": 99
- },
- {
- "version": "b281826abf5f6ed80f6c7513cc18d99604ed82dbb0c1c7129e8f38151ffb4120",
- "impliedFormat": 99
- },
- {
- "version": "4f0e1d79411d135edbc78d544b226de9e11c7ecdcf09518c5302d49517d0c4ee",
- "impliedFormat": 99
- },
- {
- "version": "edf177084b82c6fd23cb21c31b205929cbfb3cb3683da0ef943749aa01c51996",
- "impliedFormat": 99
- },
- {
- "version": "81780aeb17e4e2cfe8c29689b33504ef0c161dbfd150a9c490bd30d760c1a4d2",
- "impliedFormat": 99
- },
- {
- "version": "eb232b9056d7407e248c5870944a5fccf7074d93809bb95ce7e010c77a39daae",
- "impliedFormat": 99
- },
- {
- "version": "fa2c48fd724dd8f0e11dfb04f20d727a2595890bfa95419c83b21ed575ed77d1",
- "impliedFormat": 99
- },
- {
- "version": "ffe2bdab10cc9bb3121784020df2d2449b9344c965a5d96857f9d7e6fc984322",
- "impliedFormat": 99
- },
- {
- "version": "20be44c04e883d5fe7840d630a8d0656e95b00c2d6eebab9ab253275e7170534",
- "impliedFormat": 99
- },
- {
- "version": "cc2958d8abd86edcdf05542bb1b40ba659db5bc5a2560720cde08e8950e63bc1",
- "impliedFormat": 99
- },
- {
- "version": "e44e0ea195d68c0aea951809bda325322085008c0622fc4ee44db5359f37b747",
- "impliedFormat": 99
- },
- {
- "version": "21053659ad72fe51b9dfbde4fa14dbbac0912359fa37c9a5aa75f188782b2ee8",
- "impliedFormat": 99
- },
- {
- "version": "828f8b38dff4e5c47b0112cb437da379c720f0360d40d392457c9775f30c8ae8",
- "impliedFormat": 99
- },
- {
- "version": "e297bdcb7db008d8d7d0481f2c935a9f7f0a338f41b7e5d1cec6a7744140a4ff",
- "impliedFormat": 99
- },
- {
- "version": "ef816ad6735a271c4c8035a1914c3a9beaaa90b3c174da312d26bce8736e56ec",
- "impliedFormat": 99
- },
- {
- "version": "5edf075cf255e9a0ff9693d5d5bb8d25065880c6e3c04a4d801bf1ef75ae2ffe",
- "impliedFormat": 99
- },
- {
- "version": "c1c545c407e4ad166b8285ae063ffffdc8f33ac38504acbaae8cc5692b9da7bb",
- "impliedFormat": 99
- },
- {
- "version": "b52f7568bb9b00bcee6c4929938226541c09d86b849b8ba8db2fe2a8bba46f49",
- "impliedFormat": 99
- },
- {
- "version": "d42e1872d53ebb213e7bbe15e5fecdcaa9a490d2f2a2b035ee9cf4a6d3f1e44e",
- "impliedFormat": 99
- },
- {
- "version": "9ab8801ec29c20243d783cb25b278af9ac836e4a65e3142838bfa82f98652b17",
- "impliedFormat": 99
- },
- {
- "version": "fd40c454d56e1d14e60ce13f3bc60c7fdb9bc70c6ef9c7bfafec1f0eb5d8075b",
- "impliedFormat": 1
- },
- {
- "version": "155ced96d70533d95c481061e2691802fae7cfb96869d7c85ac8622f53b51cb7",
- "impliedFormat": 1
- },
- {
- "version": "f4272c1409ba5ce42d17be35575083f37dfe282284cc5e350d5fa60481ff44eb",
- "impliedFormat": 99
- },
- {
- "version": "b7bd70307671536c735389e0a1748555c438c392dfceb6f2ac3aa0a50ca82530",
- "impliedFormat": 99
- },
- {
- "version": "5589e7f5a94a87a8dfc60e7bc81a610376925053a659f183606c3d76d3f92f84",
- "impliedFormat": 99
- },
- {
- "version": "d4a98ba517f71f7b8ab85f158859cdfc42ad9926e8623fc96337014e5d4dbb5b",
- "impliedFormat": 99
- },
- {
- "version": "94c33d70bcda3c3f98b8262340cd528344142133dbc8fcc7e2d4b2589b185db7",
- "impliedFormat": 99
- },
- {
- "version": "d11667aa2a6063fde3c4054da9ab98e3b9bc7e3da800beaca437f1eff2a17fe2",
- "impliedFormat": 99
- },
- {
- "version": "f5fb9448b302836cc9cdeb2873af6535ec5330fbed104ac8fba4dd62f047a6a1",
- "impliedFormat": 99
- },
- {
- "version": "8332369dd6e1c14253cc3e199b2bf3ecaf887b5f55355b754260464abd710ba6",
- "impliedFormat": 99
- },
- {
- "version": "f14ca2879d5567141bd0edb2f4ddd1dee0ff9a59b772c48d8d61a01de49d666c",
- "impliedFormat": 99
- },
- {
- "version": "b9d9ae781d5049e168e20de0fb268a1461bc028ab6f597d7b9cb785f2f417f57",
- "impliedFormat": 99
- },
- {
- "version": "6c30925bb60342182cb75758dab585495418f806a74911b4a4c13b8e5f5a5e1c",
- "impliedFormat": 99
- },
- {
- "version": "885f283fffd4502b930e32663436c63223c7d9a422739fe2c6a672c2c5fad424",
- "impliedFormat": 99
- },
- "1099b5c48faf5b52523e0c773eb6f0ccbc6c527f8abae05530e12a17d95ddd43",
- "db177073d16a4393c7a96bcdc3a2a904e88c2432d54d138ca7715cc431982c17",
- {
- "version": "f3f79393ad9d2e7af9d36f2e4a9b21e89b8a3113fd184da2d8b1ac19086cbd90",
- "impliedFormat": 99
- },
- "b0c8d708aaa165b10633bb6181dea1af4b9976a71ad001d75f42785ddfbca458",
- {
- "version": "af4b65c62076b306207059d0747d0829b1a8f90ed2b969d95cfc045371aa9b58",
- "impliedFormat": 99
- },
- "e808770c9784c6782ab0538144bbdbe058feb27fb55ee952ffb10f09960cdcba",
- {
- "version": "71569f0c75a2a8bef0d5fded1490a109738d6445a545462f11ca833e450f1279",
- "impliedFormat": 99
- },
- {
- "version": "a999bad9add1841f11508785af282ca59730f0b06648b5cb0af605794f54a4eb",
- "impliedFormat": 99
- },
- {
- "version": "1260194c1f0de8c2984a431970c0d20c9d61f0448043bab5bca73dbd2773d6ec",
- "impliedFormat": 99
- },
- {
- "version": "408c6f3cf8ce0ae09c67aaf1b4dc64553b403e45d8c39420b2df56d80c0418c0",
- "impliedFormat": 99
- },
- {
- "version": "30ff7e28cac05f6e7366f9d88aebc3612acf1184f5b3e28d0f7ef0cfb0d77a20",
- "impliedFormat": 99
- },
- {
- "version": "8537a118c88490d5ac464bafd0d112388e3916317504360c0d4799779d70ca3b",
- "impliedFormat": 99
- },
- {
- "version": "c1c237dd2a809a141608e0baee0f40b797e24f5fa3870fdfdfeedaa1cf120628",
- "impliedFormat": 99
- },
- {
- "version": "916ae2004975ce782e32b89cca95ff478215c5bd0f132a11b52d716b3d7f8686",
- "impliedFormat": 99
- },
- {
- "version": "689ea0a46408e4e0b2dfce3e09f74a7188b88068b6e41e108a3e29b8a7d1b025",
- "impliedFormat": 99
- },
- {
- "version": "bfddd4cc51973db6d75b0cdb28d9b9b5657fd4e3972836c52353db1a28fa0f32",
- "impliedFormat": 1
- },
- "986321bcead409fcb033aae7519d6f7c72e8524405e600cfc9bec9d3e14282f0",
- "a8d6094e708c570767332d9798fa1bbc9ec8d4e50bc93e39bc9ce6fd737091e0",
- "e151308baf5db4e4e96616781804c0894c3b6b5e4085467b846a7ce6cc823d08",
- "e5b58fb224466fdad906ab1368853d7d52d8315a4e9d23bdfd5d695288768b4f",
- "1b25bd070f941eccadaa46ed9655fd304e377da3c7d176cac9e5959396ef66c7",
- "95286eb2ad444fe5bb236abc46f19637ae47bd92c92fcd98a98652b4f59824f9",
- "6fe039142dfe51a9029f3bfe297e9058e135af013794dca8c3c2cb5cd9d5f89c",
- "2149689a6d91ea70cb5483cbe36a16021014c516e912f0f3a61efb6b6ca39de0",
- "01ee53c8ecc526b22fba47522d87b2a53d6b9ff44190aa0140fd2a92f39e17eb",
- "2084d5041ef95d495546060c712a7d7a81cc804535deae1fec6ffe78326a177f",
- "accf031cfdec0d400010800e552b59fadd536056ce334e55823468c0de117cb7",
- {
- "version": "f9c7c509c4c5179620913a952ecbcfc7589f104e40dea90940ddb304d7d5ae2a",
- "impliedFormat": 99
- },
- {
- "version": "6426e51e3bb1ae2c5bbd960445367d729970c9c8229fe940ad28572c7ca9a7f1",
- "signature": "67376835583256a082a04b5fc35998fc20518b3eb72974cb44f60c6eea4ea230"
- },
- "f3360e92ee6f5dbc757f13ecdea441162ece47a4ffbe7d75758a5473e279ece9",
- {
- "version": "ad6da9cd7f5534c51dfd49010c3a090d1d4eb25ccca3c9a2c3b1a51b85ba68a3",
- "signature": "1b0091c4af35d6f431f1bdab53be3ec7555a6572843f38d32a7d01b4a5ee4d4e"
- },
- "c7954c9fa0abaf91dfd25cfc7df3d968222542a3b400b029f1451651300b4c88",
- "056e397d576c6749f80fe5f191b34c002a112e7ac4def8df6648b97123205be8",
- "25830353bb385a6726ee422b90bd23759d1954464fb8679a8c23e0e5d41ed0bd",
- "ed47ee2a3dde56824133bab93ff5dbf435ae9549bbdc9b1491f861bf26af1e69",
- {
- "version": "de20dc17a3978a0622fb209b51fe6cf9453c5dc84e1c30de7fdd8546b13cb66e",
- "signature": "fb32dd2090ca8cb55531efe82f2d6141ad51e04618e8059dc6a079f5b6e6bb4b"
- },
- {
- "version": "496981bb34666a69701d9a0978ce401cadd896a0ddec27906702e7f3175a3265",
- "signature": "b4ef19db3919f415991f2d83d34d15ea73f5c778a3fd79e35cd990c1fbb3e6d2"
- },
- "31d6aa0dd9cce9575126af70ae2bf7be7c5f5001502410abae74138aac88aee1",
- "18998031fdb45c0d8fa00511177019781d7ea7aeca783cc24f76f48f05f9296d",
- {
- "version": "046240bd8fa2805abf5914967d471c4a8f751824deb87ec1b43d9be2050f97a8",
- "signature": "8beb4e4c1cc846cfaf6d6d732cba6312d8272b424ef1b4429f1bd2a5fabf15f2"
- },
- {
- "version": "d3cfde44f8089768ebb08098c96d01ca260b88bccf238d55eee93f1c620ff5a5",
- "impliedFormat": 1
- },
- {
- "version": "293eadad9dead44c6fd1db6de552663c33f215c55a1bfa2802a1bceed88ff0ec",
- "impliedFormat": 1
- },
- {
- "version": "36eb5babc665b890786550d4a8cb20ef7105673a6d5551fbdd7012877bb26942",
- "impliedFormat": 1
- },
- {
- "version": "fec412ded391a7239ef58f455278154b62939370309c1fed322293d98c8796a6",
- "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": "93c3e73824ad57f98fd23b39335dbdae2db0bd98199b0dc0b9ccc60bf3c5134a",
- "impliedFormat": 1
- },
- {
- "version": "a9ebb67d6bbead6044b43714b50dcb77b8f7541ffe803046fdec1714c1eba206",
- "impliedFormat": 1
- },
- {
- "version": "833e92c058d033cde3f29a6c7603f517001d1ddd8020bc94d2067a3bc69b2a8e",
- "impliedFormat": 1
- },
- {
- "version": "8e6427dd1a4321b0857499739c641b98657ea6dc7cc9a02c9b2c25a845c3c8e6",
- "impliedFormat": 1
- },
- {
- "version": "58da08d1fe876c79c47dcf88be37c5c3fab55d97b34c8c09a666599a2191208d",
- "impliedFormat": 1
- },
- {
- "version": "29f823cbe0166e10e7176a94afe609a24b9e5af3858628c541ff8ce1727023cd",
- "impliedFormat": 1
- },
- "feb22d94150b9f67c73627fa4111c0c165aad04c8dfa9504b8c3b9ff2ba4f6f1",
- "a1f0147a61528aa480d3836e19641f410dd9ed911ceae88472b46ba3e87f49fe",
- "17e66270055cd906f6511b6ef8d9226f0add20b2d737d9f817057253c6505f1e",
- {
- "version": "9aea0694ee3e9b9f4b40de7f3372738f57b3d4624675c352f31ad01726a4b46e",
- "signature": "7c43d6dea752a5091539044ae30b4ebbfe1a50bacb79b10b5916b423b727ea14"
- },
- "0b87ba38c3f2fdd08a4b077c8b7e4e90e87a7e04d34eee8895aed7385e699cc8",
- "3dcf8e929ff687d3f09001e0b4b01e06fa6ffd8a258a89530b590f06200eaa26",
- "230ff4af11d784971f535a3cd4511a49fee8ca40c4406fdb365d7f81f60e4637",
- "72592ead32da30c17dde4f068fbb27ecd39c2c1a1da9c75716c91670e5dc26e3",
- "50cef07febcb1576d9305035b9eec78a74453f4b127106245d53d71ca7d68f80",
- "b718ed2fec19cd221d14cc7bbd89ed850f45cb3cd8c53dff13a3b0b6e557d18b",
- {
- "version": "a7553ef9fdcb7f6dedd8ef8da866700d33ea528b4dd32252d0f320779dca746f",
- "impliedFormat": 99
- },
- {
- "version": "7a00d81ed074c6d0352568fd46f2a93d703f0210342c233364ed4b81f6fb6fa5",
- "signature": "ef4540ac3e8fca10e0ef8c3e1b2f124c4c14487a83641878351d102fad161817"
- },
- {
- "version": "bbbe2c8dea94ed5e8b509640b3ebb7541f915ae9bb0b60d963d98ef7ecd78d29",
- "signature": "abbfb2d663444cbab245fe93990d1c658e8af6da61ab688c2cf7f69f06e8fb4a"
- },
- "227c6b9685a785db07ad29a6ad37d61f48cf6d62ade571436c31abe1d5c966d6",
- "edf878df729154b040d0a56754951c7423aa9cc334bc3db58d15dd0d5d479fdf",
- "f6fb3143150d91d13345376d39defbe4c72e49d0535ff8edeb974b6fa881ff28"
- ],
- "root": [
- 204,
- 658,
- 1393,
- 1395,
- [1477, 1481],
- 1484,
- 1488,
- [2731, 2733],
- [2735, 2746],
- [2765, 2772],
- [2774, 2778]
- ],
- "options": {
- "allowJs": true,
- "checkJs": true,
- "esModuleInterop": true,
- "jsx": 1,
- "module": 200,
- "noUncheckedIndexedAccess": true,
- "skipLibCheck": true,
- "strict": true,
- "target": 9,
- "tsBuildInfoFile": "./tsbuildinfo.json"
- },
- "referencedMap": [
- [657, 1],
- [204, 2],
- [658, 3],
- [1393, 4],
- [1395, 5],
- [2746, 6],
- [2765, 7],
- [2766, 6],
- [2774, 8],
- [2775, 6],
- [2778, 9],
- [2738, 10],
- [2739, 11],
- [2745, 12],
- [2743, 1],
- [2741, 13],
- [2740, 14],
- [2744, 15],
- [2742, 1],
- [2776, 16],
- [2777, 17],
- [2767, 18],
- [2768, 13],
- [2772, 19],
- [2769, 20],
- [2770, 21],
- [2771, 22],
- [1488, 23],
- [2731, 24],
- [2732, 25],
- [2733, 26],
- [2735, 27],
- [2736, 28],
- [1477, 29],
- [1478, 30],
- [1480, 31],
- [2737, 32],
- [1481, 33],
- [1484, 34],
- [1479, 30],
- [2685, 35],
- [2688, 36],
- [2686, 37],
- [2683, 38],
- [2682, 1],
- [2687, 39],
- [2681, 39],
- [2684, 40],
- [2689, 41],
- [2691, 42],
- [2679, 1],
- [2709, 43],
- [2695, 44],
- [2697, 45],
- [2700, 46],
- [2696, 47],
- [2698, 1],
- [2699, 48],
- [2690, 35],
- [2692, 49],
- [2173, 50],
- [2177, 51],
- [2176, 52],
- [2172, 53],
- [2175, 54],
- [2168, 55],
- [2174, 50],
- [2234, 56],
- [2236, 57],
- [2235, 58],
- [2225, 59],
- [2268, 60],
- [2267, 61],
- [2239, 62],
- [2240, 63],
- [2272, 64],
- [2271, 65],
- [2270, 63],
- [2274, 66],
- [2273, 67],
- [2269, 68],
- [2275, 68],
- [2276, 69],
- [2281, 70],
- [2282, 71],
- [2280, 72],
- [2279, 73],
- [2278, 74],
- [2277, 70],
- [2286, 75],
- [2285, 76],
- [2284, 77],
- [2170, 78],
- [2171, 79],
- [2283, 80],
- [2257, 81],
- [2254, 82],
- [2293, 68],
- [2292, 68],
- [2291, 68],
- [2250, 82],
- [2262, 63],
- [2263, 68],
- [2259, 68],
- [2258, 68],
- [2249, 68],
- [2296, 83],
- [2295, 84],
- [2248, 85],
- [2247, 85],
- [2290, 82],
- [2260, 68],
- [2288, 86],
- [2251, 68],
- [2256, 87],
- [2253, 88],
- [2255, 81],
- [2238, 89],
- [2287, 62],
- [2265, 1],
- [2266, 1],
- [2261, 68],
- [2252, 68],
- [2246, 85],
- [2289, 63],
- [2327, 90],
- [2326, 91],
- [2324, 92],
- [2302, 93],
- [2325, 68],
- [2328, 94],
- [2330, 95],
- [2329, 96],
- [2226, 82],
- [2227, 68],
- [2228, 68],
- [2332, 97],
- [2331, 98],
- [2229, 99],
- [2230, 88],
- [2222, 100],
- [2224, 101],
- [2223, 102],
- [2231, 68],
- [2232, 103],
- [2233, 82],
- [2333, 63],
- [2334, 104],
- [2336, 105],
- [2335, 106],
- [2337, 82],
- [2338, 68],
- [2339, 68],
- [2340, 68],
- [2342, 68],
- [2341, 68],
- [2354, 107],
- [2353, 108],
- [2346, 109],
- [2347, 88],
- [2348, 94],
- [2344, 110],
- [2345, 111],
- [2349, 112],
- [2350, 68],
- [2351, 103],
- [2352, 82],
- [2358, 70],
- [2357, 86],
- [2356, 113],
- [2362, 114],
- [2361, 115],
- [2360, 86],
- [2355, 86],
- [2244, 116],
- [2359, 117],
- [2366, 118],
- [2365, 119],
- [2364, 68],
- [2363, 68],
- [2213, 120],
- [2195, 121],
- [2198, 122],
- [2194, 123],
- [2211, 124],
- [2193, 125],
- [2214, 126],
- [2199, 125],
- [2200, 127],
- [2215, 125],
- [2209, 128],
- [2201, 125],
- [2203, 129],
- [2204, 125],
- [2205, 130],
- [2202, 125],
- [2192, 131],
- [2206, 124],
- [2207, 125],
- [2216, 132],
- [2208, 120],
- [2217, 133],
- [2210, 134],
- [2212, 135],
- [2191, 1],
- [2242, 136],
- [2241, 137],
- [2243, 138],
- [2537, 139],
- [2367, 140],
- [2368, 141],
- [2480, 68],
- [2297, 81],
- [2298, 82],
- [2306, 82],
- [2305, 142],
- [2308, 68],
- [2307, 68],
- [2323, 143],
- [2322, 144],
- [2309, 68],
- [2310, 68],
- [2311, 87],
- [2312, 88],
- [2313, 81],
- [2314, 142],
- [2316, 82],
- [2315, 68],
- [2304, 145],
- [2300, 146],
- [2303, 147],
- [2299, 148],
- [2318, 149],
- [2317, 150],
- [2321, 68],
- [2319, 151],
- [2320, 68],
- [2369, 142],
- [2301, 152],
- [2370, 153],
- [2372, 154],
- [2371, 68],
- [2379, 155],
- [2378, 156],
- [2375, 157],
- [2377, 157],
- [2373, 68],
- [2374, 157],
- [2376, 157],
- [2390, 81],
- [2388, 82],
- [2383, 82],
- [2392, 68],
- [2394, 158],
- [2393, 159],
- [2382, 68],
- [2391, 68],
- [2381, 68],
- [2389, 160],
- [2385, 88],
- [2386, 81],
- [2380, 55],
- [2384, 68],
- [2387, 68],
- [2399, 161],
- [2397, 161],
- [2398, 161],
- [2404, 162],
- [2403, 163],
- [2400, 161],
- [2396, 164],
- [2402, 161],
- [2401, 161],
- [2395, 1],
- [2413, 81],
- [2414, 82],
- [2417, 68],
- [2416, 68],
- [2420, 165],
- [2419, 166],
- [2412, 87],
- [2410, 88],
- [2411, 81],
- [2408, 167],
- [2407, 168],
- [2406, 169],
- [2415, 68],
- [2409, 170],
- [2418, 68],
- [2429, 81],
- [2430, 82],
- [2433, 171],
- [2432, 172],
- [2428, 160],
- [2425, 173],
- [2427, 81],
- [2423, 174],
- [2422, 175],
- [2421, 176],
- [2426, 177],
- [2431, 68],
- [2440, 178],
- [2439, 179],
- [2436, 180],
- [2438, 180],
- [2434, 68],
- [2435, 180],
- [2437, 180],
- [2445, 70],
- [2446, 181],
- [2444, 182],
- [2443, 183],
- [2442, 82],
- [2441, 86],
- [2450, 184],
- [2452, 68],
- [2454, 185],
- [2453, 186],
- [2447, 68],
- [2449, 184],
- [2451, 68],
- [2448, 184],
- [2468, 81],
- [2461, 82],
- [2472, 68],
- [2471, 68],
- [2459, 68],
- [2474, 187],
- [2473, 188],
- [2466, 82],
- [2467, 68],
- [2465, 68],
- [2456, 86],
- [2464, 68],
- [2463, 87],
- [2460, 88],
- [2462, 81],
- [2455, 89],
- [2469, 68],
- [2470, 68],
- [2457, 86],
- [2458, 68],
- [2264, 68],
- [2294, 189],
- [2478, 190],
- [2484, 191],
- [2483, 192],
- [2482, 190],
- [2476, 190],
- [2475, 70],
- [2481, 193],
- [2479, 190],
- [2477, 190],
- [2488, 194],
- [2487, 195],
- [2485, 196],
- [2486, 197],
- [2495, 198],
- [2494, 199],
- [2491, 200],
- [2493, 201],
- [2492, 202],
- [2490, 203],
- [2489, 201],
- [2506, 68],
- [2508, 81],
- [2505, 68],
- [2502, 68],
- [2498, 204],
- [2503, 68],
- [2510, 205],
- [2509, 206],
- [2507, 173],
- [2496, 207],
- [2499, 208],
- [2501, 209],
- [2504, 68],
- [2497, 210],
- [2500, 68],
- [2513, 55],
- [2514, 211],
- [2511, 55],
- [2512, 212],
- [2518, 213],
- [2517, 213],
- [2522, 214],
- [2521, 215],
- [2520, 213],
- [2519, 213],
- [2516, 68],
- [2515, 216],
- [2530, 81],
- [2534, 217],
- [2533, 218],
- [2529, 160],
- [2527, 173],
- [2528, 81],
- [2531, 63],
- [2525, 219],
- [2524, 220],
- [2523, 221],
- [2526, 222],
- [2532, 68],
- [2166, 223],
- [2536, 224],
- [2535, 225],
- [2424, 88],
- [2165, 226],
- [2196, 1],
- [2221, 227],
- [2220, 228],
- [2218, 1],
- [2219, 229],
- [2163, 1],
- [2164, 230],
- [2237, 63],
- [2167, 231],
- [2245, 232],
- [2197, 225],
- [2343, 63],
- [2169, 63],
- [2179, 63],
- [2182, 233],
- [2180, 1],
- [2183, 234],
- [2178, 235],
- [2184, 236],
- [2181, 237],
- [2185, 63],
- [2405, 1],
- [2734, 238],
- [1483, 239],
- [1482, 240],
- [2701, 241],
- [2711, 242],
- [2677, 243],
- [2678, 244],
- [2705, 245],
- [2704, 246],
- [2703, 247],
- [2706, 248],
- [2702, 249],
- [1550, 1],
- [1551, 250],
- [1552, 251],
- [1557, 252],
- [1553, 251],
- [1556, 1],
- [1554, 1],
- [1555, 1],
- [66, 253],
- [65, 254],
- [63, 255],
- [62, 256],
- [61, 254],
- [70, 257],
- [2187, 258],
- [2189, 259],
- [2190, 260],
- [2186, 1],
- [2188, 1],
- [2761, 261],
- [2760, 262],
- [503, 1],
- [198, 257],
- [1123, 263],
- [1124, 264],
- [1125, 265],
- [1118, 1],
- [1119, 266],
- [1120, 267],
- [1121, 268],
- [1122, 269],
- [1003, 270],
- [1006, 271],
- [1012, 272],
- [1015, 273],
- [1036, 274],
- [1014, 275],
- [995, 1],
- [996, 276],
- [997, 277],
- [1000, 1],
- [998, 1],
- [999, 1],
- [1037, 278],
- [1002, 270],
- [1001, 1],
- [1038, 279],
- [1005, 271],
- [1004, 1],
- [1042, 280],
- [1039, 281],
- [1009, 282],
- [1011, 283],
- [1008, 284],
- [1010, 285],
- [1007, 282],
- [1040, 286],
- [1013, 270],
- [1041, 287],
- [1026, 288],
- [1028, 289],
- [1030, 290],
- [1029, 291],
- [1023, 292],
- [1016, 293],
- [1035, 294],
- [1032, 295],
- [1034, 296],
- [1019, 297],
- [1021, 298],
- [1018, 295],
- [1022, 1],
- [1033, 299],
- [1020, 1],
- [1031, 1],
- [1017, 1],
- [1024, 300],
- [1025, 1],
- [1027, 301],
- [1177, 268],
- [1178, 302],
- [1179, 302],
- [1180, 303],
- [1069, 1],
- [1061, 268],
- [1070, 268],
- [1062, 1],
- [1063, 268],
- [1065, 304],
- [1072, 1],
- [1066, 305],
- [1067, 268],
- [1068, 1],
- [1064, 268],
- [1087, 306],
- [1086, 307],
- [1075, 308],
- [1071, 1],
- [1074, 309],
- [1073, 1],
- [1076, 268],
- [1080, 268],
- [1077, 268],
- [1078, 268],
- [1079, 268],
- [1084, 1],
- [1085, 268],
- [1081, 1],
- [1082, 1],
- [1083, 1],
- [1342, 310],
- [1343, 311],
- [1341, 312],
- [1323, 1],
- [1324, 313],
- [1322, 314],
- [1321, 315],
- [1339, 316],
- [1338, 317],
- [1337, 318],
- [1228, 1],
- [1225, 1],
- [1229, 319],
- [1227, 320],
- [1226, 321],
- [1335, 322],
- [1334, 318],
- [1237, 323],
- [1236, 324],
- [1235, 325],
- [1308, 1],
- [1309, 326],
- [1307, 318],
- [1141, 327],
- [1142, 328],
- [1140, 329],
- [1264, 330],
- [1263, 331],
- [1262, 312],
- [1241, 332],
- [1240, 333],
- [1239, 312],
- [1328, 334],
- [1327, 335],
- [1326, 318],
- [1317, 1],
- [1318, 336],
- [1316, 337],
- [1315, 325],
- [1244, 338],
- [1243, 318],
- [1248, 339],
- [1247, 340],
- [1246, 325],
- [1252, 341],
- [1251, 342],
- [1250, 325],
- [1256, 343],
- [1255, 344],
- [1254, 318],
- [1260, 345],
- [1259, 346],
- [1258, 325],
- [1276, 1],
- [1277, 347],
- [1275, 348],
- [1274, 349],
- [1332, 350],
- [1331, 351],
- [1330, 318],
- [1222, 352],
- [1220, 312],
- [1221, 353],
- [1128, 354],
- [1139, 355],
- [1130, 356],
- [1135, 357],
- [1136, 357],
- [1134, 358],
- [1133, 359],
- [1131, 360],
- [1132, 361],
- [1138, 1],
- [1129, 357],
- [1126, 362],
- [1127, 356],
- [1137, 357],
- [1045, 363],
- [1056, 364],
- [1044, 365],
- [1057, 1],
- [1046, 366],
- [1047, 367],
- [1054, 365],
- [1055, 368],
- [1053, 369],
- [1048, 367],
- [1049, 367],
- [1050, 367],
- [1051, 367],
- [1052, 370],
- [1058, 371],
- [1043, 372],
- [1093, 373],
- [1059, 1],
- [1060, 268],
- [1090, 374],
- [1091, 375],
- [1088, 268],
- [1095, 376],
- [1100, 377],
- [1101, 377],
- [1103, 378],
- [1089, 379],
- [1102, 380],
- [1094, 381],
- [1108, 382],
- [1099, 383],
- [1097, 384],
- [1096, 385],
- [1098, 386],
- [1104, 387],
- [1105, 387],
- [1106, 388],
- [1107, 387],
- [1092, 389],
- [2713, 1],
- [1305, 390],
- [1293, 391],
- [1304, 392],
- [1295, 393],
- [1300, 394],
- [1301, 394],
- [1299, 395],
- [1298, 396],
- [1296, 397],
- [1297, 361],
- [1303, 1],
- [1294, 394],
- [1291, 398],
- [1292, 393],
- [1302, 394],
- [1285, 399],
- [1286, 400],
- [1287, 401],
- [1288, 400],
- [1289, 400],
- [1290, 402],
- [1280, 1],
- [1281, 403],
- [1282, 404],
- [1283, 268],
- [1284, 405],
- [1494, 63],
- [1498, 406],
- [1503, 407],
- [1507, 408],
- [1504, 408],
- [1505, 409],
- [1506, 410],
- [1497, 409],
- [1512, 411],
- [1495, 63],
- [1502, 412],
- [1513, 63],
- [1499, 408],
- [1514, 411],
- [1500, 408],
- [1516, 413],
- [1517, 414],
- [1515, 408],
- [1511, 415],
- [1518, 416],
- [1520, 417],
- [1521, 418],
- [1522, 63],
- [1523, 419],
- [1509, 420],
- [1501, 408],
- [1496, 63],
- [1524, 409],
- [1525, 421],
- [1510, 409],
- [1526, 409],
- [1527, 419],
- [1528, 408],
- [1529, 409],
- [1530, 63],
- [1531, 409],
- [1532, 421],
- [1533, 422],
- [1535, 423],
- [1534, 408],
- [1536, 424],
- [1537, 414],
- [1519, 408],
- [1508, 1],
- [2038, 425],
- [2037, 1],
- [2034, 1],
- [903, 426],
- [907, 427],
- [900, 428],
- [901, 428],
- [904, 428],
- [897, 429],
- [898, 1],
- [896, 430],
- [894, 1],
- [906, 428],
- [899, 428],
- [905, 431],
- [902, 428],
- [895, 432],
- [1376, 433],
- [1377, 434],
- [1372, 1],
- [1378, 435],
- [1373, 1],
- [1375, 436],
- [1374, 1],
- [1371, 437],
- [991, 438],
- [993, 439],
- [992, 428],
- [987, 1],
- [988, 440],
- [989, 6],
- [1368, 441],
- [981, 442],
- [973, 443],
- [974, 444],
- [975, 445],
- [972, 6],
- [976, 6],
- [971, 6],
- [984, 1],
- [978, 446],
- [990, 428],
- [986, 1],
- [985, 442],
- [983, 447],
- [980, 442],
- [979, 442],
- [1384, 448],
- [977, 428],
- [1381, 449],
- [1382, 1],
- [1383, 450],
- [1117, 451],
- [982, 1],
- [1116, 447],
- [1385, 452],
- [1369, 453],
- [748, 454],
- [744, 455],
- [720, 456],
- [719, 457],
- [660, 458],
- [770, 459],
- [868, 1],
- [723, 460],
- [754, 461],
- [713, 462],
- [769, 1],
- [742, 463],
- [743, 464],
- [739, 465],
- [746, 466],
- [741, 467],
- [795, 468],
- [791, 469],
- [870, 432],
- [826, 470],
- [827, 470],
- [828, 470],
- [829, 470],
- [830, 1],
- [710, 471],
- [776, 472],
- [801, 473],
- [785, 474],
- [789, 472],
- [777, 475],
- [772, 472],
- [778, 472],
- [786, 472],
- [787, 472],
- [788, 476],
- [771, 472],
- [773, 472],
- [794, 477],
- [793, 478],
- [774, 428],
- [781, 478],
- [775, 472],
- [779, 479],
- [780, 472],
- [783, 428],
- [782, 475],
- [798, 480],
- [796, 481],
- [797, 482],
- [863, 483],
- [799, 484],
- [800, 485],
- [790, 486],
- [747, 487],
- [698, 488],
- [714, 489],
- [738, 1],
- [725, 490],
- [745, 491],
- [809, 1],
- [811, 492],
- [810, 493],
- [733, 494],
- [726, 1],
- [812, 1],
- [814, 495],
- [813, 496],
- [728, 497],
- [737, 498],
- [817, 1],
- [816, 499],
- [815, 1],
- [820, 1],
- [819, 500],
- [818, 1],
- [736, 478],
- [734, 501],
- [806, 1],
- [808, 502],
- [807, 503],
- [735, 504],
- [731, 505],
- [730, 506],
- [732, 505],
- [717, 507],
- [727, 508],
- [805, 509],
- [802, 510],
- [803, 1],
- [804, 511],
- [749, 512],
- [750, 513],
- [724, 514],
- [792, 1],
- [661, 1],
- [663, 515],
- [866, 1],
- [674, 516],
- [676, 517],
- [673, 518],
- [677, 1],
- [675, 1],
- [688, 1],
- [678, 1],
- [694, 519],
- [864, 1],
- [704, 520],
- [695, 521],
- [702, 522],
- [696, 1],
- [681, 523],
- [679, 524],
- [684, 525],
- [683, 526],
- [680, 1],
- [784, 527],
- [705, 528],
- [669, 478],
- [686, 529],
- [659, 1],
- [699, 1],
- [687, 530],
- [672, 531],
- [665, 1],
- [709, 532],
- [691, 1],
- [685, 1],
- [831, 1],
- [689, 533],
- [690, 521],
- [671, 527],
- [865, 1],
- [706, 534],
- [692, 535],
- [707, 536],
- [693, 537],
- [662, 1],
- [668, 538],
- [666, 1],
- [700, 1],
- [701, 539],
- [711, 540],
- [703, 541],
- [729, 478],
- [697, 542],
- [667, 1],
- [708, 543],
- [682, 1],
- [867, 1],
- [832, 1],
- [670, 1],
- [839, 1],
- [821, 544],
- [751, 1],
- [857, 539],
- [854, 542],
- [822, 515],
- [823, 1],
- [852, 545],
- [767, 1],
- [862, 546],
- [835, 470],
- [824, 547],
- [721, 1],
- [752, 1],
- [851, 548],
- [825, 470],
- [856, 549],
- [843, 1],
- [664, 521],
- [860, 1],
- [757, 1],
- [755, 550],
- [760, 551],
- [833, 552],
- [834, 1],
- [756, 510],
- [764, 1],
- [766, 553],
- [836, 554],
- [845, 541],
- [837, 1],
- [838, 1],
- [840, 555],
- [758, 556],
- [762, 1],
- [841, 1],
- [740, 557],
- [712, 1],
- [858, 1],
- [869, 1],
- [853, 558],
- [768, 559],
- [753, 560],
- [763, 550],
- [842, 515],
- [761, 508],
- [718, 561],
- [844, 562],
- [847, 563],
- [848, 1],
- [849, 1],
- [850, 1],
- [715, 564],
- [765, 565],
- [716, 566],
- [759, 1],
- [855, 478],
- [859, 1],
- [861, 1],
- [722, 567],
- [846, 1],
- [956, 568],
- [958, 569],
- [970, 570],
- [957, 571],
- [967, 572],
- [964, 573],
- [966, 574],
- [965, 574],
- [963, 573],
- [961, 575],
- [968, 576],
- [969, 576],
- [959, 428],
- [955, 577],
- [962, 577],
- [960, 63],
- [874, 578],
- [952, 1],
- [879, 428],
- [890, 579],
- [871, 428],
- [872, 428],
- [875, 428],
- [954, 580],
- [883, 428],
- [887, 428],
- [888, 428],
- [893, 428],
- [936, 428],
- [948, 581],
- [947, 582],
- [946, 1],
- [939, 583],
- [938, 584],
- [937, 1],
- [942, 585],
- [941, 586],
- [940, 1],
- [951, 587],
- [950, 588],
- [949, 1],
- [945, 589],
- [944, 590],
- [943, 1],
- [884, 428],
- [908, 591],
- [892, 428],
- [885, 428],
- [886, 428],
- [891, 428],
- [935, 428],
- [953, 428],
- [877, 428],
- [934, 428],
- [882, 428],
- [881, 592],
- [878, 428],
- [930, 428],
- [931, 428],
- [929, 428],
- [932, 428],
- [876, 593],
- [933, 428],
- [873, 428],
- [880, 428],
- [889, 428],
- [922, 1],
- [925, 594],
- [924, 595],
- [921, 428],
- [923, 428],
- [928, 596],
- [926, 428],
- [927, 428],
- [919, 597],
- [920, 598],
- [918, 599],
- [916, 600],
- [915, 601],
- [910, 602],
- [914, 603],
- [913, 604],
- [909, 605],
- [912, 1],
- [917, 606],
- [911, 1],
- [1216, 607],
- [1211, 1],
- [1214, 608],
- [1212, 428],
- [1213, 1],
- [1217, 609],
- [1188, 428],
- [1189, 610],
- [1201, 428],
- [1192, 611],
- [1193, 428],
- [1145, 612],
- [1174, 613],
- [1173, 614],
- [1146, 615],
- [1194, 1],
- [1195, 616],
- [1196, 428],
- [1176, 318],
- [1175, 428],
- [1197, 617],
- [1198, 428],
- [1203, 428],
- [1187, 428],
- [1199, 428],
- [1200, 428],
- [1202, 428],
- [1190, 428],
- [1191, 618],
- [1215, 1],
- [1181, 619],
- [1183, 318],
- [1182, 1],
- [1204, 428],
- [1172, 620],
- [1208, 1],
- [1184, 621],
- [1185, 428],
- [1168, 622],
- [1169, 623],
- [1170, 624],
- [1171, 625],
- [1206, 626],
- [1210, 428],
- [1209, 1],
- [1186, 1],
- [1207, 1],
- [1205, 1],
- [1144, 432],
- [1367, 627],
- [1357, 428],
- [1358, 628],
- [1353, 428],
- [1354, 428],
- [1355, 428],
- [1356, 428],
- [1224, 428],
- [1219, 629],
- [1223, 630],
- [1344, 631],
- [1349, 632],
- [1325, 633],
- [1340, 634],
- [1230, 635],
- [1234, 636],
- [1231, 1],
- [1233, 637],
- [1232, 325],
- [1362, 638],
- [1363, 639],
- [1360, 640],
- [1361, 641],
- [1359, 325],
- [1336, 642],
- [1350, 632],
- [1238, 643],
- [1311, 644],
- [1310, 645],
- [1314, 646],
- [1312, 325],
- [1313, 1],
- [1366, 428],
- [1242, 647],
- [1329, 648],
- [1319, 649],
- [1351, 632],
- [1352, 632],
- [1245, 650],
- [1249, 651],
- [1253, 652],
- [1257, 653],
- [1261, 654],
- [1348, 632],
- [1278, 655],
- [1279, 632],
- [1306, 656],
- [1265, 657],
- [1333, 658],
- [1347, 659],
- [1345, 318],
- [1346, 428],
- [1364, 660],
- [1365, 661],
- [1218, 662],
- [1143, 432],
- [1161, 1],
- [1162, 663],
- [1151, 664],
- [1167, 665],
- [1163, 666],
- [1165, 667],
- [1147, 1],
- [1160, 428],
- [1164, 668],
- [1158, 669],
- [1150, 667],
- [1153, 669],
- [1156, 428],
- [1157, 268],
- [1149, 667],
- [1152, 670],
- [1155, 671],
- [1166, 1],
- [1154, 672],
- [1159, 1],
- [1148, 432],
- [1109, 673],
- [1115, 674],
- [1114, 428],
- [1113, 428],
- [1112, 675],
- [1110, 428],
- [1111, 676],
- [994, 432],
- [1380, 677],
- [1379, 678],
- [1397, 679],
- [1396, 1],
- [1398, 680],
- [1320, 681],
- [2047, 1],
- [2024, 682],
- [2048, 683],
- [2023, 1],
- [67, 1],
- [60, 1],
- [265, 684],
- [266, 684],
- [267, 685],
- [219, 686],
- [268, 687],
- [269, 688],
- [270, 689],
- [214, 1],
- [217, 690],
- [215, 1],
- [216, 1],
- [271, 691],
- [272, 692],
- [273, 693],
- [274, 694],
- [275, 695],
- [276, 696],
- [277, 696],
- [278, 697],
- [279, 698],
- [280, 699],
- [281, 700],
- [220, 1],
- [218, 1],
- [282, 701],
- [283, 702],
- [284, 703],
- [318, 704],
- [285, 705],
- [286, 1],
- [287, 706],
- [288, 707],
- [289, 708],
- [290, 361],
- [291, 709],
- [292, 710],
- [293, 711],
- [294, 712],
- [295, 713],
- [296, 713],
- [297, 714],
- [298, 1],
- [299, 715],
- [300, 716],
- [302, 717],
- [301, 718],
- [303, 719],
- [304, 720],
- [305, 721],
- [306, 722],
- [307, 723],
- [308, 724],
- [309, 725],
- [310, 726],
- [311, 727],
- [312, 728],
- [313, 729],
- [314, 730],
- [315, 731],
- [221, 1],
- [222, 1],
- [223, 1],
- [262, 732],
- [263, 1],
- [264, 1],
- [316, 733],
- [317, 734],
- [1273, 735],
- [1272, 736],
- [1271, 735],
- [324, 737],
- [322, 63],
- [325, 738],
- [321, 63],
- [588, 739],
- [323, 739],
- [319, 740],
- [586, 1],
- [320, 741],
- [205, 1],
- [207, 742],
- [585, 63],
- [355, 63],
- [81, 743],
- [82, 744],
- [147, 745],
- [155, 746],
- [108, 747],
- [109, 747],
- [119, 748],
- [107, 749],
- [106, 1],
- [110, 747],
- [111, 747],
- [112, 747],
- [113, 747],
- [114, 747],
- [115, 747],
- [116, 747],
- [117, 747],
- [118, 747],
- [120, 750],
- [156, 751],
- [151, 752],
- [121, 753],
- [153, 754],
- [152, 755],
- [150, 756],
- [154, 757],
- [148, 758],
- [133, 758],
- [146, 758],
- [134, 758],
- [135, 758],
- [136, 758],
- [137, 758],
- [138, 758],
- [128, 759],
- [139, 758],
- [129, 760],
- [140, 758],
- [130, 758],
- [145, 761],
- [132, 762],
- [127, 1],
- [141, 758],
- [142, 758],
- [131, 758],
- [143, 758],
- [144, 758],
- [149, 763],
- [123, 764],
- [125, 765],
- [124, 766],
- [122, 767],
- [126, 768],
- [73, 769],
- [77, 770],
- [74, 1],
- [75, 771],
- [76, 772],
- [78, 1],
- [79, 769],
- [88, 773],
- [89, 774],
- [90, 769],
- [102, 775],
- [91, 776],
- [86, 777],
- [94, 1],
- [87, 778],
- [92, 779],
- [93, 780],
- [98, 781],
- [84, 782],
- [85, 783],
- [83, 773],
- [99, 1],
- [100, 1],
- [101, 1],
- [172, 1],
- [174, 784],
- [171, 784],
- [176, 785],
- [173, 786],
- [175, 784],
- [177, 786],
- [180, 787],
- [178, 786],
- [179, 786],
- [184, 788],
- [186, 789],
- [181, 1],
- [182, 1],
- [183, 784],
- [187, 790],
- [185, 1],
- [191, 791],
- [159, 1],
- [104, 786],
- [164, 792],
- [168, 793],
- [162, 794],
- [158, 795],
- [105, 777],
- [163, 796],
- [161, 797],
- [169, 798],
- [157, 799],
- [160, 800],
- [165, 801],
- [166, 802],
- [167, 803],
- [170, 804],
- [103, 805],
- [189, 1],
- [190, 806],
- [188, 1],
- [95, 777],
- [97, 807],
- [96, 1],
- [224, 1],
- [1492, 808],
- [1491, 809],
- [1490, 1],
- [2539, 810],
- [2664, 811],
- [2665, 812],
- [2633, 813],
- [2668, 814],
- [2663, 815],
- [2660, 816],
- [2661, 817],
- [2632, 818],
- [2659, 819],
- [2655, 820],
- [2670, 821],
- [2662, 244],
- [2657, 822],
- [2658, 818],
- [2773, 823],
- [2674, 824],
- [2673, 63],
- [2669, 825],
- [2675, 814],
- [2676, 826],
- [2671, 827],
- [2666, 828],
- [2667, 829],
- [2672, 830],
- [2654, 831],
- [2634, 818],
- [2650, 832],
- [2649, 1],
- [2647, 833],
- [2635, 818],
- [2643, 834],
- [2636, 835],
- [2644, 836],
- [2652, 837],
- [2637, 838],
- [2638, 839],
- [2640, 840],
- [2653, 841],
- [2648, 842],
- [2646, 843],
- [2642, 844],
- [2639, 838],
- [2645, 818],
- [2641, 845],
- [2651, 846],
- [2624, 1],
- [2627, 1],
- [2629, 847],
- [2628, 847],
- [2631, 848],
- [2630, 847],
- [2626, 849],
- [2625, 850],
- [2623, 1],
- [2656, 1],
- [206, 1],
- [1646, 851],
- [1625, 852],
- [1722, 1],
- [1626, 853],
- [1562, 851],
- [1563, 851],
- [1564, 851],
- [1565, 851],
- [1566, 851],
- [1567, 851],
- [1568, 851],
- [1569, 851],
- [1570, 851],
- [1571, 851],
- [1572, 851],
- [1573, 851],
- [1574, 851],
- [1575, 851],
- [1576, 851],
- [1577, 851],
- [1578, 851],
- [1579, 851],
- [1558, 1],
- [1580, 851],
- [1581, 851],
- [1582, 1],
- [1583, 851],
- [1584, 851],
- [1585, 851],
- [1586, 851],
- [1587, 851],
- [1588, 851],
- [1589, 851],
- [1590, 851],
- [1591, 851],
- [1592, 851],
- [1593, 851],
- [1594, 851],
- [1595, 851],
- [1596, 851],
- [1597, 851],
- [1598, 851],
- [1599, 851],
- [1600, 851],
- [1601, 851],
- [1602, 851],
- [1603, 851],
- [1604, 851],
- [1605, 851],
- [1606, 851],
- [1607, 851],
- [1608, 851],
- [1609, 851],
- [1610, 851],
- [1611, 851],
- [1612, 851],
- [1613, 851],
- [1614, 851],
- [1615, 851],
- [1616, 851],
- [1617, 851],
- [1618, 851],
- [1619, 851],
- [1620, 851],
- [1621, 851],
- [1622, 851],
- [1623, 851],
- [1624, 851],
- [1627, 854],
- [1628, 851],
- [1629, 851],
- [1630, 855],
- [1631, 856],
- [1632, 851],
- [1633, 851],
- [1634, 851],
- [1635, 851],
- [1636, 851],
- [1637, 851],
- [1638, 851],
- [1560, 1],
- [1639, 851],
- [1640, 851],
- [1641, 851],
- [1642, 851],
- [1643, 851],
- [1644, 851],
- [1645, 851],
- [1647, 857],
- [1648, 851],
- [1649, 851],
- [1650, 851],
- [1651, 851],
- [1652, 851],
- [1653, 851],
- [1654, 851],
- [1655, 851],
- [1656, 851],
- [1657, 851],
- [1658, 851],
- [1659, 851],
- [1660, 851],
- [1661, 851],
- [1662, 851],
- [1663, 851],
- [1664, 851],
- [1665, 851],
- [1666, 1],
- [1667, 1],
- [1668, 1],
- [1815, 858],
- [1669, 851],
- [1670, 851],
- [1671, 851],
- [1672, 851],
- [1673, 851],
- [1674, 851],
- [1675, 1],
- [1676, 851],
- [1677, 1],
- [1678, 851],
- [1679, 851],
- [1680, 851],
- [1681, 851],
- [1682, 851],
- [1683, 851],
- [1684, 851],
- [1685, 851],
- [1686, 851],
- [1687, 851],
- [1688, 851],
- [1689, 851],
- [1690, 851],
- [1691, 851],
- [1692, 851],
- [1693, 851],
- [1694, 851],
- [1695, 851],
- [1696, 851],
- [1697, 851],
- [1698, 851],
- [1699, 851],
- [1700, 851],
- [1701, 851],
- [1702, 851],
- [1703, 851],
- [1704, 851],
- [1705, 851],
- [1706, 851],
- [1707, 851],
- [1708, 851],
- [1709, 851],
- [1710, 1],
- [1711, 851],
- [1712, 851],
- [1713, 851],
- [1714, 851],
- [1715, 851],
- [1716, 851],
- [1717, 851],
- [1718, 851],
- [1719, 851],
- [1720, 851],
- [1721, 851],
- [1723, 859],
- [1911, 860],
- [1816, 853],
- [1818, 853],
- [1819, 853],
- [1820, 853],
- [1821, 853],
- [1822, 853],
- [1817, 853],
- [1823, 853],
- [1825, 853],
- [1824, 853],
- [1826, 853],
- [1827, 853],
- [1828, 853],
- [1829, 853],
- [1830, 853],
- [1831, 853],
- [1832, 853],
- [1833, 853],
- [1835, 853],
- [1834, 853],
- [1836, 853],
- [1837, 853],
- [1838, 853],
- [1839, 853],
- [1840, 853],
- [1841, 853],
- [1842, 853],
- [1843, 853],
- [1844, 853],
- [1845, 853],
- [1846, 853],
- [1847, 853],
- [1848, 853],
- [1849, 853],
- [1850, 853],
- [1852, 853],
- [1853, 853],
- [1851, 853],
- [1854, 853],
- [1855, 853],
- [1856, 853],
- [1857, 853],
- [1858, 853],
- [1859, 853],
- [1860, 853],
- [1861, 853],
- [1862, 853],
- [1863, 853],
- [1864, 853],
- [1865, 853],
- [1867, 853],
- [1866, 853],
- [1869, 853],
- [1868, 853],
- [1870, 853],
- [1871, 853],
- [1872, 853],
- [1873, 853],
- [1874, 853],
- [1875, 853],
- [1876, 853],
- [1877, 853],
- [1878, 853],
- [1879, 853],
- [1880, 853],
- [1881, 853],
- [1882, 853],
- [1884, 853],
- [1883, 853],
- [1885, 853],
- [1886, 853],
- [1887, 853],
- [1889, 853],
- [1888, 853],
- [1890, 853],
- [1891, 853],
- [1892, 853],
- [1893, 853],
- [1894, 853],
- [1895, 853],
- [1897, 853],
- [1896, 853],
- [1898, 853],
- [1899, 853],
- [1900, 853],
- [1901, 853],
- [1902, 853],
- [1559, 851],
- [1903, 853],
- [1904, 853],
- [1906, 853],
- [1905, 853],
- [1907, 853],
- [1908, 853],
- [1909, 853],
- [1910, 853],
- [1724, 851],
- [1725, 851],
- [1726, 1],
- [1727, 1],
- [1728, 1],
- [1729, 851],
- [1730, 1],
- [1731, 1],
- [1732, 1],
- [1733, 1],
- [1734, 1],
- [1735, 851],
- [1736, 851],
- [1737, 851],
- [1738, 851],
- [1739, 851],
- [1740, 851],
- [1741, 851],
- [1742, 851],
- [1747, 861],
- [1745, 862],
- [1744, 863],
- [1746, 864],
- [1743, 851],
- [1748, 851],
- [1749, 851],
- [1750, 851],
- [1751, 851],
- [1752, 851],
- [1753, 851],
- [1754, 851],
- [1755, 851],
- [1756, 851],
- [1757, 851],
- [1758, 1],
- [1759, 1],
- [1760, 851],
- [1761, 851],
- [1762, 1],
- [1763, 1],
- [1764, 1],
- [1765, 851],
- [1766, 851],
- [1767, 851],
- [1768, 851],
- [1769, 857],
- [1770, 851],
- [1771, 851],
- [1772, 851],
- [1773, 851],
- [1774, 851],
- [1775, 851],
- [1776, 851],
- [1777, 851],
- [1778, 851],
- [1779, 851],
- [1780, 851],
- [1781, 851],
- [1782, 851],
- [1783, 851],
- [1784, 851],
- [1785, 851],
- [1786, 851],
- [1787, 851],
- [1788, 851],
- [1789, 851],
- [1790, 851],
- [1791, 851],
- [1792, 851],
- [1793, 851],
- [1794, 851],
- [1795, 851],
- [1796, 851],
- [1797, 851],
- [1798, 851],
- [1799, 851],
- [1800, 851],
- [1801, 851],
- [1802, 851],
- [1803, 851],
- [1804, 851],
- [1805, 851],
- [1806, 851],
- [1807, 851],
- [1808, 851],
- [1809, 851],
- [1810, 851],
- [1561, 865],
- [1811, 1],
- [1812, 1],
- [1813, 1],
- [1814, 1],
- [2153, 1],
- [2020, 866],
- [2021, 867],
- [1986, 1],
- [1994, 868],
- [1988, 869],
- [1995, 1],
- [2017, 870],
- [1992, 871],
- [2016, 872],
- [2013, 873],
- [1996, 874],
- [1997, 1],
- [1990, 1],
- [1987, 1],
- [2018, 875],
- [2014, 876],
- [1998, 1],
- [2015, 877],
- [1999, 878],
- [2001, 879],
- [2002, 880],
- [1991, 881],
- [2003, 882],
- [2004, 881],
- [2006, 882],
- [2007, 883],
- [2008, 884],
- [2010, 885],
- [2005, 886],
- [2011, 887],
- [2012, 888],
- [1989, 889],
- [2009, 890],
- [2000, 1],
- [1993, 891],
- [2019, 892],
- [71, 257],
- [192, 893],
- [201, 894],
- [202, 895],
- [200, 257],
- [193, 257],
- [64, 896],
- [69, 897],
- [68, 257],
- [2078, 1],
- [2585, 63],
- [1387, 898],
- [1386, 1],
- [1489, 63],
- [1370, 1],
- [1392, 899],
- [1391, 63],
- [1389, 1],
- [1388, 1],
- [1390, 900],
- [2612, 63],
- [609, 901],
- [614, 902],
- [621, 903],
- [604, 904],
- [359, 1],
- [367, 905],
- [507, 906],
- [510, 907],
- [482, 1],
- [495, 908],
- [502, 909],
- [384, 1],
- [484, 1],
- [365, 1],
- [481, 910],
- [527, 911],
- [366, 1],
- [357, 912],
- [509, 913],
- [511, 914],
- [512, 915],
- [583, 916],
- [476, 917],
- [429, 918],
- [489, 919],
- [490, 920],
- [488, 921],
- [487, 1],
- [483, 922],
- [508, 923],
- [368, 924],
- [553, 1],
- [554, 925],
- [395, 926],
- [369, 927],
- [396, 926],
- [432, 926],
- [335, 926],
- [505, 928],
- [504, 1],
- [494, 929],
- [599, 1],
- [344, 1],
- [620, 930],
- [561, 931],
- [562, 932],
- [558, 933],
- [638, 1],
- [459, 1],
- [563, 94],
- [559, 934],
- [643, 935],
- [642, 936],
- [637, 1],
- [410, 1],
- [462, 937],
- [461, 1],
- [636, 938],
- [560, 63],
- [415, 939],
- [422, 940],
- [424, 941],
- [414, 1],
- [419, 942],
- [421, 943],
- [423, 944],
- [418, 945],
- [416, 1],
- [420, 946],
- [639, 1],
- [635, 1],
- [641, 947],
- [640, 1],
- [413, 948],
- [630, 949],
- [633, 950],
- [403, 951],
- [402, 952],
- [401, 953],
- [646, 63],
- [400, 954],
- [389, 1],
- [648, 1],
- [1486, 955],
- [1485, 1],
- [649, 63],
- [650, 956],
- [327, 1],
- [491, 957],
- [492, 958],
- [493, 959],
- [331, 1],
- [496, 1],
- [351, 960],
- [326, 1],
- [575, 63],
- [333, 961],
- [574, 962],
- [573, 963],
- [564, 1],
- [565, 1],
- [572, 1],
- [567, 1],
- [570, 964],
- [566, 1],
- [568, 965],
- [571, 966],
- [569, 965],
- [364, 1],
- [361, 1],
- [362, 926],
- [516, 1],
- [521, 967],
- [522, 968],
- [520, 969],
- [518, 970],
- [519, 971],
- [514, 1],
- [581, 94],
- [356, 94],
- [608, 972],
- [615, 973],
- [619, 974],
- [450, 975],
- [449, 1],
- [444, 1],
- [595, 976],
- [603, 977],
- [477, 978],
- [478, 979],
- [556, 980],
- [466, 1],
- [579, 981],
- [454, 63],
- [471, 982],
- [582, 983],
- [467, 1],
- [470, 984],
- [468, 1],
- [580, 985],
- [577, 986],
- [576, 1],
- [578, 1],
- [474, 1],
- [552, 987],
- [339, 988],
- [452, 989],
- [456, 990],
- [472, 991],
- [475, 992],
- [464, 993],
- [457, 994],
- [602, 995],
- [530, 996],
- [448, 997],
- [336, 998],
- [601, 999],
- [332, 1000],
- [523, 1001],
- [515, 1],
- [524, 1002],
- [541, 1003],
- [513, 1],
- [540, 1004],
- [213, 1],
- [535, 1005],
- [360, 1],
- [555, 1006],
- [531, 1],
- [345, 1],
- [347, 1],
- [486, 1],
- [539, 1007],
- [363, 1],
- [387, 1008],
- [473, 1009],
- [393, 1010],
- [453, 1],
- [538, 1],
- [517, 1],
- [543, 1011],
- [544, 1012],
- [485, 1],
- [546, 1013],
- [548, 1014],
- [547, 1015],
- [497, 1],
- [537, 998],
- [550, 1016],
- [447, 1017],
- [536, 1018],
- [542, 1019],
- [372, 1],
- [376, 1],
- [375, 1],
- [374, 1],
- [379, 1],
- [373, 1],
- [382, 1],
- [381, 1],
- [378, 1],
- [377, 1],
- [380, 1],
- [383, 1020],
- [371, 1],
- [439, 1021],
- [438, 1],
- [443, 1022],
- [440, 1023],
- [442, 1024],
- [445, 1022],
- [441, 1023],
- [352, 1025],
- [431, 1026],
- [598, 1027],
- [596, 1],
- [625, 1028],
- [627, 1029],
- [591, 1030],
- [626, 1031],
- [340, 1032],
- [337, 1032],
- [370, 1],
- [354, 1033],
- [353, 1034],
- [349, 1035],
- [350, 1036],
- [358, 1037],
- [386, 1037],
- [397, 1037],
- [433, 1038],
- [398, 1038],
- [342, 1039],
- [341, 1],
- [437, 1040],
- [436, 1041],
- [435, 1042],
- [434, 1043],
- [343, 1044],
- [584, 1045],
- [385, 1046],
- [590, 1047],
- [557, 1048],
- [587, 1049],
- [589, 1050],
- [480, 1051],
- [479, 1052],
- [460, 1053],
- [446, 1054],
- [428, 1055],
- [430, 1056],
- [427, 1057],
- [549, 1058],
- [451, 1],
- [613, 1],
- [348, 1059],
- [551, 1060],
- [597, 1061],
- [458, 1],
- [388, 1062],
- [465, 1063],
- [463, 1064],
- [390, 1065],
- [525, 1066],
- [592, 1],
- [391, 1067],
- [526, 1067],
- [611, 1],
- [610, 1],
- [612, 1],
- [594, 1],
- [593, 1],
- [528, 1068],
- [455, 1],
- [425, 1069],
- [346, 1070],
- [404, 1],
- [330, 1071],
- [392, 1],
- [617, 63],
- [329, 1],
- [629, 1072],
- [412, 63],
- [623, 94],
- [411, 1073],
- [606, 1074],
- [409, 1072],
- [334, 1],
- [631, 1075],
- [407, 63],
- [408, 63],
- [399, 1],
- [328, 1],
- [406, 1076],
- [405, 1077],
- [394, 1078],
- [469, 712],
- [529, 712],
- [545, 1],
- [533, 1079],
- [532, 1],
- [417, 948],
- [338, 1],
- [426, 63],
- [600, 960],
- [607, 1080],
- [208, 63],
- [211, 1081],
- [212, 1082],
- [209, 63],
- [210, 1],
- [506, 1083],
- [501, 1084],
- [500, 1],
- [499, 1085],
- [498, 1],
- [605, 1086],
- [616, 1087],
- [618, 1088],
- [622, 1089],
- [1487, 1090],
- [624, 1091],
- [628, 1092],
- [656, 1093],
- [632, 1093],
- [655, 1094],
- [634, 1095],
- [644, 1096],
- [645, 1097],
- [647, 1098],
- [651, 1099],
- [654, 960],
- [653, 1],
- [652, 1100],
- [2680, 1],
- [2720, 1101],
- [2716, 1102],
- [2717, 1103],
- [2721, 1104],
- [2719, 1],
- [2718, 1102],
- [2715, 1101],
- [2714, 1],
- [1270, 1105],
- [1267, 1100],
- [1269, 1106],
- [1268, 1],
- [1266, 1],
- [2694, 1107],
- [2693, 1108],
- [1538, 1109],
- [1972, 1110],
- [1929, 63],
- [1970, 1111],
- [1931, 1112],
- [1930, 1113],
- [1969, 1114],
- [1971, 1115],
- [1912, 63],
- [1913, 63],
- [1914, 63],
- [1937, 1116],
- [1938, 1116],
- [1939, 1110],
- [1940, 63],
- [1941, 63],
- [1942, 1117],
- [1915, 1118],
- [1943, 63],
- [1944, 63],
- [1945, 1119],
- [1946, 63],
- [1947, 63],
- [1948, 63],
- [1949, 63],
- [1950, 63],
- [1951, 63],
- [1916, 1118],
- [1954, 1118],
- [1955, 63],
- [1952, 63],
- [1953, 63],
- [1956, 63],
- [1957, 1119],
- [1958, 1120],
- [1959, 1111],
- [1960, 1111],
- [1961, 1111],
- [1963, 1111],
- [1964, 1],
- [1962, 1111],
- [1965, 1111],
- [1966, 1121],
- [1973, 1122],
- [1974, 1123],
- [1983, 1124],
- [1928, 1125],
- [1917, 1126],
- [1918, 1111],
- [1919, 1126],
- [1920, 1111],
- [1921, 1],
- [1922, 1111],
- [1923, 1],
- [1925, 1111],
- [1926, 1111],
- [1924, 1111],
- [1927, 1111],
- [1968, 1111],
- [1935, 1127],
- [1936, 1128],
- [1932, 1129],
- [1933, 1130],
- [1967, 1131],
- [1934, 1132],
- [1975, 1126],
- [1976, 1126],
- [1982, 1133],
- [1977, 1111],
- [1978, 1126],
- [1979, 1126],
- [1980, 1111],
- [1981, 1126],
- [2548, 1],
- [2563, 1134],
- [2564, 1134],
- [2578, 1135],
- [2565, 1136],
- [2566, 1136],
- [2567, 1137],
- [2561, 1138],
- [2559, 1139],
- [2550, 1],
- [2554, 1140],
- [2558, 1141],
- [2556, 1142],
- [2562, 1143],
- [2551, 1144],
- [2552, 1145],
- [2553, 1146],
- [2555, 1147],
- [2557, 1148],
- [2560, 1149],
- [2568, 1136],
- [2569, 1136],
- [2570, 1136],
- [2571, 1134],
- [2572, 1136],
- [2573, 1136],
- [2549, 1136],
- [2574, 1],
- [2576, 1150],
- [2575, 1136],
- [2577, 1134],
- [2581, 63],
- [2596, 94],
- [2064, 1],
- [2062, 1151],
- [2066, 1152],
- [2133, 1153],
- [2128, 1154],
- [2031, 1155],
- [2099, 1156],
- [2092, 1157],
- [2149, 1158],
- [2087, 1159],
- [2132, 1160],
- [2129, 1161],
- [2081, 1162],
- [2091, 1163],
- [2134, 1164],
- [2135, 1164],
- [2136, 1165],
- [2029, 1166],
- [2098, 1167],
- [2144, 1168],
- [2138, 1168],
- [2146, 1168],
- [2150, 1168],
- [2137, 1168],
- [2139, 1168],
- [2142, 1168],
- [2145, 1168],
- [2141, 1169],
- [2143, 1168],
- [2147, 1170],
- [2140, 1171],
- [2041, 1172],
- [2113, 63],
- [2110, 1173],
- [2114, 63],
- [2052, 1168],
- [2042, 1168],
- [2105, 1174],
- [2030, 1175],
- [2051, 1176],
- [2055, 1177],
- [2112, 1168],
- [2027, 63],
- [2111, 1178],
- [2109, 63],
- [2108, 1168],
- [2043, 63],
- [2155, 1179],
- [2123, 1171],
- [2103, 1180],
- [2159, 1181],
- [2124, 1182],
- [2122, 1183],
- [2118, 1184],
- [2120, 1185],
- [2125, 1186],
- [2127, 1187],
- [2121, 1],
- [2119, 1],
- [2117, 63],
- [2050, 1188],
- [2026, 1168],
- [2116, 1168],
- [2065, 1189],
- [2115, 63],
- [2090, 1188],
- [2148, 1168],
- [2083, 1190],
- [2039, 1191],
- [2044, 1192],
- [2093, 1193],
- [2095, 1190],
- [2074, 1194],
- [2077, 1190],
- [2056, 1195],
- [2076, 1196],
- [2085, 1197],
- [2086, 1198],
- [2082, 1199],
- [2096, 1200],
- [2084, 1201],
- [2061, 1202],
- [2104, 1203],
- [2100, 1204],
- [2101, 1205],
- [2097, 1206],
- [2075, 1207],
- [2063, 1208],
- [2068, 1209],
- [2045, 1210],
- [2072, 1211],
- [2073, 1212],
- [2069, 1213],
- [2046, 1214],
- [2057, 1215],
- [2094, 1198],
- [2040, 1216],
- [2102, 1],
- [2067, 1217],
- [2060, 1218],
- [2088, 1],
- [2151, 1],
- [2079, 1],
- [2126, 1219],
- [2089, 1220],
- [2157, 1221],
- [2158, 1222],
- [2130, 1],
- [2156, 1223],
- [2053, 1],
- [2080, 1],
- [2032, 1223],
- [2059, 1224],
- [2154, 1225],
- [2058, 1226],
- [2131, 1227],
- [2070, 1],
- [2106, 1],
- [2107, 1228],
- [2054, 1],
- [2071, 1],
- [2152, 1],
- [2028, 63],
- [2036, 1229],
- [2033, 1],
- [2035, 1],
- [534, 1230],
- [2614, 63],
- [1493, 1],
- [194, 1],
- [195, 893],
- [196, 1231],
- [58, 1],
- [59, 1],
- [10, 1],
- [11, 1],
- [13, 1],
- [12, 1],
- [2, 1],
- [14, 1],
- [15, 1],
- [16, 1],
- [17, 1],
- [18, 1],
- [19, 1],
- [20, 1],
- [21, 1],
- [3, 1],
- [22, 1],
- [23, 1],
- [4, 1],
- [24, 1],
- [28, 1],
- [25, 1],
- [26, 1],
- [27, 1],
- [29, 1],
- [30, 1],
- [31, 1],
- [5, 1],
- [32, 1],
- [33, 1],
- [34, 1],
- [35, 1],
- [6, 1],
- [39, 1],
- [36, 1],
- [37, 1],
- [38, 1],
- [40, 1],
- [7, 1],
- [41, 1],
- [46, 1],
- [47, 1],
- [42, 1],
- [43, 1],
- [44, 1],
- [45, 1],
- [8, 1],
- [51, 1],
- [48, 1],
- [49, 1],
- [50, 1],
- [52, 1],
- [9, 1],
- [53, 1],
- [54, 1],
- [55, 1],
- [57, 1],
- [56, 1],
- [1, 1],
- [80, 769],
- [72, 1],
- [240, 1232],
- [250, 1233],
- [239, 1232],
- [260, 1234],
- [231, 1235],
- [230, 1236],
- [259, 1100],
- [253, 1237],
- [258, 1238],
- [233, 1239],
- [247, 1240],
- [232, 1241],
- [256, 1242],
- [228, 1243],
- [227, 1100],
- [257, 1244],
- [229, 1245],
- [234, 1246],
- [235, 1],
- [238, 1246],
- [225, 1],
- [261, 1247],
- [251, 1248],
- [242, 1249],
- [243, 1250],
- [245, 1251],
- [241, 1252],
- [244, 1253],
- [254, 1100],
- [236, 1254],
- [237, 1255],
- [246, 1256],
- [226, 645],
- [249, 1248],
- [248, 1246],
- [252, 1],
- [255, 1257],
- [2722, 63],
- [2543, 810],
- [2025, 1258],
- [2049, 1259],
- [2762, 1260],
- [2749, 1261],
- [2751, 1262],
- [2758, 1263],
- [2753, 1],
- [2754, 1],
- [2752, 1264],
- [2755, 1265],
- [2747, 1],
- [2748, 1],
- [2759, 1266],
- [2750, 1267],
- [2756, 1],
- [2757, 1268],
- [1469, 1269],
- [1473, 1270],
- [1470, 1270],
- [1466, 1269],
- [1474, 1271],
- [1471, 1272],
- [1475, 1260],
- [1472, 1270],
- [1467, 1273],
- [1468, 1274],
- [1462, 1275],
- [1406, 1276],
- [1408, 1277],
- [1461, 1],
- [1407, 1278],
- [1465, 1279],
- [1464, 1280],
- [1463, 1281],
- [1399, 1],
- [1409, 1276],
- [1410, 1],
- [1401, 1282],
- [1405, 1283],
- [1400, 1],
- [1402, 1284],
- [1403, 1285],
- [1404, 1],
- [1476, 1286],
- [1411, 1287],
- [1412, 1287],
- [1413, 1287],
- [1414, 1287],
- [1415, 1287],
- [1416, 1287],
- [1417, 1287],
- [1418, 1287],
- [1419, 1287],
- [1420, 1287],
- [1421, 1287],
- [1422, 1287],
- [1423, 1287],
- [1425, 1287],
- [1424, 1287],
- [1426, 1287],
- [1427, 1287],
- [1428, 1287],
- [1429, 1287],
- [1460, 1288],
- [1430, 1287],
- [1431, 1287],
- [1432, 1287],
- [1433, 1287],
- [1434, 1287],
- [1435, 1287],
- [1436, 1287],
- [1437, 1287],
- [1438, 1287],
- [1439, 1287],
- [1440, 1287],
- [1441, 1287],
- [1442, 1287],
- [1444, 1287],
- [1443, 1287],
- [1445, 1287],
- [1446, 1287],
- [1447, 1287],
- [1448, 1287],
- [1449, 1287],
- [1450, 1287],
- [1451, 1287],
- [1452, 1287],
- [1453, 1287],
- [1454, 1287],
- [1455, 1287],
- [1456, 1287],
- [1459, 1287],
- [1457, 1287],
- [1458, 1287],
- [2730, 1289],
- [2708, 1290],
- [2710, 1291],
- [2725, 1292],
- [2726, 1293],
- [2724, 1294],
- [2712, 1295],
- [2723, 1296],
- [2727, 1297],
- [2728, 1298],
- [2707, 241],
- [2729, 1],
- [2763, 1],
- [2764, 1299],
- [1539, 1300],
- [1541, 1301],
- [1540, 1302],
- [1542, 1303],
- [1543, 1301],
- [1544, 1304],
- [1545, 1305],
- [1546, 1306],
- [1547, 1300],
- [1549, 1307],
- [1548, 1304],
- [1984, 1308],
- [1985, 1309],
- [2022, 1310],
- [2160, 1311],
- [2161, 1300],
- [2162, 1303],
- [2538, 1312],
- [2540, 1313],
- [2541, 1300],
- [2542, 1300],
- [2544, 1314],
- [2545, 1300],
- [2546, 1315],
- [2547, 1302],
- [2579, 1316],
- [2621, 1317],
- [2619, 63],
- [2620, 1318],
- [2580, 1301],
- [2582, 1319],
- [2622, 1320],
- [2584, 1302],
- [2586, 1321],
- [2583, 1309],
- [2587, 1304],
- [2588, 13],
- [2589, 1301],
- [2590, 1322],
- [2591, 1323],
- [2592, 1322],
- [2593, 1301],
- [2594, 1301],
- [2595, 1300],
- [2597, 1324],
- [2598, 1301],
- [2599, 1300],
- [2600, 1325],
- [2601, 1300],
- [2602, 1323],
- [2603, 13],
- [2604, 1301],
- [2615, 1326],
- [2605, 1327],
- [2606, 1309],
- [2607, 1328],
- [2608, 1301],
- [2609, 1309],
- [2610, 1304],
- [2611, 1309],
- [2613, 1329],
- [2617, 1304],
- [2616, 1304],
- [2618, 1301],
- [197, 1330],
- [199, 1331],
- [203, 1332],
- [1394, 1]
- ],
- "semanticDiagnosticsPerFile": [
- [
- 2160,
- [
- {
- "start": 3034,
- "length": 7,
- "messageText": "Property 'payload' does not exist on type 'Omit, PropertiesReadFromContext> & { active?: boolean | undefined; allowEscapeViewBox?: AllowInDimension | undefined; ... 24 more ...; wrapperStyle?: CSSProperties | undefined; } & ClassAttributes<...> & HTMLAttributes<...> & { ...; }'.",
- "category": 1,
- "code": 2339
- },
- {
- "start": 3125,
- "length": 5,
- "messageText": "Property 'label' does not exist on type 'Omit, PropertiesReadFromContext> & { active?: boolean | undefined; allowEscapeViewBox?: AllowInDimension | undefined; ... 24 more ...; wrapperStyle?: CSSProperties | undefined; } & ClassAttributes<...> & HTMLAttributes<...> & { ...; }'.",
- "category": 1,
- "code": 2339
- },
- {
- "start": 4765,
- "length": 4,
- "messageText": "Parameter 'item' implicitly has an 'any' type.",
- "category": 1,
- "code": 7006
- },
- {
- "start": 4812,
- "length": 4,
- "messageText": "Parameter 'item' implicitly has an 'any' type.",
- "category": 1,
- "code": 7006
- },
- {
- "start": 4818,
- "length": 5,
- "messageText": "Parameter 'index' implicitly has an 'any' type.",
- "category": 1,
- "code": 7006
- },
- {
- "start": 7833,
- "length": 27,
- "code": 2344,
- "category": 1,
- "messageText": {
- "messageText": "Type '\"payload\" | \"verticalAlign\"' does not satisfy the constraint '\"string\" | \"filter\" | \"fill\" | \"values\" | \"x\" | \"y\" | \"id\" | \"name\" | \"type\" | \"key\" | \"children\" | \"className\" | \"style\" | \"clipPath\" | \"mask\" | \"path\" | \"suppressHydrationWarning\" | ... 430 more ... | \"portal\"'.",
- "category": 1,
- "code": 2344,
- "next": [
- {
- "messageText": "Type '\"payload\"' is not assignable to type '\"string\" | \"filter\" | \"fill\" | \"values\" | \"x\" | \"y\" | \"id\" | \"name\" | \"type\" | \"key\" | \"children\" | \"className\" | \"style\" | \"clipPath\" | \"mask\" | \"path\" | \"suppressHydrationWarning\" | ... 430 more ... | \"portal\"'.",
- "category": 1,
- "code": 2322
- }
- ]
- }
- },
- {
- "start": 7972,
- "length": 6,
- "code": 2339,
- "category": 1,
- "messageText": "Property 'length' does not exist on type '{}'."
- },
- {
- "start": 8204,
- "length": 6,
- "code": 2339,
- "category": 1,
- "messageText": "Property 'filter' does not exist on type '{}'."
- },
- {
- "start": 8212,
- "length": 4,
- "messageText": "Parameter 'item' implicitly has an 'any' type.",
- "category": 1,
- "code": 7006
- },
- {
- "start": 8257,
- "length": 4,
- "messageText": "Parameter 'item' implicitly has an 'any' type.",
- "category": 1,
- "code": 7006
- }
- ]
- ],
- [
- 2538,
- [
- {
- "start": 1750,
- "length": 6,
- "code": 2322,
- "category": 1,
- "messageText": {
- "messageText": "Type '{ size: \"icon-xs\"; variant: \"ghost\"; render: Element; \"data-slot\": string; className: string; disabled: boolean; }' is not assignable to type 'IntrinsicAttributes & Omit & ButtonHTMLAttributes & VariantProps<...> & { ...; }, \"size\"> & VariantProps<...>'.",
- "category": 1,
- "code": 2322,
- "next": [
- {
- "messageText": "Property 'render' does not exist on type 'IntrinsicAttributes & Omit & ButtonHTMLAttributes & VariantProps<...> & { ...; }, \"size\"> & VariantProps<...>'.",
- "category": 1,
- "code": 2339
- }
- ]
- }
- }
- ]
- ]
- ],
- "affectedFilesPendingEmit": [
- 204, 1393, 1395, 2746, 2765, 2766, 2774, 2775, 2778, 2738, 2739, 2745, 2743,
- 2741, 2740, 2744, 2742, 2776, 2777, 2767, 2768, 2772, 2769, 2770, 2771,
- 1488, 2731, 2732, 2733, 2735, 2736, 1477, 1478, 1480, 2737, 1481, 1484, 1479
- ],
- "version": "5.9.3"
-}
+{"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.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.es2025.float16.d.ts","../../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/@eslint/core/dist/cjs/types.d.cts","../../../node_modules/@eslint/config-helpers/dist/cjs/types.cts","../../../node_modules/@eslint/config-helpers/dist/cjs/index.d.cts","../../../node_modules/eslint/lib/types/config-api.d.ts","../../../node_modules/@eslint/core/dist/esm/types.d.ts","../../../node_modules/@eslint/compat/dist/esm/index.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@eslint/plugin-kit/dist/cjs/types.cts","../../../node_modules/@eslint/plugin-kit/dist/cjs/index.d.cts","../../../node_modules/eslint/lib/types/index.d.ts","../../../node_modules/@eslint/js/types/index.d.ts","../../../node_modules/eslint-plugin-import/node_modules/eslint/node_modules/@eslint/core/dist/cjs/types.d.cts","../../../node_modules/eslint-plugin-import/node_modules/eslint/lib/types/use-at-your-own-risk.d.ts","../../../node_modules/eslint-plugin-import/node_modules/eslint/lib/types/index.d.ts","../../../node_modules/eslint-plugin-import/index.d.ts","../../../node_modules/typescript/lib/typescript.d.ts","../../../node_modules/@typescript-eslint/types/dist/generated/ast-spec.d.ts","../../../node_modules/@typescript-eslint/types/dist/lib.d.ts","../../../node_modules/@typescript-eslint/types/dist/parser-options.d.ts","../../../node_modules/@typescript-eslint/types/dist/ts-estree.d.ts","../../../node_modules/@typescript-eslint/types/dist/index.d.ts","../../../node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/typescript-estree/dist/clear-caches.d.ts","../../../node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/typescript-estree/dist/create-program/getScriptKind.d.ts","../../../node_modules/typescript/lib/tsserverlibrary.d.ts","../../../node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/typescript-estree/node_modules/@typescript-eslint/project-service/dist/createProjectService.d.ts","../../../node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/typescript-estree/node_modules/@typescript-eslint/project-service/dist/index.d.ts","../../../node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/ts-nodes.d.ts","../../../node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/estree-to-ts-node-types.d.ts","../../../node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/index.d.ts","../../../node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/ExpiringCache.d.ts","../../../node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/index.d.ts","../../../node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/typescript-estree/dist/create-program/shared.d.ts","../../../node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/typescript-estree/dist/create-program/useProvidedPrograms.d.ts","../../../node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/typescript-estree/dist/getModifiers.d.ts","../../../node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/typescript-estree/dist/node-utils.d.ts","../../../node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/typescript-estree/dist/parser-options.d.ts","../../../node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/typescript-estree/dist/parser.d.ts","../../../node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/candidateTSConfigRootDirs.d.ts","../../../node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/typescript-estree/node_modules/@typescript-eslint/visitor-keys/dist/get-keys.d.ts","../../../node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/typescript-estree/node_modules/@typescript-eslint/visitor-keys/dist/visitor-keys.d.ts","../../../node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/typescript-estree/node_modules/@typescript-eslint/visitor-keys/dist/index.d.ts","../../../node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/typescript-estree/dist/simple-traverse.d.ts","../../../node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/typescript-estree/dist/version-check.d.ts","../../../node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/typescript-estree/dist/version.d.ts","../../../node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/typescript-estree/dist/withoutProjectParserOptions.d.ts","../../../node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/typescript-estree/dist/index.d.ts","../../../node_modules/@typescript-eslint/utils/dist/ts-estree.d.ts","../../../node_modules/@typescript-eslint/utils/dist/ts-eslint/AST.d.ts","../../../node_modules/@typescript-eslint/utils/dist/ts-eslint/ParserOptions.d.ts","../../../node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionType.d.ts","../../../node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionBase.d.ts","../../../node_modules/@typescript-eslint/scope-manager/dist/definition/CatchClauseDefinition.d.ts","../../../node_modules/@typescript-eslint/scope-manager/dist/definition/ClassNameDefinition.d.ts","../../../node_modules/@typescript-eslint/scope-manager/dist/definition/FunctionNameDefinition.d.ts","../../../node_modules/@typescript-eslint/scope-manager/dist/definition/ImplicitGlobalVariableDefinition.d.ts","../../../node_modules/@typescript-eslint/scope-manager/dist/definition/ImportBindingDefinition.d.ts","../../../node_modules/@typescript-eslint/scope-manager/dist/definition/ParameterDefinition.d.ts","../../../node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumMemberDefinition.d.ts","../../../node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumNameDefinition.d.ts","../../../node_modules/@typescript-eslint/scope-manager/dist/definition/TSModuleNameDefinition.d.ts","../../../node_modules/@typescript-eslint/scope-manager/dist/definition/TypeDefinition.d.ts","../../../node_modules/@typescript-eslint/scope-manager/dist/definition/VariableDefinition.d.ts","../../../node_modules/@typescript-eslint/scope-manager/dist/definition/Definition.d.ts","../../../node_modules/@typescript-eslint/scope-manager/dist/definition/index.d.ts","../../../node_modules/@typescript-eslint/scope-manager/dist/referencer/Reference.d.ts","../../../node_modules/@typescript-eslint/scope-manager/dist/variable/VariableBase.d.ts","../../../node_modules/@typescript-eslint/scope-manager/dist/variable/ESLintScopeVariable.d.ts","../../../node_modules/@typescript-eslint/scope-manager/dist/variable/Variable.d.ts","../../../node_modules/@typescript-eslint/scope-manager/dist/variable/ImplicitLibVariable.d.ts","../../../node_modules/@typescript-eslint/scope-manager/dist/variable/index.d.ts","../../../node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeType.d.ts","../../../node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionScope.d.ts","../../../node_modules/@typescript-eslint/scope-manager/dist/scope/GlobalScope.d.ts","../../../node_modules/@typescript-eslint/scope-manager/dist/scope/ModuleScope.d.ts","../../../node_modules/@typescript-eslint/scope-manager/dist/scope/TSModuleScope.d.ts","../../../node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeBase.d.ts","../../../node_modules/@typescript-eslint/scope-manager/dist/scope/CatchScope.d.ts","../../../node_modules/@typescript-eslint/scope-manager/dist/scope/ClassScope.d.ts","../../../node_modules/@typescript-eslint/scope-manager/dist/scope/ClassStaticBlockScope.d.ts","../../../node_modules/@typescript-eslint/scope-manager/dist/scope/ConditionalTypeScope.d.ts","../../../node_modules/@typescript-eslint/scope-manager/dist/scope/ForScope.d.ts","../../../node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionExpressionNameScope.d.ts","../../../node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionTypeScope.d.ts","../../../node_modules/@typescript-eslint/scope-manager/dist/scope/MappedTypeScope.d.ts","../../../node_modules/@typescript-eslint/scope-manager/dist/scope/SwitchScope.d.ts","../../../node_modules/@typescript-eslint/scope-manager/dist/scope/TSEnumScope.d.ts","../../../node_modules/@typescript-eslint/scope-manager/dist/scope/TypeScope.d.ts","../../../node_modules/@typescript-eslint/scope-manager/dist/scope/WithScope.d.ts","../../../node_modules/@typescript-eslint/scope-manager/dist/scope/Scope.d.ts","../../../node_modules/@typescript-eslint/scope-manager/dist/scope/ClassFieldInitializerScope.d.ts","../../../node_modules/@typescript-eslint/scope-manager/dist/ScopeManager.d.ts","../../../node_modules/@typescript-eslint/scope-manager/dist/scope/BlockScope.d.ts","../../../node_modules/@typescript-eslint/scope-manager/dist/scope/index.d.ts","../../../node_modules/@typescript-eslint/scope-manager/node_modules/@typescript-eslint/visitor-keys/dist/index.d.ts","../../../node_modules/@typescript-eslint/scope-manager/dist/referencer/VisitorBase.d.ts","../../../node_modules/@typescript-eslint/scope-manager/dist/referencer/PatternVisitor.d.ts","../../../node_modules/@typescript-eslint/scope-manager/dist/referencer/Visitor.d.ts","../../../node_modules/@typescript-eslint/scope-manager/dist/referencer/Referencer.d.ts","../../../node_modules/@typescript-eslint/scope-manager/dist/referencer/index.d.ts","../../../node_modules/@typescript-eslint/scope-manager/dist/analyze.d.ts","../../../node_modules/@typescript-eslint/scope-manager/dist/index.d.ts","../../../node_modules/@typescript-eslint/utils/dist/ts-eslint/Scope.d.ts","../../../node_modules/@typescript-eslint/utils/dist/ts-eslint/Parser.d.ts","../../../node_modules/@typescript-eslint/utils/dist/json-schema.d.ts","../../../node_modules/@typescript-eslint/utils/dist/ts-eslint/SourceCode.d.ts","../../../node_modules/@typescript-eslint/utils/dist/ts-eslint/Rule.d.ts","../../../node_modules/@typescript-eslint/utils/dist/ts-eslint/Linter.d.ts","../../../node_modules/@typescript-eslint/utils/dist/ts-eslint/Processor.d.ts","../../../node_modules/@typescript-eslint/utils/dist/ts-eslint/Config.d.ts","../../../node_modules/@typescript-eslint/utils/dist/ts-eslint/eslint/ESLintShared.d.ts","../../../node_modules/@typescript-eslint/utils/dist/ts-eslint/eslint/FlatESLint.d.ts","../../../node_modules/@typescript-eslint/utils/dist/ts-eslint/eslint/LegacyESLint.d.ts","../../../node_modules/@typescript-eslint/utils/dist/ts-eslint/ESLint.d.ts","../../../node_modules/@typescript-eslint/utils/dist/ts-eslint/RuleTester.d.ts","../../../node_modules/@typescript-eslint/utils/dist/ts-eslint/index.d.ts","../../../node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/astUtilities.d.ts","../../../node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/PatternMatcher.d.ts","../../../node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/predicates.d.ts","../../../node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/ReferenceTracker.d.ts","../../../node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/scopeAnalysis.d.ts","../../../node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/index.d.ts","../../../node_modules/@typescript-eslint/utils/dist/ast-utils/helpers.d.ts","../../../node_modules/@typescript-eslint/utils/dist/ast-utils/misc.d.ts","../../../node_modules/@typescript-eslint/utils/dist/ast-utils/predicates.d.ts","../../../node_modules/@typescript-eslint/utils/dist/ast-utils/index.d.ts","../../../node_modules/@typescript-eslint/utils/dist/eslint-utils/applyDefault.d.ts","../../../node_modules/@typescript-eslint/utils/dist/eslint-utils/deepMerge.d.ts","../../../node_modules/@typescript-eslint/utils/dist/eslint-utils/getParserServices.d.ts","../../../node_modules/@typescript-eslint/utils/dist/eslint-utils/InferTypesFromRule.d.ts","../../../node_modules/@typescript-eslint/utils/dist/eslint-utils/nullThrows.d.ts","../../../node_modules/@typescript-eslint/utils/dist/eslint-utils/RuleCreator.d.ts","../../../node_modules/@typescript-eslint/utils/dist/eslint-utils/index.d.ts","../../../node_modules/@typescript-eslint/utils/dist/ts-utils/isArray.d.ts","../../../node_modules/@typescript-eslint/utils/dist/ts-utils/NoInfer.d.ts","../../../node_modules/@typescript-eslint/utils/dist/ts-utils/index.d.ts","../../../node_modules/@typescript-eslint/utils/dist/index.d.ts","../../../node_modules/eslint-plugin-prefer-arrow-functions/dist/index.d.ts","../../../node_modules/eslint-plugin-turbo/dist/rules/no-undeclared-env-vars.d.ts","../../../node_modules/eslint-plugin-turbo/dist/utils/calculate-inputs.d.ts","../../../node_modules/eslint-plugin-turbo/dist/index.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/types/dist/generated/ast-spec.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/types/dist/lib.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/types/dist/parser-options.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/types/dist/ts-estree.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/types/dist/index.d.ts","../../../node_modules/@typescript-eslint/typescript-estree/dist/clear-caches.d.ts","../../../node_modules/@typescript-eslint/typescript-estree/dist/create-program/getScriptKind.d.ts","../../../node_modules/@typescript-eslint/project-service/node_modules/@typescript-eslint/types/dist/index.d.ts","../../../node_modules/@typescript-eslint/project-service/dist/createProjectService.d.ts","../../../node_modules/@typescript-eslint/project-service/dist/index.d.ts","../../../node_modules/@typescript-eslint/typescript-estree/node_modules/@typescript-eslint/types/dist/index.d.ts","../../../node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/ts-nodes.d.ts","../../../node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/estree-to-ts-node-types.d.ts","../../../node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/index.d.ts","../../../node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/ExpiringCache.d.ts","../../../node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/index.d.ts","../../../node_modules/@typescript-eslint/typescript-estree/dist/create-program/shared.d.ts","../../../node_modules/@typescript-eslint/typescript-estree/dist/create-program/useProvidedPrograms.d.ts","../../../node_modules/@typescript-eslint/typescript-estree/dist/getModifiers.d.ts","../../../node_modules/@typescript-eslint/typescript-estree/dist/node-utils.d.ts","../../../node_modules/@typescript-eslint/typescript-estree/dist/parser-options.d.ts","../../../node_modules/@typescript-eslint/typescript-estree/dist/parser.d.ts","../../../node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/candidateTSConfigRootDirs.d.ts","../../../node_modules/@typescript-eslint/visitor-keys/node_modules/@typescript-eslint/types/dist/index.d.ts","../../../node_modules/@typescript-eslint/visitor-keys/dist/get-keys.d.ts","../../../node_modules/@typescript-eslint/visitor-keys/dist/visitor-keys.d.ts","../../../node_modules/@typescript-eslint/visitor-keys/dist/index.d.ts","../../../node_modules/@typescript-eslint/typescript-estree/dist/simple-traverse.d.ts","../../../node_modules/@typescript-eslint/typescript-estree/dist/version-check.d.ts","../../../node_modules/@typescript-eslint/typescript-estree/dist/version.d.ts","../../../node_modules/@typescript-eslint/typescript-estree/dist/withoutProjectParserOptions.d.ts","../../../node_modules/@typescript-eslint/typescript-estree/dist/index.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/dist/ts-estree.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/dist/ts-eslint/AST.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/dist/ts-eslint/ParserOptions.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionType.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionBase.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager/dist/definition/CatchClauseDefinition.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager/dist/definition/ClassNameDefinition.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager/dist/definition/FunctionNameDefinition.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager/dist/definition/ImplicitGlobalVariableDefinition.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager/dist/definition/ImportBindingDefinition.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager/dist/definition/ParameterDefinition.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumMemberDefinition.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumNameDefinition.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager/dist/definition/TSModuleNameDefinition.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager/dist/definition/TypeDefinition.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager/dist/definition/VariableDefinition.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager/dist/definition/Definition.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager/dist/definition/index.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager/dist/referencer/Reference.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager/dist/variable/VariableBase.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager/dist/variable/ESLintScopeVariable.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager/dist/variable/Variable.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager/dist/variable/ImplicitLibVariable.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager/dist/variable/index.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeType.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionScope.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager/dist/scope/GlobalScope.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager/dist/scope/ModuleScope.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager/dist/scope/TSModuleScope.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeBase.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager/dist/scope/CatchScope.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassScope.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassStaticBlockScope.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager/dist/scope/ConditionalTypeScope.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager/dist/scope/ForScope.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionExpressionNameScope.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionTypeScope.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager/dist/scope/MappedTypeScope.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager/dist/scope/SwitchScope.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager/dist/scope/TSEnumScope.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager/dist/scope/TypeScope.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager/dist/scope/WithScope.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager/dist/scope/Scope.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassFieldInitializerScope.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager/dist/ScopeManager.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager/dist/scope/BlockScope.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager/dist/scope/index.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager/dist/referencer/VisitorBase.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager/dist/referencer/PatternVisitor.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager/dist/referencer/Visitor.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager/dist/referencer/Referencer.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager/dist/referencer/index.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager/dist/analyze.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager/dist/index.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/dist/ts-eslint/Scope.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/dist/ts-eslint/Parser.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/dist/json-schema.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/dist/ts-eslint/SourceCode.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/dist/ts-eslint/Rule.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/dist/ts-eslint/Linter.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/dist/ts-eslint/Processor.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/dist/ts-eslint/Config.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/dist/ts-eslint/eslint/ESLintShared.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/dist/ts-eslint/eslint/FlatESLint.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/dist/ts-eslint/eslint/LegacyESLint.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/dist/ts-eslint/ESLint.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/dist/ts-eslint/RuleTester.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/dist/ts-eslint/index.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/astUtilities.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/PatternMatcher.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/predicates.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/ReferenceTracker.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/scopeAnalysis.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/index.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/dist/ast-utils/helpers.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/dist/ast-utils/misc.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/dist/ast-utils/predicates.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/dist/ast-utils/index.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/dist/eslint-utils/applyDefault.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/dist/eslint-utils/deepMerge.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/dist/eslint-utils/getParserServices.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/dist/eslint-utils/InferTypesFromRule.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/dist/eslint-utils/nullThrows.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/dist/eslint-utils/RuleCreator.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/dist/eslint-utils/index.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/dist/ts-utils/isArray.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/dist/ts-utils/NoInfer.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/dist/ts-utils/index.d.ts","../../../node_modules/typescript-eslint/node_modules/@typescript-eslint/utils/dist/index.d.ts","../../../node_modules/typescript-eslint/dist/compatibility-types.d.ts","../../../node_modules/typescript-eslint/dist/config-helper.d.ts","../../../node_modules/typescript-eslint/dist/index.d.ts","../../../tools/eslint/base.ts","../../../node_modules/@next/eslint-plugin-next/dist/index.d.ts","../../../tools/eslint/nextjs.ts","../../../node_modules/eslint-plugin-react/node_modules/eslint/lib/types/index.d.ts","../../../node_modules/eslint-plugin-react/index.d.ts","../../../node_modules/eslint-plugin-react-hooks/node_modules/eslint/lib/types/index.d.ts","../../../node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.d.ts","../../../node_modules/eslint-plugin-react-hooks/index.d.ts","../../../tools/eslint/react.ts","../eslint.config.ts","../../../node_modules/@types/react/global.d.ts","../../../node_modules/csstype/index.d.ts","../../../node_modules/@types/react/index.d.ts","../../../node_modules/next/dist/styled-jsx/types/css.d.ts","../../../node_modules/next/dist/styled-jsx/types/macro.d.ts","../../../node_modules/next/dist/styled-jsx/types/style.d.ts","../../../node_modules/next/dist/styled-jsx/types/global.d.ts","../../../node_modules/next/dist/styled-jsx/types/index.d.ts","../../../node_modules/next/dist/server/get-page-files.d.ts","../../../node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../node_modules/@types/node/web-globals/blob.d.ts","../../../node_modules/@types/node/web-globals/console.d.ts","../../../node_modules/@types/node/web-globals/crypto.d.ts","../../../node_modules/@types/node/web-globals/domexception.d.ts","../../../node_modules/@types/node/web-globals/encoding.d.ts","../../../node_modules/@types/node/web-globals/events.d.ts","../../../node_modules/undici-types/utility.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.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-stats.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/round-robin-pool.d.ts","../../../node_modules/undici-types/h2c-client.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-call-history.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/snapshot-agent.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/cache-interceptor.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/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/web-globals/fetch.d.ts","../../../node_modules/@types/node/web-globals/importmeta.d.ts","../../../node_modules/@types/node/web-globals/messaging.d.ts","../../../node_modules/@types/node/web-globals/navigator.d.ts","../../../node_modules/@types/node/web-globals/performance.d.ts","../../../node_modules/@types/node/web-globals/storage.d.ts","../../../node_modules/@types/node/web-globals/streams.d.ts","../../../node_modules/@types/node/web-globals/timers.d.ts","../../../node_modules/@types/node/web-globals/url.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/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/inspector.generated.d.ts","../../../node_modules/@types/node/inspector/promises.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/path/posix.d.ts","../../../node_modules/@types/node/path/win32.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/quic.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/consumers.d.ts","../../../node_modules/@types/node/stream/promises.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/test/reporters.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/util/types.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/react/canary.d.ts","../../../node_modules/@types/react/experimental.d.ts","../../../node_modules/@types/react-dom/index.d.ts","../../../node_modules/@types/react-dom/canary.d.ts","../../../node_modules/@types/react-dom/experimental.d.ts","../../../node_modules/next/dist/lib/fallback.d.ts","../../../node_modules/next/dist/compiled/webpack/webpack.d.ts","../../../node_modules/next/dist/shared/lib/modern-browserslist-target.d.ts","../../../node_modules/next/dist/shared/lib/entry-constants.d.ts","../../../node_modules/next/dist/shared/lib/constants.d.ts","../../../node_modules/next/dist/lib/bundler.d.ts","../../../node_modules/next/dist/server/config.d.ts","../../../node_modules/next/dist/lib/load-custom-routes.d.ts","../../../node_modules/next/dist/shared/lib/image-config.d.ts","../../../node_modules/next/dist/build/webpack/plugins/subresource-integrity-plugin.d.ts","../../../node_modules/next/dist/server/body-streams.d.ts","../../../node_modules/next/dist/server/request/search-params.d.ts","../../../node_modules/next/dist/shared/lib/segment-cache/vary-params-decoding.d.ts","../../../node_modules/next/dist/server/app-render/vary-params.d.ts","../../../node_modules/next/dist/server/request/params.d.ts","../../../node_modules/next/dist/server/route-kind.d.ts","../../../node_modules/next/dist/server/route-definitions/route-definition.d.ts","../../../node_modules/next/dist/server/route-matches/route-match.d.ts","../../../node_modules/next/dist/client/components/app-router-headers.d.ts","../../../node_modules/next/dist/server/lib/cache-control.d.ts","../../../node_modules/next/dist/shared/lib/app-router-types.d.ts","../../../node_modules/next/dist/server/lib/cache-handlers/types.d.ts","../../../node_modules/next/dist/server/use-cache/use-cache-wrapper.d.ts","../../../node_modules/next/dist/server/resume-data-cache/cache-store.d.ts","../../../node_modules/next/dist/server/resume-data-cache/resume-data-cache.d.ts","../../../node_modules/next/dist/lib/constants.d.ts","../../../node_modules/next/dist/server/render-result.d.ts","../../../node_modules/next/dist/server/response-cache/types.d.ts","../../../node_modules/next/dist/server/response-cache/index.d.ts","../../../node_modules/@types/react/jsx-runtime.d.ts","../../../node_modules/next/dist/next-devtools/userspace/pages/pages-dev-overlay-setup.d.ts","../../../node_modules/next/dist/build/static-paths/types.d.ts","../../../node_modules/next/dist/server/route-definitions/app-page-route-definition.d.ts","../../../node_modules/next/dist/build/adapter/setup-node-env.external.d.ts","../../../node_modules/next/dist/server/instrumentation/types.d.ts","../../../node_modules/next/dist/lib/setup-exception-listeners.d.ts","../../../node_modules/next/dist/lib/worker.d.ts","../../../node_modules/next/dist/server/lib/experimental/ppr.d.ts","../../../node_modules/next/dist/lib/page-types.d.ts","../../../node_modules/next/dist/build/segment-config/app/app-segment-config.d.ts","../../../node_modules/next/dist/build/segment-config/pages/pages-segment-config.d.ts","../../../node_modules/next/dist/build/analysis/get-page-static-info.d.ts","../../../node_modules/next/dist/build/webpack/loaders/get-module-build-info.d.ts","../../../node_modules/next/dist/build/webpack/plugins/middleware-plugin.d.ts","../../../node_modules/next/dist/server/require-hook.d.ts","../../../node_modules/next/dist/server/node-polyfill-crypto.d.ts","../../../node_modules/next/dist/server/node-environment-baseline.d.ts","../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.d.ts","../../../node_modules/next/dist/server/node-environment-extensions/console-file.d.ts","../../../node_modules/next/dist/server/node-environment-extensions/console-exit.d.ts","../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.d.ts","../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.d.ts","../../../node_modules/next/dist/server/node-environment-extensions/random.d.ts","../../../node_modules/next/dist/server/node-environment-extensions/date.d.ts","../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.d.ts","../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.d.ts","../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.d.ts","../../../node_modules/next/dist/server/node-environment.d.ts","../../../node_modules/next/dist/build/page-extensions-type.d.ts","../../../node_modules/next/dist/server/route-modules/app-page/module.compiled.d.ts","../../../node_modules/next/dist/server/route-definitions/app-route-route-definition.d.ts","../../../node_modules/next/dist/server/lib/i18n-provider.d.ts","../../../node_modules/next/dist/server/web/next-url.d.ts","../../../node_modules/next/dist/compiled/@edge-runtime/cookies/index.d.ts","../../../node_modules/next/dist/server/web/spec-extension/cookies.d.ts","../../../node_modules/next/dist/server/web/spec-extension/request.d.ts","../../../node_modules/next/dist/shared/lib/deep-readonly.d.ts","../../../node_modules/next/dist/server/lib/incremental-cache/index.d.ts","../../../node_modules/next/dist/shared/lib/router/utils/middleware-route-matcher.d.ts","../../../node_modules/next/dist/build/webpack/plugins/flight-manifest-plugin.d.ts","../../../node_modules/next/dist/build/webpack/plugins/next-font-manifest-plugin.d.ts","../../../node_modules/next/dist/server/route-definitions/locale-route-definition.d.ts","../../../node_modules/next/dist/server/route-definitions/pages-route-definition.d.ts","../../../node_modules/next/dist/shared/lib/mitt.d.ts","../../../node_modules/next/dist/client/with-router.d.ts","../../../node_modules/next/dist/client/router.d.ts","../../../node_modules/next/dist/client/route-loader.d.ts","../../../node_modules/next/dist/client/page-loader.d.ts","../../../node_modules/next/dist/shared/lib/bloom-filter.d.ts","../../../node_modules/next/dist/shared/lib/router/router.d.ts","../../../node_modules/next/dist/shared/lib/router-context.shared-runtime.d.ts","../../../node_modules/next/dist/shared/lib/loadable-context.shared-runtime.d.ts","../../../node_modules/next/dist/shared/lib/loadable.shared-runtime.d.ts","../../../node_modules/next/dist/shared/lib/image-config-context.shared-runtime.d.ts","../../../node_modules/next/dist/client/components/readonly-url-search-params.d.ts","../../../node_modules/next/dist/shared/lib/hooks-client-context.shared-runtime.d.ts","../../../node_modules/next/dist/shared/lib/head-manager-context.shared-runtime.d.ts","../../../node_modules/next/dist/client/flight-data-helpers.d.ts","../../../node_modules/next/dist/client/components/segment-cache/cache-key.d.ts","../../../node_modules/next/dist/client/components/router-reducer/fetch-server-response.d.ts","../../../node_modules/next/dist/client/components/segment-cache/types.d.ts","../../../node_modules/next/dist/shared/lib/segment-cache/segment-value-encoding.d.ts","../../../node_modules/next/dist/client/components/segment-cache/scheduler.d.ts","../../../node_modules/next/dist/client/components/segment-cache/cache-map.d.ts","../../../node_modules/next/dist/client/components/segment-cache/vary-path.d.ts","../../../node_modules/next/dist/client/components/segment-cache/cache.d.ts","../../../node_modules/next/dist/client/components/router-reducer/ppr-navigations.d.ts","../../../node_modules/next/dist/client/components/segment-cache/navigation.d.ts","../../../node_modules/next/dist/client/components/router-reducer/router-reducer-types.d.ts","../../../node_modules/next/dist/shared/lib/app-router-context.shared-runtime.d.ts","../../../node_modules/next/dist/shared/lib/server-inserted-html.shared-runtime.d.ts","../../../node_modules/next/dist/server/route-modules/pages/vendored/contexts/entrypoints.d.ts","../../../node_modules/next/dist/server/route-modules/pages/module.compiled.d.ts","../../../node_modules/next/dist/build/templates/pages.d.ts","../../../node_modules/next/dist/server/route-modules/pages/module.d.ts","../../../node_modules/next/dist/server/render.d.ts","../../../node_modules/next/dist/build/webpack/plugins/pages-manifest-plugin.d.ts","../../../node_modules/next/dist/server/route-definitions/pages-api-route-definition.d.ts","../../../node_modules/next/dist/server/route-matches/pages-api-route-match.d.ts","../../../node_modules/next/dist/server/route-matchers/route-matcher.d.ts","../../../node_modules/next/dist/server/route-matcher-providers/route-matcher-provider.d.ts","../../../node_modules/next/dist/server/route-matcher-managers/route-matcher-manager.d.ts","../../../node_modules/next/dist/server/normalizers/normalizer.d.ts","../../../node_modules/next/dist/server/normalizers/locale-route-normalizer.d.ts","../../../node_modules/next/dist/server/normalizers/request/pathname-normalizer.d.ts","../../../node_modules/next/dist/server/normalizers/request/suffix.d.ts","../../../node_modules/next/dist/server/normalizers/request/rsc.d.ts","../../../node_modules/next/dist/server/normalizers/request/next-data.d.ts","../../../node_modules/next/dist/server/after/builtin-request-context.d.ts","../../../node_modules/next/dist/server/normalizers/request/segment-prefix-rsc.d.ts","../../../node_modules/next/dist/server/route-modules/pages/builtin/_error.d.ts","../../../node_modules/next/dist/server/load-default-error-components.d.ts","../../../node_modules/next/dist/server/base-server.d.ts","../../../node_modules/next/dist/server/after/after.d.ts","../../../node_modules/next/dist/server/after/after-context.d.ts","../../../node_modules/next/dist/server/use-cache/cache-life.d.ts","../../../node_modules/next/dist/server/app-render/work-async-storage-instance.d.ts","../../../node_modules/next/dist/server/lib/lazy-result.d.ts","../../../node_modules/next/dist/server/app-render/create-error-handler.d.ts","../../../node_modules/next/dist/shared/lib/action-revalidation-kind.d.ts","../../../node_modules/next/dist/server/app-render/work-async-storage.external.d.ts","../../../node_modules/next/dist/server/async-storage/work-store.d.ts","../../../node_modules/next/dist/server/web/http.d.ts","../../../node_modules/next/dist/client/components/hooks-server-context.d.ts","../../../node_modules/next/dist/server/route-modules/app-route/shared-modules.d.ts","../../../node_modules/next/dist/client/components/redirect-status-code.d.ts","../../../node_modules/next/dist/client/components/redirect-error.d.ts","../../../node_modules/next/dist/server/web/spec-extension/adapters/request-cookies.d.ts","../../../node_modules/next/dist/server/async-storage/draft-mode-provider.d.ts","../../../node_modules/next/dist/server/web/spec-extension/adapters/headers.d.ts","../../../node_modules/next/dist/server/app-render/cache-signal.d.ts","../../../node_modules/next/dist/server/app-render/instant-validation/boundary-tracking.d.ts","../../../node_modules/next/dist/server/app-render/instant-validation/instant-validation-error.d.ts","../../../node_modules/next/dist/shared/lib/router/utils/parse-relative-url.d.ts","../../../node_modules/next/dist/server/app-render/instant-validation/instant-samples.d.ts","../../../node_modules/next/dist/server/app-render/dynamic-rendering.d.ts","../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.d.ts","../../../node_modules/next/dist/server/lib/implicit-tags.d.ts","../../../node_modules/next/dist/server/app-render/staged-rendering.d.ts","../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.d.ts","../../../node_modules/next/dist/build/templates/app-route.d.ts","../../../node_modules/next/dist/server/app-render/action-async-storage-instance.d.ts","../../../node_modules/next/dist/server/app-render/action-async-storage.external.d.ts","../../../node_modules/next/dist/server/route-modules/app-route/module.d.ts","../../../node_modules/next/dist/server/route-modules/app-route/module.compiled.d.ts","../../../node_modules/next/dist/build/segment-config/app/app-segments.d.ts","../../../node_modules/next/dist/build/get-supported-browsers.d.ts","../../../node_modules/next/dist/build/utils.d.ts","../../../node_modules/next/dist/build/rendering-mode.d.ts","../../../node_modules/next/dist/server/lib/router-utils/build-prefetch-segment-data-route.d.ts","../../../node_modules/next/dist/server/lib/cpu-profile.d.ts","../../../node_modules/next/dist/build/turborepo-access-trace/types.d.ts","../../../node_modules/next/dist/build/turborepo-access-trace/result.d.ts","../../../node_modules/next/dist/build/turborepo-access-trace/helpers.d.ts","../../../node_modules/next/dist/build/turborepo-access-trace/index.d.ts","../../../node_modules/next/dist/export/routes/types.d.ts","../../../node_modules/next/dist/export/types.d.ts","../../../node_modules/next/dist/export/worker.d.ts","../../../node_modules/next/dist/build/worker.d.ts","../../../node_modules/next/dist/build/index.d.ts","../../../node_modules/next/dist/lib/coalesced-function.d.ts","../../../node_modules/next/dist/server/lib/router-utils/types.d.ts","../../../node_modules/next/dist/trace/types.d.ts","../../../node_modules/next/dist/trace/trace.d.ts","../../../node_modules/next/dist/trace/shared.d.ts","../../../node_modules/next/dist/trace/index.d.ts","../../../node_modules/next/dist/build/load-jsconfig.d.ts","../../../node_modules/@next/env/dist/index.d.ts","../../../node_modules/next/dist/build/webpack/plugins/telemetry-plugin/use-cache-tracker-utils.d.ts","../../../node_modules/next/dist/build/webpack/plugins/telemetry-plugin/telemetry-plugin.d.ts","../../../node_modules/next/dist/telemetry/storage.d.ts","../../../node_modules/next/dist/build/build-context.d.ts","../../../node_modules/next/dist/build/webpack-config.d.ts","../../../node_modules/next/dist/build/swc/generated-native.d.ts","../../../node_modules/next/dist/build/define-env.d.ts","../../../node_modules/next/dist/build/swc/index.d.ts","../../../node_modules/next/dist/build/swc/types.d.ts","../../../node_modules/next/dist/server/dev/parse-version-info.d.ts","../../../node_modules/next/dist/next-devtools/shared/types.d.ts","../../../node_modules/next/dist/server/dev/dev-indicator-server-state.d.ts","../../../node_modules/next/dist/next-devtools/dev-overlay/cache-indicator.d.ts","../../../node_modules/next/dist/server/lib/parse-stack.d.ts","../../../node_modules/next/dist/next-devtools/server/shared.d.ts","../../../node_modules/next/dist/next-devtools/shared/stack-frame.d.ts","../../../node_modules/next/dist/next-devtools/dev-overlay/utils/get-error-by-type.d.ts","../../../node_modules/next/dist/next-devtools/dev-overlay/container/runtime-error/render-error.d.ts","../../../node_modules/next/dist/next-devtools/dev-overlay/shared.d.ts","../../../node_modules/next/dist/server/dev/debug-channel.d.ts","../../../node_modules/next/dist/server/dev/hot-reloader-types.d.ts","../../../node_modules/next/dist/server/web/spec-extension/fetch-event.d.ts","../../../node_modules/next/dist/server/web/spec-extension/response.d.ts","../../../node_modules/next/dist/build/segment-config/middleware/middleware-config.d.ts","../../../node_modules/next/dist/server/web/types.d.ts","../../../node_modules/next/dist/shared/lib/router/utils/parse-url.d.ts","../../../node_modules/next/dist/server/base-http/node.d.ts","../../../node_modules/next/dist/server/lib/async-callback-set.d.ts","../../../node_modules/next/dist/shared/lib/router/utils/route-regex.d.ts","../../../node_modules/next/dist/shared/lib/router/utils/route-matcher.d.ts","../../../node_modules/sharp/lib/index.d.ts","../../../node_modules/next/dist/server/image-optimizer.d.ts","../../../node_modules/next/dist/server/next-server.d.ts","../../../node_modules/next/dist/server/lib/types.d.ts","../../../node_modules/next/dist/server/lib/lru-cache.d.ts","../../../node_modules/next/dist/server/lib/dev-bundler-service.d.ts","../../../node_modules/next/dist/server/dev/static-paths-worker.d.ts","../../../node_modules/next/dist/server/dev/next-dev-server.d.ts","../../../node_modules/next/dist/server/next.d.ts","../../../node_modules/next/dist/server/lib/render-server.d.ts","../../../node_modules/next/dist/server/lib/router-server.d.ts","../../../node_modules/next/dist/shared/lib/router/utils/path-match.d.ts","../../../node_modules/next/dist/server/lib/router-utils/filesystem.d.ts","../../../node_modules/next/dist/server/lib/router-utils/setup-dev-bundler.d.ts","../../../node_modules/next/dist/server/lib/router-utils/router-server-context.d.ts","../../../node_modules/next/dist/server/route-modules/route-module.d.ts","../../../node_modules/next/dist/server/load-components.d.ts","../../../node_modules/next/dist/server/web/adapter.d.ts","../../../node_modules/next/dist/server/app-render/types.d.ts","../../../node_modules/next/dist/build/webpack/loaders/metadata/types.d.ts","../../../node_modules/next/dist/build/webpack/loaders/next-app-loader/index.d.ts","../../../node_modules/next/dist/server/lib/app-dir-module.d.ts","../../../node_modules/next/dist/server/app-render/app-render.d.ts","../../../node_modules/next/dist/server/route-modules/app-page/vendored/contexts/entrypoints.d.ts","../../../node_modules/next/dist/client/components/error-boundary.d.ts","../../../node_modules/next/dist/client/components/layout-router.d.ts","../../../node_modules/next/dist/client/components/render-from-template-context.d.ts","../../../node_modules/next/dist/client/components/client-page.d.ts","../../../node_modules/next/dist/client/components/client-segment.d.ts","../../../node_modules/next/dist/client/components/http-access-fallback/error-boundary.d.ts","../../../node_modules/next/dist/lib/metadata/types/alternative-urls-types.d.ts","../../../node_modules/next/dist/lib/metadata/types/extra-types.d.ts","../../../node_modules/next/dist/lib/metadata/types/metadata-types.d.ts","../../../node_modules/next/dist/lib/metadata/types/manifest-types.d.ts","../../../node_modules/next/dist/lib/metadata/types/opengraph-types.d.ts","../../../node_modules/next/dist/lib/metadata/types/twitter-types.d.ts","../../../node_modules/next/dist/lib/metadata/types/metadata-interface.d.ts","../../../node_modules/next/dist/lib/metadata/types/resolvers.d.ts","../../../node_modules/next/dist/lib/metadata/types/icons.d.ts","../../../node_modules/next/dist/lib/metadata/resolve-metadata.d.ts","../../../node_modules/next/dist/lib/metadata/metadata.d.ts","../../../node_modules/next/dist/lib/framework/boundary-components.d.ts","../../../node_modules/next/dist/server/app-render/rsc/preloads.d.ts","../../../node_modules/next/dist/server/app-render/rsc/postpone.d.ts","../../../node_modules/next/dist/server/app-render/rsc/taint.d.ts","../../../node_modules/next/dist/server/app-render/collect-segment-data.d.ts","../../../node_modules/next/dist/server/app-render/instant-validation/instant-validation.d.ts","../../../node_modules/next/dist/next-devtools/userspace/app/segment-explorer-node.d.ts","../../../node_modules/next/dist/server/app-render/entry-base.d.ts","../../../node_modules/next/dist/build/templates/app-page.d.ts","../../../node_modules/next/dist/server/route-modules/app-page/helpers/prerender-manifest-matcher.d.ts","../../../node_modules/@types/react/jsx-dev-runtime.d.ts","../../../node_modules/@types/react/compiler-runtime.d.ts","../../../node_modules/next/dist/server/route-modules/app-page/vendored/rsc/entrypoints.d.ts","../../../node_modules/@types/react-dom/client.d.ts","../../../node_modules/@types/react-dom/static.d.ts","../../../node_modules/@types/react-dom/server.d.ts","../../../node_modules/next/dist/server/route-modules/app-page/vendored/ssr/entrypoints.d.ts","../../../node_modules/next/dist/server/route-modules/app-page/module.d.ts","../../../node_modules/next/dist/server/request/fallback-params.d.ts","../../../node_modules/next/dist/server/web/spec-extension/image-response.d.ts","../../../node_modules/next/dist/server/web/spec-extension/user-agent.d.ts","../../../node_modules/next/dist/server/web/spec-extension/url-pattern.d.ts","../../../node_modules/next/dist/server/after/index.d.ts","../../../node_modules/next/dist/server/request/connection.d.ts","../../../node_modules/next/dist/server/web/exports/index.d.ts","../../../node_modules/next/dist/server/request-meta.d.ts","../../../node_modules/next/dist/cli/next-test.d.ts","../../../node_modules/next/dist/shared/lib/size-limit.d.ts","../../../node_modules/next/dist/server/config-shared.d.ts","../../../node_modules/next/dist/server/base-http/index.d.ts","../../../node_modules/next/dist/server/api-utils/index.d.ts","../../../node_modules/next/dist/build/adapter/build-complete.d.ts","../../../node_modules/next/dist/types.d.ts","../../../node_modules/next/dist/shared/lib/html-context.shared-runtime.d.ts","../../../node_modules/next/dist/shared/lib/utils.d.ts","../../../node_modules/next/dist/pages/_app.d.ts","../../../node_modules/next/app.d.ts","../../../node_modules/next/dist/server/web/spec-extension/unstable-cache.d.ts","../../../node_modules/next/dist/server/web/spec-extension/revalidate.d.ts","../../../node_modules/next/dist/server/web/spec-extension/unstable-no-store.d.ts","../../../node_modules/next/dist/server/use-cache/cache-tag.d.ts","../../../node_modules/next/cache.d.ts","../../../node_modules/next/dist/pages/_document.d.ts","../../../node_modules/next/document.d.ts","../../../node_modules/next/dist/shared/lib/dynamic.d.ts","../../../node_modules/next/dynamic.d.ts","../../../node_modules/next/dist/pages/_error.d.ts","../../../node_modules/next/dist/client/components/catch-error.d.ts","../../../node_modules/next/dist/api/error.d.ts","../../../node_modules/next/error.d.ts","../../../node_modules/next/dist/shared/lib/head.d.ts","../../../node_modules/next/head.d.ts","../../../node_modules/next/dist/server/request/cookies.d.ts","../../../node_modules/next/dist/server/request/headers.d.ts","../../../node_modules/next/dist/server/request/draft-mode.d.ts","../../../node_modules/next/headers.d.ts","../../../node_modules/next/dist/shared/lib/get-img-props.d.ts","../../../node_modules/next/dist/client/image-component.d.ts","../../../node_modules/next/dist/shared/lib/image-external.d.ts","../../../node_modules/next/image.d.ts","../../../node_modules/next/dist/client/link.d.ts","../../../node_modules/next/link.d.ts","../../../node_modules/next/dist/client/components/unrecognized-action-error.d.ts","../../../node_modules/next/dist/client/components/redirect.d.ts","../../../node_modules/next/dist/client/components/not-found.d.ts","../../../node_modules/next/dist/client/components/forbidden.d.ts","../../../node_modules/next/dist/client/components/unauthorized.d.ts","../../../node_modules/next/dist/client/components/unstable-rethrow.server.d.ts","../../../node_modules/next/dist/client/components/unstable-rethrow.d.ts","../../../node_modules/next/dist/client/components/navigation.react-server.d.ts","../../../node_modules/next/dist/client/components/navigation.d.ts","../../../node_modules/next/navigation.d.ts","../../../node_modules/next/router.d.ts","../../../node_modules/next/dist/client/script.d.ts","../../../node_modules/next/script.d.ts","../../../node_modules/next/dist/compiled/@edge-runtime/primitives/url.d.ts","../../../node_modules/next/dist/compiled/@vercel/og/satori/index.d.ts","../../../node_modules/next/dist/compiled/@vercel/og/types.d.ts","../../../node_modules/next/server.d.ts","../../../node_modules/next/types/global.d.ts","../../../node_modules/next/types/compiled.d.ts","../../../node_modules/next/types.d.ts","../../../node_modules/next/index.d.ts","../../../node_modules/next/image-types/global.d.ts","../next-env.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/measurement.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/attributes.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/attachment.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/severity.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/breadcrumb.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/featureFlags.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/opentelemetry.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/spanStatus.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/transaction.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/span.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/link.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/webfetchapi.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/request.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/misc.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/context.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/checkin.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/datacategory.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/clientreport.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/csp.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/dsn.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/feedback/form.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/feedback/theme.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/feedback/config.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/user.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/feedback/sendFeedback.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/feedback/index.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/parameterize.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/log.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/metric.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/debugMeta.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/profiling.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/replay.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/package.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/sdkinfo.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/session.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/envelope.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/eventprocessor.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/extra.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/tracing.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/scope.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/mechanism.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/stackframe.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/stacktrace.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/exception.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/thread.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/event.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/integration.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/samplingcontext.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/sdkmetadata.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/transport.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/options.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/integration.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/startSpanOptions.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/promisebuffer.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/client.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/sdk.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/traceData.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/tracing.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/trace.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/spanUtils.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/asyncContext/types.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/asyncContext/stackStrategy.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/env.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/worldwide.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/carrier.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/transports/offline.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/server-runtime-client.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/errors.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/utils.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/idleSpan.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/timedEvent.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/sentrySpan.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/sentryNonRecordingSpan.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/spanstatus.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/dynamicSamplingContext.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/measurement.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/sampling.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/logSpans.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/index.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/semanticAttributes.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/envelope.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/prepareEvent.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/exports.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/currentScopes.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/defaultScopes.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/asyncContext/index.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/session.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/eventProcessors.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/report-dialog.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/api.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/transports/base.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/transports/multiplexed.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/ai/providerSkip.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/envToBool.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/scopeData.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/checkin.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/hasSpansEnabled.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/isSentryRequestUrl.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/handleCallbackErrors.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/parameterize.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/tunnel.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/ipAddress.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/spanOnScope.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/parseSampleRate.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/sdkMetadata.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/lru.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/tracePropagationTargets.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/meta.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/debounce.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/request.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/constants.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/breadcrumbs.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/integrations/functiontostring.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/integrations/eventFilters.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/integrations/linkederrors.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/integrations/moduleMetadata.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/integrations/requestdata.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/integrations/captureconsole.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/integrations/dedupe.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/integrations/extraerrordata.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/integrations/rewriteframes.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/integrations/supabase.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/integrations/postgresjs.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/integrations/zoderrors.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/integrations/third-party-errors-filter.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/instrument.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/integrations/console.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/integrations/featureFlags/featureFlagsIntegration.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/integrations/featureFlags/growthbook.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/integrations/featureFlags/index.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/integrations/conversationId.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/profiling.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/fetch.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/trpc.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/integrations/mcp-server/types.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/integrations/mcp-server/index.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/feedback.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/logs/internal.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/logs/public-api.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/logs/console-integration.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/metrics/internal.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/metrics/public-api.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/integrations/consola.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/vercel-ai/index.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/vercel-ai/types.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/vercel-ai/utils.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/vercel-ai/constants.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/openai/constants.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/openai/types.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/openai/index.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/anthropic-ai/constants.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/anthropic-ai/types.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/anthropic-ai/index.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/google-genai/constants.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/google-genai/types.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/google-genai/index.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/langchain/types.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/langchain/index.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/langchain/constants.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/langgraph/types.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/langgraph/index.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/tracing/langgraph/constants.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/aggregate-errors.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/breadcrumb-log-level.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/browser.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/dsn.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/error.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/instrument/console.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/instrument/fetch.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/instrument/globalError.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/instrument/globalUnhandledRejection.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/instrument/handlers.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/polymorphics.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/vue.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/is.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/isBrowser.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/debug-logger.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/misc.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/node.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/normalize.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/wrappedfunction.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/object.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/path.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/severity.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/exports.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/stacktrace.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/node-stack-trace.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/vendor/escapeStringForRegex.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/string.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/supports.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/syncpromise.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/time.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/envelope.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/clientreport.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/ratelimit.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/baggage.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/url.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/eventbuilder.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/anr.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/propagationContext.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/vercelWaitUntil.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/flushIfServerless.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/version.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/debug-ids.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/metadata.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/error.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/runtime.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/browseroptions.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/types-hoist/view-hierarchy.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/build-time-plugins/buildTimeOptionsBase.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/utils/randomSafeContext.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/core/build/types/index.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/feedbackAsync.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/feedbackSync.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/transports/types.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/client.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/helpers.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/transports/fetch.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/profiling/index.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/stack-parsers.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/eventbuilder.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/userfeedback.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/sdk.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/report-dialog.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/integrations/breadcrumbs.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/integrations/globalhandlers.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/integrations/httpcontext.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/integrations/linkederrors.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/integrations/browserapierrors.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/integrations/browsersession.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/utils/lazyLoadIntegration.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/exports.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/integrations/reportingobserver.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/integrations/httpclient.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/integrations/contextlines.d.ts","../../../node_modules/@sentry-internal/browser-utils/build/types/metrics/instrument.d.ts","../../../node_modules/@sentry-internal/browser-utils/node_modules/@sentry/core/build/types/index.d.ts","../../../node_modules/@sentry-internal/browser-utils/build/types/metrics/inp.d.ts","../../../node_modules/@sentry-internal/browser-utils/build/types/metrics/browserMetrics.d.ts","../../../node_modules/@sentry-internal/browser-utils/build/types/metrics/elementTiming.d.ts","../../../node_modules/@sentry-internal/browser-utils/build/types/metrics/utils.d.ts","../../../node_modules/@sentry-internal/browser-utils/build/types/instrument/dom.d.ts","../../../node_modules/@sentry-internal/browser-utils/build/types/instrument/history.d.ts","../../../node_modules/@sentry-internal/browser-utils/build/types/types.d.ts","../../../node_modules/@sentry-internal/browser-utils/build/types/getNativeImplementation.d.ts","../../../node_modules/@sentry-internal/browser-utils/build/types/instrument/xhr.d.ts","../../../node_modules/@sentry-internal/browser-utils/build/types/networkUtils.d.ts","../../../node_modules/@sentry-internal/browser-utils/build/types/metrics/resourceTiming.d.ts","../../../node_modules/@sentry-internal/browser-utils/build/types/index.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/integrations/graphqlClient.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/node_modules/@sentry-internal/replay/build/npm/types/types/request.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/node_modules/@sentry-internal/replay/build/npm/types/types/performance.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/node_modules/@sentry-internal/replay/build/npm/types/util/throttle.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/node_modules/@sentry-internal/replay/build/npm/types/types/rrweb.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/node_modules/@sentry-internal/replay/build/npm/types/types/replayFrame.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/node_modules/@sentry-internal/replay/build/npm/types/types/replay.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/node_modules/@sentry-internal/replay/build/npm/types/types/index.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/node_modules/@sentry-internal/replay/build/npm/types/integration.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/node_modules/@sentry-internal/replay/build/npm/types/util/getReplay.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/node_modules/@sentry-internal/replay/build/npm/types/index.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/node_modules/@sentry-internal/replay-canvas/build/npm/types/canvas.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/node_modules/@sentry-internal/replay-canvas/build/npm/types/index.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/node_modules/@sentry-internal/feedback/build/npm/types/core/sendFeedback.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/node_modules/@sentry-internal/feedback/build/npm/types/core/components/Actor.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/node_modules/@sentry-internal/feedback/build/npm/types/core/types.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/node_modules/@sentry-internal/feedback/build/npm/types/core/integration.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/node_modules/@sentry-internal/feedback/build/npm/types/core/getFeedback.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/node_modules/@sentry-internal/feedback/build/npm/types/modal/integration.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/node_modules/@sentry-internal/feedback/build/npm/types/screenshot/integration.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/node_modules/@sentry-internal/feedback/build/npm/types/index.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/tracing/request.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/tracing/browserTracingIntegration.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/tracing/reportPageLoaded.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/tracing/setActiveSpan.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/transports/offline.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/profiling/integration.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/integrations/spotlight.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/integrations/culturecontext.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/integrations/featureFlags/launchdarkly/types.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/integrations/featureFlags/launchdarkly/integration.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/integrations/featureFlags/launchdarkly/index.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/integrations/featureFlags/openfeature/types.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/integrations/featureFlags/openfeature/integration.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/integrations/featureFlags/openfeature/index.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/integrations/featureFlags/unleash/types.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/integrations/featureFlags/unleash/integration.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/integrations/featureFlags/unleash/index.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/integrations/featureFlags/growthbook/types.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/integrations/featureFlags/growthbook/integration.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/integrations/featureFlags/growthbook/index.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/integrations/featureFlags/statsig/types.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/integrations/featureFlags/statsig/integration.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/integrations/featureFlags/statsig/index.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/diagnose-sdk.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/integrations/webWorker.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/node_modules/@sentry/browser/build/npm/types/index.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/build/types/sdk.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/build/types/error.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/build/types/profiler.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/build/types/errorboundary.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/build/types/redux.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/build/types/types.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/build/types/reactrouterv3.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/build/types/tanstackrouter.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/build/types/reactrouter.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/build/types/reactrouter-compat-utils/instrumentation.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/build/types/reactrouter-compat-utils/utils.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/build/types/reactrouter-compat-utils/lazy-routes.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/build/types/reactrouter-compat-utils/index.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/build/types/reactrouterv6.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/build/types/reactrouterv7.d.ts","../../../node_modules/@sentry/nextjs/node_modules/@sentry/react/build/types/index.d.ts","../../../node_modules/@sentry/nextjs/build/types/common/pages-router-instrumentation/wrapGetStaticPropsWithSentry.d.ts","../../../node_modules/@sentry/nextjs/build/types/common/pages-router-instrumentation/wrapGetInitialPropsWithSentry.d.ts","../../../node_modules/@sentry/nextjs/build/types/common/pages-router-instrumentation/wrapAppGetInitialPropsWithSentry.d.ts","../../../node_modules/@sentry/nextjs/build/types/common/pages-router-instrumentation/wrapDocumentGetInitialPropsWithSentry.d.ts","../../../node_modules/@sentry/nextjs/build/types/common/pages-router-instrumentation/wrapErrorGetInitialPropsWithSentry.d.ts","../../../node_modules/@sentry/nextjs/build/types/common/pages-router-instrumentation/wrapGetServerSidePropsWithSentry.d.ts","../../../node_modules/@sentry/nextjs/build/types/config/templates/requestAsyncStorageShim.d.ts","../../../node_modules/@sentry/nextjs/build/types/common/types.d.ts","../../../node_modules/@sentry/nextjs/build/types/common/wrapServerComponentWithSentry.d.ts","../../../node_modules/@sentry/nextjs/build/types/common/wrapRouteHandlerWithSentry.d.ts","../../../node_modules/@sentry/nextjs/build/types/common/pages-router-instrumentation/wrapApiHandlerWithSentryVercelCrons.d.ts","../../../node_modules/@sentry/nextjs/build/types/edge/types.d.ts","../../../node_modules/@sentry/nextjs/build/types/common/wrapMiddlewareWithSentry.d.ts","../../../node_modules/@sentry/nextjs/build/types/common/pages-router-instrumentation/wrapPageComponentWithSentry.d.ts","../../../node_modules/@sentry/nextjs/build/types/common/wrapGenerationFunctionWithSentry.d.ts","../../../node_modules/@sentry/nextjs/build/types/common/withServerActionInstrumentation.d.ts","../../../node_modules/@sentry/nextjs/build/types/common/captureRequestError.d.ts","../../../node_modules/@sentry/nextjs/build/types/common/index.d.ts","../../../node_modules/@sentry/nextjs/build/types/common/pages-router-instrumentation/_error.d.ts","../../../node_modules/@sentry/nextjs/build/types/common/utils/nextSpan.d.ts","../../../node_modules/@sentry/nextjs/build/types/client/browserTracingIntegration.d.ts","../../../node_modules/@sentry/nextjs/build/types/client/routing/appRouterRoutingInstrumentation.d.ts","../../../node_modules/@sentry/nextjs/build/types/client/index.d.ts","../../../node_modules/@sentry/vercel-edge/node_modules/@sentry/core/build/types/index.d.ts","../../../node_modules/@opentelemetry/api/build/src/baggage/internal/symbol.d.ts","../../../node_modules/@opentelemetry/api/build/src/baggage/types.d.ts","../../../node_modules/@opentelemetry/api/build/src/baggage/utils.d.ts","../../../node_modules/@opentelemetry/api/build/src/common/Exception.d.ts","../../../node_modules/@opentelemetry/api/build/src/common/Time.d.ts","../../../node_modules/@opentelemetry/api/build/src/common/Attributes.d.ts","../../../node_modules/@opentelemetry/api/build/src/context/types.d.ts","../../../node_modules/@opentelemetry/api/build/src/context/context.d.ts","../../../node_modules/@opentelemetry/api/build/src/api/context.d.ts","../../../node_modules/@opentelemetry/api/build/src/diag/types.d.ts","../../../node_modules/@opentelemetry/api/build/src/diag/consoleLogger.d.ts","../../../node_modules/@opentelemetry/api/build/src/api/diag.d.ts","../../../node_modules/@opentelemetry/api/build/src/metrics/ObservableResult.d.ts","../../../node_modules/@opentelemetry/api/build/src/metrics/Metric.d.ts","../../../node_modules/@opentelemetry/api/build/src/metrics/Meter.d.ts","../../../node_modules/@opentelemetry/api/build/src/metrics/NoopMeter.d.ts","../../../node_modules/@opentelemetry/api/build/src/metrics/MeterProvider.d.ts","../../../node_modules/@opentelemetry/api/build/src/api/metrics.d.ts","../../../node_modules/@opentelemetry/api/build/src/propagation/TextMapPropagator.d.ts","../../../node_modules/@opentelemetry/api/build/src/baggage/context-helpers.d.ts","../../../node_modules/@opentelemetry/api/build/src/api/propagation.d.ts","../../../node_modules/@opentelemetry/api/build/src/trace/attributes.d.ts","../../../node_modules/@opentelemetry/api/build/src/trace/trace_state.d.ts","../../../node_modules/@opentelemetry/api/build/src/trace/span_context.d.ts","../../../node_modules/@opentelemetry/api/build/src/trace/link.d.ts","../../../node_modules/@opentelemetry/api/build/src/trace/status.d.ts","../../../node_modules/@opentelemetry/api/build/src/trace/span.d.ts","../../../node_modules/@opentelemetry/api/build/src/trace/span_kind.d.ts","../../../node_modules/@opentelemetry/api/build/src/trace/SpanOptions.d.ts","../../../node_modules/@opentelemetry/api/build/src/trace/tracer.d.ts","../../../node_modules/@opentelemetry/api/build/src/trace/tracer_options.d.ts","../../../node_modules/@opentelemetry/api/build/src/trace/ProxyTracer.d.ts","../../../node_modules/@opentelemetry/api/build/src/trace/tracer_provider.d.ts","../../../node_modules/@opentelemetry/api/build/src/trace/ProxyTracerProvider.d.ts","../../../node_modules/@opentelemetry/api/build/src/trace/SamplingResult.d.ts","../../../node_modules/@opentelemetry/api/build/src/trace/Sampler.d.ts","../../../node_modules/@opentelemetry/api/build/src/trace/trace_flags.d.ts","../../../node_modules/@opentelemetry/api/build/src/trace/internal/utils.d.ts","../../../node_modules/@opentelemetry/api/build/src/trace/spancontext-utils.d.ts","../../../node_modules/@opentelemetry/api/build/src/trace/invalid-span-constants.d.ts","../../../node_modules/@opentelemetry/api/build/src/trace/context-utils.d.ts","../../../node_modules/@opentelemetry/api/build/src/api/trace.d.ts","../../../node_modules/@opentelemetry/api/build/src/context-api.d.ts","../../../node_modules/@opentelemetry/api/build/src/diag-api.d.ts","../../../node_modules/@opentelemetry/api/build/src/metrics-api.d.ts","../../../node_modules/@opentelemetry/api/build/src/propagation-api.d.ts","../../../node_modules/@opentelemetry/api/build/src/trace-api.d.ts","../../../node_modules/@opentelemetry/api/build/src/index.d.ts","../../../node_modules/@opentelemetry/resources/build/src/types.d.ts","../../../node_modules/@opentelemetry/resources/build/src/config.d.ts","../../../node_modules/@opentelemetry/resources/build/src/Resource.d.ts","../../../node_modules/@opentelemetry/resources/build/src/detect-resources.d.ts","../../../node_modules/@opentelemetry/resources/build/src/detectors/EnvDetector.d.ts","../../../node_modules/@opentelemetry/resources/build/src/detectors/platform/node/HostDetector.d.ts","../../../node_modules/@opentelemetry/resources/build/src/detectors/platform/node/OSDetector.d.ts","../../../node_modules/@opentelemetry/resources/build/src/detectors/platform/node/ProcessDetector.d.ts","../../../node_modules/@opentelemetry/resources/build/src/detectors/platform/node/ServiceInstanceIdDetector.d.ts","../../../node_modules/@opentelemetry/resources/build/src/detectors/platform/node/index.d.ts","../../../node_modules/@opentelemetry/resources/build/src/detectors/platform/index.d.ts","../../../node_modules/@opentelemetry/resources/build/src/detectors/NoopDetector.d.ts","../../../node_modules/@opentelemetry/resources/build/src/detectors/index.d.ts","../../../node_modules/@opentelemetry/resources/build/src/ResourceImpl.d.ts","../../../node_modules/@opentelemetry/resources/build/src/default-service-name.d.ts","../../../node_modules/@opentelemetry/resources/build/src/index.d.ts","../../../node_modules/@opentelemetry/sdk-trace-base/build/src/IdGenerator.d.ts","../../../node_modules/@opentelemetry/sdk-trace-base/build/src/Sampler.d.ts","../../../node_modules/@opentelemetry/core/build/src/baggage/propagation/W3CBaggagePropagator.d.ts","../../../node_modules/@opentelemetry/core/build/src/common/anchored-clock.d.ts","../../../node_modules/@opentelemetry/core/build/src/common/attributes.d.ts","../../../node_modules/@opentelemetry/core/build/src/common/types.d.ts","../../../node_modules/@opentelemetry/core/build/src/common/global-error-handler.d.ts","../../../node_modules/@opentelemetry/core/build/src/common/logging-error-handler.d.ts","../../../node_modules/@opentelemetry/core/build/src/common/time.d.ts","../../../node_modules/@opentelemetry/core/build/src/common/timer-util.d.ts","../../../node_modules/@opentelemetry/core/build/src/ExportResult.d.ts","../../../node_modules/@opentelemetry/core/build/src/baggage/utils.d.ts","../../../node_modules/@opentelemetry/core/build/src/platform/node/environment.d.ts","../../../node_modules/@opentelemetry/core/build/src/common/globalThis.d.ts","../../../node_modules/@opentelemetry/core/build/src/platform/node/sdk-info.d.ts","../../../node_modules/@opentelemetry/core/build/src/platform/node/index.d.ts","../../../node_modules/@opentelemetry/core/build/src/platform/index.d.ts","../../../node_modules/@opentelemetry/core/build/src/propagation/composite.d.ts","../../../node_modules/@opentelemetry/core/build/src/trace/W3CTraceContextPropagator.d.ts","../../../node_modules/@opentelemetry/core/build/src/trace/rpc-metadata.d.ts","../../../node_modules/@opentelemetry/core/build/src/trace/suppress-tracing.d.ts","../../../node_modules/@opentelemetry/core/build/src/trace/TraceState.d.ts","../../../node_modules/@opentelemetry/core/build/src/utils/merge.d.ts","../../../node_modules/@opentelemetry/core/build/src/utils/timeout.d.ts","../../../node_modules/@opentelemetry/core/build/src/utils/url.d.ts","../../../node_modules/@opentelemetry/core/build/src/utils/callback.d.ts","../../../node_modules/@opentelemetry/core/build/src/utils/configuration.d.ts","../../../node_modules/@opentelemetry/core/build/src/internal/exporter.d.ts","../../../node_modules/@opentelemetry/core/build/src/index.d.ts","../../../node_modules/@opentelemetry/sdk-trace-base/build/src/TimedEvent.d.ts","../../../node_modules/@opentelemetry/sdk-trace-base/build/src/export/ReadableSpan.d.ts","../../../node_modules/@opentelemetry/sdk-trace-base/build/src/Span.d.ts","../../../node_modules/@opentelemetry/sdk-trace-base/build/src/SpanProcessor.d.ts","../../../node_modules/@opentelemetry/sdk-trace-base/build/src/types.d.ts","../../../node_modules/@opentelemetry/sdk-trace-base/build/src/BasicTracerProvider.d.ts","../../../node_modules/@opentelemetry/sdk-trace-base/build/src/export/SpanExporter.d.ts","../../../node_modules/@opentelemetry/sdk-trace-base/build/src/export/BatchSpanProcessorBase.d.ts","../../../node_modules/@opentelemetry/sdk-trace-base/build/src/platform/node/export/BatchSpanProcessor.d.ts","../../../node_modules/@opentelemetry/sdk-trace-base/build/src/platform/node/RandomIdGenerator.d.ts","../../../node_modules/@opentelemetry/sdk-trace-base/build/src/platform/node/index.d.ts","../../../node_modules/@opentelemetry/sdk-trace-base/build/src/platform/index.d.ts","../../../node_modules/@opentelemetry/sdk-trace-base/build/src/export/ConsoleSpanExporter.d.ts","../../../node_modules/@opentelemetry/sdk-trace-base/build/src/export/InMemorySpanExporter.d.ts","../../../node_modules/@opentelemetry/sdk-trace-base/build/src/export/SimpleSpanProcessor.d.ts","../../../node_modules/@opentelemetry/sdk-trace-base/build/src/export/NoopSpanProcessor.d.ts","../../../node_modules/@opentelemetry/sdk-trace-base/build/src/sampler/AlwaysOffSampler.d.ts","../../../node_modules/@opentelemetry/sdk-trace-base/build/src/sampler/AlwaysOnSampler.d.ts","../../../node_modules/@opentelemetry/sdk-trace-base/build/src/sampler/ParentBasedSampler.d.ts","../../../node_modules/@opentelemetry/sdk-trace-base/build/src/sampler/TraceIdRatioBasedSampler.d.ts","../../../node_modules/@opentelemetry/sdk-trace-base/build/src/index.d.ts","../../../node_modules/@sentry/vercel-edge/build/types/client.d.ts","../../../node_modules/@sentry/vercel-edge/build/types/transports/index.d.ts","../../../node_modules/@sentry/vercel-edge/build/types/types.d.ts","../../../node_modules/@sentry/vercel-edge/build/types/sdk.d.ts","../../../node_modules/@sentry/vercel-edge/build/types/integrations/wintercg-fetch.d.ts","../../../node_modules/@sentry/vercel-edge/build/types/integrations/tracing/vercelai.d.ts","../../../node_modules/@sentry/vercel-edge/build/types/index.d.ts","../../../node_modules/@sentry/nextjs/build/types/edge/wrapApiHandlerWithSentry.d.ts","../../../node_modules/@sentry/nextjs/build/types/edge/index.d.ts","../../../node_modules/@opentelemetry/api-logs/build/src/types/AnyValue.d.ts","../../../node_modules/@opentelemetry/api-logs/build/src/types/LogRecord.d.ts","../../../node_modules/@opentelemetry/api-logs/build/src/types/Logger.d.ts","../../../node_modules/@opentelemetry/api-logs/build/src/types/LoggerOptions.d.ts","../../../node_modules/@opentelemetry/api-logs/build/src/types/LoggerProvider.d.ts","../../../node_modules/@opentelemetry/api-logs/build/src/NoopLogger.d.ts","../../../node_modules/@opentelemetry/api-logs/build/src/api/logs.d.ts","../../../node_modules/@opentelemetry/api-logs/build/src/index.d.ts","../../../node_modules/@opentelemetry/instrumentation/build/src/types.d.ts","../../../node_modules/@opentelemetry/instrumentation/build/src/types_internal.d.ts","../../../node_modules/@opentelemetry/instrumentation/build/src/autoLoader.d.ts","../../../node_modules/@opentelemetry/instrumentation/build/src/shimmer.d.ts","../../../node_modules/@opentelemetry/instrumentation/build/src/instrumentation.d.ts","../../../node_modules/@opentelemetry/instrumentation/build/src/platform/node/instrumentation.d.ts","../../../node_modules/@opentelemetry/instrumentation/build/src/platform/node/normalize.d.ts","../../../node_modules/@opentelemetry/instrumentation/build/src/platform/node/index.d.ts","../../../node_modules/@opentelemetry/instrumentation/build/src/platform/index.d.ts","../../../node_modules/@opentelemetry/instrumentation/build/src/instrumentationNodeModuleDefinition.d.ts","../../../node_modules/@opentelemetry/instrumentation/build/src/instrumentationNodeModuleFile.d.ts","../../../node_modules/@opentelemetry/instrumentation/build/src/utils.d.ts","../../../node_modules/@opentelemetry/instrumentation/build/src/semconvStability.d.ts","../../../node_modules/@opentelemetry/instrumentation/build/src/index.d.ts","../../../node_modules/@opentelemetry/instrumentation-http/build/src/types.d.ts","../../../node_modules/@opentelemetry/instrumentation-http/build/src/http.d.ts","../../../node_modules/@opentelemetry/instrumentation-http/build/src/index.d.ts","../../../node_modules/@sentry/node/node_modules/@sentry/core/build/types/index.d.ts","../../../node_modules/@sentry/node-core/node_modules/@sentry/core/build/types/index.d.ts","../../../node_modules/@sentry/node-core/build/types/integrations/http/SentryHttpInstrumentation.d.ts","../../../node_modules/@sentry/node-core/build/types/integrations/http/index.d.ts","../../../node_modules/@sentry/opentelemetry/build/types/semanticAttributes.d.ts","../../../node_modules/@sentry/opentelemetry/node_modules/@sentry/core/build/types/index.d.ts","../../../node_modules/@sentry/opentelemetry/build/types/utils/getRequestSpanData.d.ts","../../../node_modules/@sentry/opentelemetry/build/types/types.d.ts","../../../node_modules/@sentry/opentelemetry/build/types/custom/client.d.ts","../../../node_modules/@sentry/opentelemetry/build/types/utils/getSpanKind.d.ts","../../../node_modules/@sentry/opentelemetry/build/types/utils/contextData.d.ts","../../../node_modules/@sentry/opentelemetry/build/types/utils/spanTypes.d.ts","../../../node_modules/@sentry/opentelemetry/build/types/utils/isSentryRequest.d.ts","../../../node_modules/@sentry/opentelemetry/build/types/utils/enhanceDscWithOpenTelemetryRootSpanName.d.ts","../../../node_modules/@sentry/opentelemetry/build/types/utils/getActiveSpan.d.ts","../../../node_modules/@sentry/opentelemetry/build/types/trace.d.ts","../../../node_modules/@sentry/opentelemetry/build/types/utils/suppressTracing.d.ts","../../../node_modules/@sentry/opentelemetry/build/types/setupEventContextTrace.d.ts","../../../node_modules/@sentry/opentelemetry/build/types/asyncContextStrategy.d.ts","../../../node_modules/@sentry/opentelemetry/build/types/contextManager.d.ts","../../../node_modules/@sentry/opentelemetry/build/types/propagator.d.ts","../../../node_modules/@sentry/opentelemetry/build/types/spanProcessor.d.ts","../../../node_modules/@sentry/opentelemetry/build/types/sampler.d.ts","../../../node_modules/@sentry/opentelemetry/build/types/utils/setupCheck.d.ts","../../../node_modules/@sentry/opentelemetry/build/types/index.d.ts","../../../node_modules/@sentry/node-core/build/types/transports/http-module.d.ts","../../../node_modules/@sentry/node-core/build/types/transports/http.d.ts","../../../node_modules/@sentry/node-core/build/types/transports/index.d.ts","../../../node_modules/@sentry/node-core/build/types/types.d.ts","../../../node_modules/@sentry/node-core/build/types/sdk/client.d.ts","../../../node_modules/@sentry/node-core/build/types/integrations/http/httpServerSpansIntegration.d.ts","../../../node_modules/@sentry/node-core/build/types/integrations/http/httpServerIntegration.d.ts","../../../node_modules/@sentry/node-core/build/types/integrations/node-fetch/index.d.ts","../../../node_modules/@sentry/node-core/build/types/integrations/node-fetch/SentryNodeFetchInstrumentation.d.ts","../../../node_modules/@opentelemetry/context-async-hooks/build/src/AbstractAsyncHooksContextManager.d.ts","../../../node_modules/@opentelemetry/context-async-hooks/build/src/AsyncHooksContextManager.d.ts","../../../node_modules/@opentelemetry/context-async-hooks/build/src/AsyncLocalStorageContextManager.d.ts","../../../node_modules/@opentelemetry/context-async-hooks/build/src/index.d.ts","../../../node_modules/@sentry/node-core/build/types/otel/contextManager.d.ts","../../../node_modules/@sentry/node-core/build/types/otel/logger.d.ts","../../../node_modules/@sentry/node-core/build/types/otel/instrument.d.ts","../../../node_modules/@sentry/node-core/build/types/sdk/index.d.ts","../../../node_modules/@sentry/node-core/build/types/sdk/scope.d.ts","../../../node_modules/@sentry/node-core/build/types/utils/ensureIsWrapped.d.ts","../../../node_modules/@sentry/node-core/build/types/integrations/processSession.d.ts","../../../node_modules/@sentry/node-core/build/types/integrations/anr/common.d.ts","../../../node_modules/@sentry/node-core/build/types/integrations/anr/index.d.ts","../../../node_modules/@sentry/node-core/build/types/logs/capture.d.ts","../../../node_modules/@sentry/node-core/build/types/logs/exports.d.ts","../../../node_modules/@sentry/node-core/build/types/integrations/context.d.ts","../../../node_modules/@sentry/node-core/build/types/integrations/contextlines.d.ts","../../../node_modules/@sentry/node-core/build/types/integrations/local-variables/common.d.ts","../../../node_modules/@sentry/node-core/build/types/integrations/local-variables/index.d.ts","../../../node_modules/@sentry/node-core/build/types/integrations/modules.d.ts","../../../node_modules/@sentry/node-core/build/types/integrations/onuncaughtexception.d.ts","../../../node_modules/@sentry/node-core/build/types/integrations/onunhandledrejection.d.ts","../../../node_modules/@sentry/node-core/build/types/integrations/spotlight.d.ts","../../../node_modules/@sentry/node-core/build/types/integrations/systemError.d.ts","../../../node_modules/@sentry/node-core/build/types/integrations/childProcess.d.ts","../../../node_modules/@sentry/node-core/build/types/integrations/winston.d.ts","../../../node_modules/@sentry/node-core/build/types/integrations/pino.d.ts","../../../node_modules/@sentry/node-core/build/types/sdk/api.d.ts","../../../node_modules/@sentry/node-core/build/types/utils/module.d.ts","../../../node_modules/@sentry/node-core/build/types/utils/addOriginToSpan.d.ts","../../../node_modules/@sentry/node-core/build/types/utils/getRequestUrl.d.ts","../../../node_modules/@sentry/node-core/build/types/sdk/esmLoader.d.ts","../../../node_modules/@sentry/node-core/build/types/utils/detection.d.ts","../../../node_modules/@sentry/node-core/build/types/utils/createMissingInstrumentationContext.d.ts","../../../node_modules/@sentry/node-core/build/types/cron/cron.d.ts","../../../node_modules/@sentry/node-core/build/types/cron/node-cron.d.ts","../../../node_modules/@sentry/node-core/build/types/cron/node-schedule.d.ts","../../../node_modules/@sentry/node-core/build/types/cron/index.d.ts","../../../node_modules/@sentry/node-core/build/types/nodeVersion.d.ts","../../../node_modules/@sentry/node-core/build/types/common-exports.d.ts","../../../node_modules/@sentry/node-core/build/types/index.d.ts","../../../node_modules/@sentry/node/build/types/types.d.ts","../../../node_modules/@sentry/node/build/types/integrations/http.d.ts","../../../node_modules/@opentelemetry/instrumentation-undici/build/src/types.d.ts","../../../node_modules/@opentelemetry/instrumentation-undici/build/src/undici.d.ts","../../../node_modules/@opentelemetry/instrumentation-undici/build/src/index.d.ts","../../../node_modules/@sentry/node/build/types/integrations/node-fetch.d.ts","../../../node_modules/@sentry/node/build/types/integrations/fs.d.ts","../../../node_modules/@opentelemetry/instrumentation-express/build/src/enums/ExpressLayerType.d.ts","../../../node_modules/@opentelemetry/instrumentation-express/build/src/types.d.ts","../../../node_modules/@opentelemetry/instrumentation-express/build/src/instrumentation.d.ts","../../../node_modules/@opentelemetry/instrumentation-express/build/src/enums/AttributeNames.d.ts","../../../node_modules/@opentelemetry/instrumentation-express/build/src/index.d.ts","../../../node_modules/@sentry/node/build/types/integrations/tracing/express.d.ts","../../../node_modules/@sentry/node/build/types/integrations/tracing/fastify/types.d.ts","../../../node_modules/@sentry/node/build/types/integrations/tracing/fastify/v3/types.d.ts","../../../node_modules/@sentry/node/build/types/integrations/tracing/fastify/v3/instrumentation.d.ts","../../../node_modules/@sentry/node/build/types/integrations/tracing/fastify/index.d.ts","../../../node_modules/@opentelemetry/instrumentation-graphql/build/src/types.d.ts","../../../node_modules/@opentelemetry/instrumentation-graphql/build/src/instrumentation.d.ts","../../../node_modules/@opentelemetry/instrumentation-graphql/build/src/index.d.ts","../../../node_modules/@sentry/node/build/types/integrations/tracing/graphql.d.ts","../../../node_modules/@opentelemetry/instrumentation-kafkajs/build/src/types.d.ts","../../../node_modules/@opentelemetry/instrumentation-kafkajs/build/src/instrumentation.d.ts","../../../node_modules/@opentelemetry/instrumentation-kafkajs/build/src/index.d.ts","../../../node_modules/@sentry/node/build/types/integrations/tracing/kafka.d.ts","../../../node_modules/@opentelemetry/instrumentation-lru-memoizer/build/src/instrumentation.d.ts","../../../node_modules/@opentelemetry/instrumentation-lru-memoizer/build/src/index.d.ts","../../../node_modules/@sentry/node/build/types/integrations/tracing/lrumemoizer.d.ts","../../../node_modules/@opentelemetry/instrumentation-mongodb/build/src/types.d.ts","../../../node_modules/@opentelemetry/instrumentation-mongodb/build/src/instrumentation.d.ts","../../../node_modules/@opentelemetry/instrumentation-mongodb/build/src/index.d.ts","../../../node_modules/@sentry/node/build/types/integrations/tracing/mongo.d.ts","../../../node_modules/@opentelemetry/instrumentation-mongoose/build/src/types.d.ts","../../../node_modules/@opentelemetry/instrumentation-mongoose/build/src/mongoose.d.ts","../../../node_modules/@opentelemetry/instrumentation-mongoose/build/src/index.d.ts","../../../node_modules/@sentry/node/build/types/integrations/tracing/mongoose.d.ts","../../../node_modules/@opentelemetry/instrumentation-mysql/build/src/types.d.ts","../../../node_modules/@opentelemetry/instrumentation-mysql/build/src/instrumentation.d.ts","../../../node_modules/@opentelemetry/instrumentation-mysql/build/src/index.d.ts","../../../node_modules/@sentry/node/build/types/integrations/tracing/mysql.d.ts","../../../node_modules/@opentelemetry/instrumentation-mysql2/build/src/types.d.ts","../../../node_modules/@opentelemetry/instrumentation-mysql2/build/src/instrumentation.d.ts","../../../node_modules/@opentelemetry/instrumentation-mysql2/build/src/index.d.ts","../../../node_modules/@sentry/node/build/types/integrations/tracing/mysql2.d.ts","../../../node_modules/@opentelemetry/instrumentation-ioredis/build/src/types.d.ts","../../../node_modules/@opentelemetry/instrumentation-ioredis/build/src/instrumentation.d.ts","../../../node_modules/@opentelemetry/instrumentation-ioredis/build/src/index.d.ts","../../../node_modules/@sentry/node/build/types/integrations/tracing/redis.d.ts","../../../node_modules/@opentelemetry/instrumentation-pg/node_modules/@types/pg/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/@opentelemetry/instrumentation-pg/node_modules/@types/pg/lib/type-overrides.d.ts","../../../node_modules/@opentelemetry/instrumentation-pg/node_modules/@types/pg/index.d.ts","../../../node_modules/@opentelemetry/instrumentation-pg/node_modules/@types/pg/index.d.mts","../../../node_modules/@opentelemetry/instrumentation-pg/build/src/types.d.ts","../../../node_modules/@opentelemetry/instrumentation-pg/build/src/instrumentation.d.ts","../../../node_modules/@opentelemetry/instrumentation-pg/build/src/enums/AttributeNames.d.ts","../../../node_modules/@opentelemetry/instrumentation-pg/build/src/index.d.ts","../../../node_modules/@sentry/node/build/types/integrations/tracing/postgres.d.ts","../../../node_modules/@sentry/node/build/types/integrations/tracing/postgresjs.d.ts","../../../node_modules/@prisma/instrumentation/node_modules/@opentelemetry/instrumentation/node_modules/@opentelemetry/api-logs/build/src/types/AnyValue.d.ts","../../../node_modules/@prisma/instrumentation/node_modules/@opentelemetry/instrumentation/node_modules/@opentelemetry/api-logs/build/src/types/LogRecord.d.ts","../../../node_modules/@prisma/instrumentation/node_modules/@opentelemetry/instrumentation/node_modules/@opentelemetry/api-logs/build/src/types/Logger.d.ts","../../../node_modules/@prisma/instrumentation/node_modules/@opentelemetry/instrumentation/node_modules/@opentelemetry/api-logs/build/src/types/LoggerOptions.d.ts","../../../node_modules/@prisma/instrumentation/node_modules/@opentelemetry/instrumentation/node_modules/@opentelemetry/api-logs/build/src/types/LoggerProvider.d.ts","../../../node_modules/@prisma/instrumentation/node_modules/@opentelemetry/instrumentation/node_modules/@opentelemetry/api-logs/build/src/NoopLogger.d.ts","../../../node_modules/@prisma/instrumentation/node_modules/@opentelemetry/instrumentation/node_modules/@opentelemetry/api-logs/build/src/NoopLoggerProvider.d.ts","../../../node_modules/@prisma/instrumentation/node_modules/@opentelemetry/instrumentation/node_modules/@opentelemetry/api-logs/build/src/ProxyLogger.d.ts","../../../node_modules/@prisma/instrumentation/node_modules/@opentelemetry/instrumentation/node_modules/@opentelemetry/api-logs/build/src/ProxyLoggerProvider.d.ts","../../../node_modules/@prisma/instrumentation/node_modules/@opentelemetry/instrumentation/node_modules/@opentelemetry/api-logs/build/src/api/logs.d.ts","../../../node_modules/@prisma/instrumentation/node_modules/@opentelemetry/instrumentation/node_modules/@opentelemetry/api-logs/build/src/index.d.ts","../../../node_modules/@prisma/instrumentation/node_modules/@opentelemetry/instrumentation/build/src/types.d.ts","../../../node_modules/@prisma/instrumentation/node_modules/@opentelemetry/instrumentation/build/src/types_internal.d.ts","../../../node_modules/@prisma/instrumentation/node_modules/@opentelemetry/instrumentation/build/src/autoLoader.d.ts","../../../node_modules/@prisma/instrumentation/node_modules/@opentelemetry/instrumentation/build/src/shimmer.d.ts","../../../node_modules/@prisma/instrumentation/node_modules/@opentelemetry/instrumentation/build/src/instrumentation.d.ts","../../../node_modules/@prisma/instrumentation/node_modules/@opentelemetry/instrumentation/build/src/platform/node/instrumentation.d.ts","../../../node_modules/@prisma/instrumentation/node_modules/@opentelemetry/instrumentation/build/src/platform/node/normalize.d.ts","../../../node_modules/@prisma/instrumentation/node_modules/@opentelemetry/instrumentation/build/src/platform/node/index.d.ts","../../../node_modules/@prisma/instrumentation/node_modules/@opentelemetry/instrumentation/build/src/platform/index.d.ts","../../../node_modules/@prisma/instrumentation/node_modules/@opentelemetry/instrumentation/build/src/instrumentationNodeModuleDefinition.d.ts","../../../node_modules/@prisma/instrumentation/node_modules/@opentelemetry/instrumentation/build/src/instrumentationNodeModuleFile.d.ts","../../../node_modules/@prisma/instrumentation/node_modules/@opentelemetry/instrumentation/build/src/utils.d.ts","../../../node_modules/@prisma/instrumentation/node_modules/@opentelemetry/instrumentation/build/src/semconvStability.d.ts","../../../node_modules/@prisma/instrumentation/node_modules/@opentelemetry/instrumentation/build/src/index.d.ts","../../../node_modules/@prisma/instrumentation/dist/index.d.ts","../../../node_modules/@sentry/node/build/types/integrations/tracing/prisma.d.ts","../../../node_modules/@opentelemetry/instrumentation-hapi/build/src/instrumentation.d.ts","../../../node_modules/@opentelemetry/instrumentation-hapi/build/src/enums/AttributeNames.d.ts","../../../node_modules/@opentelemetry/instrumentation-hapi/build/src/index.d.ts","../../../node_modules/@sentry/node/build/types/integrations/tracing/hapi/types.d.ts","../../../node_modules/@sentry/node/build/types/integrations/tracing/hapi/index.d.ts","../../../node_modules/@sentry/node/build/types/integrations/tracing/hono/instrumentation.d.ts","../../../node_modules/@sentry/node/build/types/integrations/tracing/hono/types.d.ts","../../../node_modules/@sentry/node/build/types/integrations/tracing/hono/index.d.ts","../../../node_modules/@opentelemetry/instrumentation-koa/build/src/types.d.ts","../../../node_modules/@opentelemetry/instrumentation-koa/build/src/instrumentation.d.ts","../../../node_modules/@opentelemetry/instrumentation-koa/build/src/enums/AttributeNames.d.ts","../../../node_modules/@opentelemetry/instrumentation-koa/build/src/index.d.ts","../../../node_modules/@sentry/node/build/types/integrations/tracing/koa.d.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@opentelemetry/instrumentation-connect/build/src/internal-types.d.ts","../../../node_modules/@opentelemetry/instrumentation-connect/build/src/instrumentation.d.ts","../../../node_modules/@opentelemetry/instrumentation-connect/build/src/enums/AttributeNames.d.ts","../../../node_modules/@opentelemetry/instrumentation-connect/build/src/index.d.ts","../../../node_modules/@sentry/node/build/types/integrations/tracing/connect.d.ts","../../../node_modules/@opentelemetry/instrumentation-knex/build/src/types.d.ts","../../../node_modules/@opentelemetry/instrumentation-knex/build/src/instrumentation.d.ts","../../../node_modules/@opentelemetry/instrumentation-knex/build/src/index.d.ts","../../../node_modules/@sentry/node/build/types/integrations/tracing/knex.d.ts","../../../node_modules/@opentelemetry/instrumentation-tedious/build/src/types.d.ts","../../../node_modules/@opentelemetry/instrumentation-tedious/build/src/instrumentation.d.ts","../../../node_modules/@opentelemetry/instrumentation-tedious/build/src/index.d.ts","../../../node_modules/@sentry/node/build/types/integrations/tracing/tedious.d.ts","../../../node_modules/@opentelemetry/instrumentation-generic-pool/build/src/instrumentation.d.ts","../../../node_modules/@opentelemetry/instrumentation-generic-pool/build/src/index.d.ts","../../../node_modules/@sentry/node/build/types/integrations/tracing/genericPool.d.ts","../../../node_modules/@opentelemetry/instrumentation-dataloader/build/src/types.d.ts","../../../node_modules/@opentelemetry/instrumentation-dataloader/build/src/instrumentation.d.ts","../../../node_modules/@opentelemetry/instrumentation-dataloader/build/src/index.d.ts","../../../node_modules/@sentry/node/build/types/integrations/tracing/dataloader.d.ts","../../../node_modules/@opentelemetry/instrumentation-amqplib/build/src/types.d.ts","../../../node_modules/@opentelemetry/instrumentation-amqplib/build/src/amqplib.d.ts","../../../node_modules/@opentelemetry/instrumentation-amqplib/build/src/index.d.ts","../../../node_modules/@sentry/node/build/types/integrations/tracing/amqplib.d.ts","../../../node_modules/@sentry/node/build/types/integrations/tracing/vercelai/instrumentation.d.ts","../../../node_modules/@sentry/node/build/types/integrations/tracing/vercelai/types.d.ts","../../../node_modules/@sentry/node/build/types/integrations/tracing/vercelai/index.d.ts","../../../node_modules/@sentry/node/build/types/integrations/tracing/openai/index.d.ts","../../../node_modules/@sentry/node/build/types/integrations/tracing/anthropic-ai/index.d.ts","../../../node_modules/@sentry/node/build/types/integrations/tracing/google-genai/index.d.ts","../../../node_modules/@sentry/node/build/types/integrations/tracing/langchain/index.d.ts","../../../node_modules/@sentry/node/build/types/integrations/tracing/langgraph/index.d.ts","../../../node_modules/@sentry/node/build/types/integrations/featureFlagShims/launchDarkly.d.ts","../../../node_modules/@sentry/node/build/types/integrations/featureFlagShims/openFeature.d.ts","../../../node_modules/@sentry/node/build/types/integrations/featureFlagShims/statsig.d.ts","../../../node_modules/@sentry/node/build/types/integrations/featureFlagShims/unleash.d.ts","../../../node_modules/@sentry/node/build/types/integrations/featureFlagShims/growthbook.d.ts","../../../node_modules/@sentry/node/build/types/integrations/featureFlagShims/index.d.ts","../../../node_modules/@sentry/node/build/types/integrations/tracing/firebase/otel/types.d.ts","../../../node_modules/@sentry/node/build/types/integrations/tracing/firebase/otel/firebaseInstrumentation.d.ts","../../../node_modules/@sentry/node/build/types/integrations/tracing/firebase/otel/index.d.ts","../../../node_modules/@sentry/node/build/types/integrations/tracing/firebase/firebase.d.ts","../../../node_modules/@sentry/node/build/types/integrations/tracing/firebase/index.d.ts","../../../node_modules/@sentry/node/build/types/sdk/index.d.ts","../../../node_modules/@sentry/node/build/types/sdk/initOtel.d.ts","../../../node_modules/@sentry/node/build/types/integrations/tracing/index.d.ts","../../../node_modules/@sentry/node/build/types/index.d.ts","../../../node_modules/@sentry/nextjs/build/types/common/pages-router-instrumentation/wrapApiHandlerWithSentry.d.ts","../../../node_modules/@sentry/nextjs/build/types/server/index.d.ts","../../../node_modules/magic-string/dist/magic-string.es.d.mts","../../../node_modules/@sentry/bundler-plugin-core/dist/types/utils.d.ts","../../../node_modules/@sentry/bundler-plugin-core/dist/types/glob.d.ts","../../../node_modules/@sentry/bundler-plugin-core/dist/types/logger.d.ts","../../../node_modules/@sentry/bundler-plugin-core/dist/types/types.d.ts","../../../node_modules/@sentry/bundler-plugin-core/dist/types/options-mapping.d.ts","../../../node_modules/@sentry/bundler-plugin-core/dist/types/build-plugin-manager.d.ts","../../../node_modules/@sentry/bundler-plugin-core/dist/types/debug-id-upload.d.ts","../../../node_modules/@sentry/bundler-plugin-core/dist/types/index.d.ts","../../../node_modules/@sentry/webpack-plugin/dist/types/webpack4and5.d.ts","../../../node_modules/@sentry/webpack-plugin/dist/types/index.d.ts","../../../node_modules/@sentry/nextjs/build/types/config/types.d.ts","../../../node_modules/@sentry/nextjs/build/types/config/withSentryConfig/constants.d.ts","../../../node_modules/@sentry/nextjs/build/types/config/withSentryConfig/index.d.ts","../../../node_modules/@sentry/nextjs/build/types/config/index.d.ts","../../../node_modules/@sentry/nextjs/build/types/index.types.d.ts","../../../node_modules/jiti/lib/types.d.ts","../../../node_modules/jiti/lib/jiti.d.mts","../../../node_modules/next-plausible/dist/lib/usePlausible.d.ts","../../../node_modules/next-plausible/dist/lib/common.d.ts","../../../node_modules/next-plausible/dist/lib/withPlausibleProxy.d.ts","../../../node_modules/next-plausible/dist/lib/PlausibleProvider.d.ts","../../../node_modules/next-plausible/dist/index.d.ts","../next.config.js","../../../tools/tailwind/postcss-config.js","../postcss.config.js","../../../node_modules/@vitest/spy/optional-types.d.ts","../../../node_modules/@vitest/spy/dist/index.d.ts","../../../node_modules/tinyrainbow/dist/index.d.ts","../../../node_modules/@standard-schema/spec/dist/index.d.ts","../../../node_modules/@vitest/pretty-format/dist/index.d.ts","../../../node_modules/@vitest/utils/dist/types.d-BCElaP-c.d.ts","../../../node_modules/@vitest/utils/dist/diff.d.ts","../../../node_modules/@vitest/utils/dist/display.d.ts","../../../node_modules/@types/deep-eql/index.d.ts","../../../node_modules/assertion-error/index.d.ts","../../../node_modules/@types/chai/index.d.ts","../../../node_modules/@vitest/expect/dist/index.d.ts","../../../node_modules/vite/types/hmrPayload.d.ts","../../../node_modules/vite/dist/node/chunks/moduleRunnerTransport.d.ts","../../../node_modules/vite/types/customEvent.d.ts","../../../node_modules/rolldown/dist/shared/logging-BSNejiLS.d.mts","../../../node_modules/@oxc-project/types/types.d.ts","../../../node_modules/rolldown/dist/shared/binding-BaCZTfMx.d.mts","../../../node_modules/@rolldown/pluginutils/dist/filter/index.d.mts","../../../node_modules/@rolldown/pluginutils/dist/index.d.mts","../../../node_modules/rolldown/dist/shared/define-config-3BX_X2Am.d.mts","../../../node_modules/rolldown/dist/index.d.mts","../../../node_modules/rolldown/dist/parse-ast-index.d.mts","../../../node_modules/vite/types/internal/rollupTypeCompat.d.ts","../../../node_modules/rolldown/dist/shared/constructors-CbNaT434.d.mts","../../../node_modules/rolldown/dist/plugins-index.d.mts","../../../node_modules/rolldown/dist/shared/transform-7xCUVrpL.d.mts","../../../node_modules/rolldown/dist/utils-index.d.mts","../../../node_modules/vite/types/hot.d.ts","../../../node_modules/vite/dist/node/module-runner.d.ts","../../../node_modules/esbuild/lib/main.d.ts","../../../node_modules/vite/types/internal/esbuildOptions.d.ts","../../../node_modules/vite/types/metadata.d.ts","../../../node_modules/@jridgewell/trace-mapping/types/sourcemap-segment.d.mts","../../../node_modules/@jridgewell/trace-mapping/types/types.d.mts","../../../node_modules/@jridgewell/trace-mapping/types/flatten-map.d.mts","../../../node_modules/@jridgewell/trace-mapping/types/trace-mapping.d.mts","../../../node_modules/@jridgewell/gen-mapping/types/sourcemap-segment.d.mts","../../../node_modules/@jridgewell/gen-mapping/types/types.d.mts","../../../node_modules/@jridgewell/gen-mapping/types/gen-mapping.d.mts","../../../node_modules/@jridgewell/source-map/types/source-map.d.mts","../../../node_modules/terser/tools/terser.d.ts","../../../node_modules/vite/types/internal/terserOptions.d.ts","../../../node_modules/source-map-js/source-map.d.ts","../../../node_modules/vite/node_modules/postcss/lib/previous-map.d.ts","../../../node_modules/vite/node_modules/postcss/lib/input.d.ts","../../../node_modules/vite/node_modules/postcss/lib/css-syntax-error.d.ts","../../../node_modules/vite/node_modules/postcss/lib/declaration.d.ts","../../../node_modules/vite/node_modules/postcss/lib/root.d.ts","../../../node_modules/vite/node_modules/postcss/lib/warning.d.ts","../../../node_modules/vite/node_modules/postcss/lib/lazy-result.d.ts","../../../node_modules/vite/node_modules/postcss/lib/no-work-result.d.ts","../../../node_modules/vite/node_modules/postcss/lib/processor.d.ts","../../../node_modules/vite/node_modules/postcss/lib/result.d.ts","../../../node_modules/vite/node_modules/postcss/lib/document.d.ts","../../../node_modules/vite/node_modules/postcss/lib/rule.d.ts","../../../node_modules/vite/node_modules/postcss/lib/node.d.ts","../../../node_modules/vite/node_modules/postcss/lib/comment.d.ts","../../../node_modules/vite/node_modules/postcss/lib/container.d.ts","../../../node_modules/vite/node_modules/postcss/lib/at-rule.d.ts","../../../node_modules/vite/node_modules/postcss/lib/list.d.ts","../../../node_modules/vite/node_modules/postcss/lib/postcss.d.ts","../../../node_modules/vite/node_modules/postcss/lib/postcss.d.mts","../../../node_modules/vite/node_modules/lightningcss/node/ast.d.ts","../../../node_modules/vite/node_modules/lightningcss/node/targets.d.ts","../../../node_modules/vite/node_modules/lightningcss/node/index.d.ts","../../../node_modules/vite/types/internal/lightningcssOptions.d.ts","../../../node_modules/sass/types/deprecations.d.ts","../../../node_modules/sass/types/util/promise_or.d.ts","../../../node_modules/sass/types/importer.d.ts","../../../node_modules/sass/types/logger/source_location.d.ts","../../../node_modules/sass/types/logger/source_span.d.ts","../../../node_modules/sass/types/logger/index.d.ts","../../../node_modules/immutable/dist/immutable.d.ts","../../../node_modules/sass/types/value/boolean.d.ts","../../../node_modules/sass/types/value/calculation.d.ts","../../../node_modules/sass/types/value/color.d.ts","../../../node_modules/sass/types/value/function.d.ts","../../../node_modules/sass/types/value/list.d.ts","../../../node_modules/sass/types/value/map.d.ts","../../../node_modules/sass/types/value/mixin.d.ts","../../../node_modules/sass/types/value/number.d.ts","../../../node_modules/sass/types/value/string.d.ts","../../../node_modules/sass/types/value/argument_list.d.ts","../../../node_modules/sass/types/value/index.d.ts","../../../node_modules/sass/types/options.d.ts","../../../node_modules/sass/types/compile.d.ts","../../../node_modules/sass/types/exception.d.ts","../../../node_modules/sass/types/legacy/exception.d.ts","../../../node_modules/sass/types/legacy/plugin_this.d.ts","../../../node_modules/sass/types/legacy/function.d.ts","../../../node_modules/sass/types/legacy/importer.d.ts","../../../node_modules/sass/types/legacy/options.d.ts","../../../node_modules/sass/types/legacy/render.d.ts","../../../node_modules/sass/types/index.d.ts","../../../node_modules/vite/types/internal/cssPreprocessorOptions.d.ts","../../../node_modules/rolldown/dist/filter-index.d.mts","../../../node_modules/vite/types/importGlob.d.ts","../../../node_modules/vite/dist/node/index.d.ts","../../../node_modules/@vitest/utils/dist/types.d.ts","../../../node_modules/@vitest/utils/dist/helpers.d.ts","../../../node_modules/@vitest/utils/dist/timers.d.ts","../../../node_modules/@vitest/utils/dist/index.d.ts","../../../node_modules/@vitest/runner/dist/tasks.d-DEYaIMIu.d.ts","../../../node_modules/@vitest/runner/dist/index.d.ts","../../../node_modules/vitest/dist/chunks/traces.d.D2T_R8rx.d.ts","../../../node_modules/@vitest/snapshot/dist/environment.d-DOJxxZV9.d.ts","../../../node_modules/@vitest/snapshot/dist/rawSnapshot.d-D_X3-62x.d.ts","../../../node_modules/@vitest/snapshot/dist/index.d.ts","../../../node_modules/vitest/dist/chunks/config.d.A1h_Y6Jt.d.ts","../../../node_modules/vitest/dist/chunks/environment.d.CrsxCzP1.d.ts","../../../node_modules/vitest/dist/chunks/rpc.d.B_8sPU0w.d.ts","../../../node_modules/vitest/dist/chunks/worker.d.ZpHpO4yb.d.ts","../../../node_modules/vitest/dist/chunks/browser.d.BcoexmFG.d.ts","../../../node_modules/happy-dom/lib/PropertySymbol.d.ts","../../../node_modules/happy-dom/lib/browser/enums/BrowserErrorCaptureEnum.d.ts","../../../node_modules/happy-dom/lib/browser/enums/BrowserNavigationCrossOriginPolicyEnum.d.ts","../../../node_modules/happy-dom/lib/event/IEventInit.d.ts","../../../node_modules/happy-dom/lib/event/EventPhaseEnum.d.ts","../../../node_modules/happy-dom/lib/event/Event.d.ts","../../../node_modules/happy-dom/lib/event/IEventListenerOptions.d.ts","../../../node_modules/happy-dom/lib/event/TEventListenerFunction.d.ts","../../../node_modules/happy-dom/lib/event/TEventListenerObject.d.ts","../../../node_modules/happy-dom/lib/event/TEventListener.d.ts","../../../node_modules/happy-dom/lib/console/IConsole.d.ts","../../../node_modules/happy-dom/lib/async-task-manager/AsyncTaskManager.d.ts","../../../node_modules/happy-dom/lib/nodes/node/NodeTypeEnum.d.ts","../../../node_modules/happy-dom/lib/nodes/node/NodeDocumentPositionEnum.d.ts","../../../node_modules/happy-dom/lib/nodes/node/NodeList.d.ts","../../../node_modules/happy-dom/lib/mutation-observer/MutationTypeEnum.d.ts","../../../node_modules/happy-dom/lib/mutation-observer/MutationRecord.d.ts","../../../node_modules/happy-dom/lib/mutation-observer/IMutationObserverInit.d.ts","../../../node_modules/happy-dom/lib/mutation-observer/IMutationListener.d.ts","../../../node_modules/happy-dom/lib/nodes/node/ICachedResult.d.ts","../../../node_modules/happy-dom/lib/nodes/node/ICachedQuerySelectorAllResult.d.ts","../../../node_modules/happy-dom/lib/nodes/node/ICachedQuerySelectorResult.d.ts","../../../node_modules/happy-dom/lib/query-selector/ISelectorMatch.d.ts","../../../node_modules/happy-dom/lib/nodes/node/ICachedMatchesResult.d.ts","../../../node_modules/happy-dom/lib/nodes/node/ICachedElementsByTagNameResult.d.ts","../../../node_modules/happy-dom/lib/nodes/node/ICachedElementByTagNameResult.d.ts","../../../node_modules/happy-dom/lib/css/declaration/property-manager/ICSSStyleDeclarationPropertyValue.d.ts","../../../node_modules/happy-dom/lib/css/declaration/property-manager/CSSStyleDeclarationPropertyManager.d.ts","../../../node_modules/happy-dom/lib/nodes/node/ICachedComputedStyleResult.d.ts","../../../node_modules/happy-dom/lib/nodes/node/ICachedElementByIdResult.d.ts","../../../node_modules/happy-dom/lib/css/CSSRuleTypeEnum.d.ts","../../../node_modules/happy-dom/lib/css/utilities/CSSParser.d.ts","../../../node_modules/happy-dom/lib/css/CSSRule.d.ts","../../../node_modules/happy-dom/lib/css/rules/CSSGroupingRule.d.ts","../../../node_modules/happy-dom/lib/css/rules/CSSConditionRule.d.ts","../../../node_modules/happy-dom/lib/css/rules/CSSMediaRule.d.ts","../../../node_modules/happy-dom/lib/css/MediaList.d.ts","../../../node_modules/happy-dom/lib/css/CSSStyleSheet.d.ts","../../../node_modules/happy-dom/lib/css/declaration/CSSStyleDeclaration.d.ts","../../../node_modules/happy-dom/lib/dom/DOMStringMap.d.ts","../../../node_modules/happy-dom/lib/nodes/attr/Attr.d.ts","../../../node_modules/happy-dom/lib/nodes/html-element/HTMLElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-style-element/HTMLStyleElement.d.ts","../../../node_modules/happy-dom/lib/nodes/element/HTMLCollection.d.ts","../../../node_modules/happy-dom/lib/nodes/html-input-element/HTMLInputElementSelectionModeEnum.d.ts","../../../node_modules/happy-dom/lib/file/Blob.d.ts","../../../node_modules/happy-dom/lib/file/File.d.ts","../../../node_modules/happy-dom/lib/nodes/html-input-element/FileList.d.ts","../../../node_modules/happy-dom/lib/nodes/html-meter-element/HTMLMeterElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-output-element/HTMLOutputElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-progress-element/HTMLProgressElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-option-element/HTMLOptionElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-select-element/HTMLOptionsCollection.d.ts","../../../node_modules/happy-dom/lib/nodes/html-select-element/HTMLSelectElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-text-area-element/HTMLTextAreaElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-label-element/HTMLLabelElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-data-list-element/HTMLDataListElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-input-element/HTMLInputElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-object-element/HTMLObjectElement.d.ts","../../../node_modules/happy-dom/lib/validity-state/ValidityState.d.ts","../../../node_modules/happy-dom/lib/nodes/html-button-element/HTMLButtonElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-field-set-element/HTMLFieldSetElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-form-element/THTMLFormControlElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-form-element/RadioNodeList.d.ts","../../../node_modules/happy-dom/lib/nodes/html-form-element/HTMLFormControlsCollection.d.ts","../../../node_modules/happy-dom/lib/nodes/html-form-element/HTMLFormElement.d.ts","../../../node_modules/happy-dom/lib/nodes/child-node/IChildNode.d.ts","../../../node_modules/happy-dom/lib/nodes/child-node/INonDocumentTypeChildNode.d.ts","../../../node_modules/happy-dom/lib/nodes/character-data/CharacterData.d.ts","../../../node_modules/happy-dom/lib/nodes/text/Text.d.ts","../../../node_modules/happy-dom/lib/nodes/html-slot-element/HTMLSlotElement.d.ts","../../../node_modules/happy-dom/lib/dom/IDOMRectInit.d.ts","../../../node_modules/happy-dom/lib/dom/DOMRectReadOnly.d.ts","../../../node_modules/happy-dom/lib/dom/DOMRect.d.ts","../../../node_modules/happy-dom/lib/dom/IDOMPointInit.d.ts","../../../node_modules/happy-dom/lib/dom/DOMPointReadOnly.d.ts","../../../node_modules/happy-dom/lib/dom/DOMPoint.d.ts","../../../node_modules/happy-dom/lib/dom/dom-matrix/IDOMMatrixCompatibleObject.d.ts","../../../node_modules/happy-dom/lib/dom/dom-matrix/TDOMMatrixInit.d.ts","../../../node_modules/happy-dom/lib/dom/dom-matrix/TDOMMatrix2DArray.d.ts","../../../node_modules/happy-dom/lib/dom/dom-matrix/TDOMMatrix3DArray.d.ts","../../../node_modules/happy-dom/lib/dom/dom-matrix/IDOMMatrixJSON.d.ts","../../../node_modules/happy-dom/lib/dom/dom-matrix/DOMMatrixReadOnly.d.ts","../../../node_modules/happy-dom/lib/dom/dom-matrix/DOMMatrix.d.ts","../../../node_modules/happy-dom/lib/svg/SVGStringList.d.ts","../../../node_modules/happy-dom/lib/svg/SVGMatrix.d.ts","../../../node_modules/happy-dom/lib/svg/SVGTransformTypeEnum.d.ts","../../../node_modules/happy-dom/lib/svg/SVGTransform.d.ts","../../../node_modules/happy-dom/lib/svg/SVGTransformList.d.ts","../../../node_modules/happy-dom/lib/svg/SVGAnimatedTransformList.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-graphics-element/SVGGraphicsElement.d.ts","../../../node_modules/happy-dom/lib/svg/SVGRect.d.ts","../../../node_modules/happy-dom/lib/svg/SVGPoint.d.ts","../../../node_modules/happy-dom/lib/svg/SVGLengthTypeEnum.d.ts","../../../node_modules/happy-dom/lib/svg/SVGLength.d.ts","../../../node_modules/happy-dom/lib/svg/SVGAngleTypeEnum.d.ts","../../../node_modules/happy-dom/lib/svg/SVGAngle.d.ts","../../../node_modules/happy-dom/lib/svg/SVGNumber.d.ts","../../../node_modules/happy-dom/lib/svg/SVGAnimatedRect.d.ts","../../../node_modules/happy-dom/lib/svg/SVGPreserveAspectRatioMeetOrSliceEnum.d.ts","../../../node_modules/happy-dom/lib/svg/SVGPreserveAspectRatioAlignEnum.d.ts","../../../node_modules/happy-dom/lib/svg/SVGPreserveAspectRatio.d.ts","../../../node_modules/happy-dom/lib/svg/SVGAnimatedPreserveAspectRatio.d.ts","../../../node_modules/happy-dom/lib/svg/SVGAnimatedLength.d.ts","../../../node_modules/happy-dom/lib/dom/DOMTokenList.d.ts","../../../node_modules/happy-dom/lib/nodes/html-hyperlink-element/IHTMLHyperlinkElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-anchor-element/HTMLAnchorElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-area-element/HTMLAreaElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-media-element/TimeRanges.d.ts","../../../node_modules/happy-dom/lib/nodes/html-media-element/RemotePlayback.d.ts","../../../node_modules/happy-dom/lib/nodes/html-media-element/IMediaTrackCapabilities.d.ts","../../../node_modules/happy-dom/lib/nodes/html-media-element/IMediaTrackSettings.d.ts","../../../node_modules/happy-dom/lib/nodes/html-media-element/MediaStreamTrack.d.ts","../../../node_modules/happy-dom/lib/event/events/IMediaQueryListEventInit.d.ts","../../../node_modules/happy-dom/lib/event/events/MediaStreamTrackEvent.d.ts","../../../node_modules/happy-dom/lib/nodes/html-media-element/MediaStream.d.ts","../../../node_modules/happy-dom/lib/nodes/html-media-element/TextTrackCue.d.ts","../../../node_modules/happy-dom/lib/nodes/html-media-element/TextTrackCueList.d.ts","../../../node_modules/happy-dom/lib/nodes/html-media-element/TextTrackKindEnum.d.ts","../../../node_modules/happy-dom/lib/nodes/html-media-element/TextTrack.d.ts","../../../node_modules/happy-dom/lib/nodes/html-media-element/TextTrackList.d.ts","../../../node_modules/happy-dom/lib/nodes/html-media-element/HTMLMediaElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-audio-element/HTMLAudioElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-base-element/HTMLBaseElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-body-element/HTMLBodyElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-br-element/HTMLBRElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-canvas-element/ImageBitmap.d.ts","../../../node_modules/happy-dom/lib/nodes/html-canvas-element/OffscreenCanvas.d.ts","../../../node_modules/happy-dom/lib/nodes/html-canvas-element/HTMLCanvasElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-d-list-element/HTMLDListElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-data-element/HTMLDataElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-details-element/HTMLDetailsElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-dialog-element/HTMLDialogElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-div-element/HTMLDivElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-embed-element/HTMLEmbedElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-head-element/HTMLHeadElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-heading-element/HTMLHeadingElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-hr-element/HTMLHRElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-html-element/HTMLHtmlElement.d.ts","../../../node_modules/happy-dom/lib/location/Location.d.ts","../../../node_modules/happy-dom/lib/window/CrossOriginBrowserWindow.d.ts","../../../node_modules/happy-dom/lib/nodes/html-iframe-element/HTMLIFrameElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-image-element/HTMLImageElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-legend-element/HTMLLegendElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-li-element/HTMLLIElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-link-element/HTMLLinkElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-map-element/HTMLMapElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-menu-element/HTMLMenuElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-meta-element/HTMLMetaElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-mod-element/HTMLModElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-o-list-element/HTMLOListElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-opt-group-element/HTMLOptGroupElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-paragraph-element/HTMLParagraphElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-param-element/HTMLParamElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-picture-element/HTMLPictureElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-pre-element/HTMLPreElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-quote-element/HTMLQuoteElement.d.ts","../../../node_modules/happy-dom/lib/fetch/types/TRequestReferrerPolicy.d.ts","../../../node_modules/happy-dom/lib/nodes/html-script-element/HTMLScriptElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-source-element/HTMLSourceElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-span-element/HTMLSpanElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-table-caption-element/HTMLTableCaptionElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-table-cell-element/HTMLTableCellElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-table-col-element/HTMLTableColElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-table-row-element/HTMLTableRowElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-table-section-element/HTMLTableSectionElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-table-element/HTMLTableElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-animation-element/SVGAnimationElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-animate-element/SVGAnimateElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-animate-motion-element/SVGAnimateMotionElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-animate-transform-element/SVGAnimateTransformElement.d.ts","../../../node_modules/happy-dom/lib/svg/SVGAnimatedNumber.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-geometry-element/SVGGeometryElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-circle-element/SVGCircleElement.d.ts","../../../node_modules/happy-dom/lib/svg/SVGAnimatedEnumeration.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-clip-path-element/SVGClipPathElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-defs-element/SVGDefsElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-desc-element/SVGDescElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-ellipse-element/SVGEllipseElement.d.ts","../../../node_modules/happy-dom/lib/svg/SVGAnimatedString.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-fe-blend-element/SVGFEBlendElement.d.ts","../../../node_modules/happy-dom/lib/svg/SVGNumberList.d.ts","../../../node_modules/happy-dom/lib/svg/SVGAnimatedNumberList.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-fe-color-matrix-element/SVGFEColorMatrixElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-fe-component-transfer-element/SVGFEComponentTransferElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-fe-composite-element/SVGFECompositeElement.d.ts","../../../node_modules/happy-dom/lib/svg/SVGAnimatedBoolean.d.ts","../../../node_modules/happy-dom/lib/svg/SVGAnimatedInteger.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-fe-convolve-matrix-element/SVGFEConvolveMatrixElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-fe-diffuse-lighting-element/SVGFEDiffuseLightingElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-fe-displacement-map-element/SVGFEDisplacementMapElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-fe-distant-light-element/SVGFEDistantLightElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-fe-drop-shadow-element/SVGFEDropShadowElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-fe-flood-element/SVGFEFloodElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-component-transfer-function-element/SVGComponentTransferFunctionElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-fe-func-a-element/SVGFEFuncAElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-fe-func-b-element/SVGFEFuncBElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-fe-func-g-element/SVGFEFuncGElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-fe-func-r-element/SVGFEFuncRElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-fe-gaussian-blur-element/SVGFEGaussianBlurElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-fe-image-element/SVGFEImageElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-fe-merge-element/SVGFEMergeElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-fe-merge-node-element/SVGFEMergeNodeElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-fe-morphology-element/SVGFEMorphologyElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-fe-offset-element/SVGFEOffsetElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-fe-point-light-element/SVGFEPointLightElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-fe-specular-lighting-element/SVGFESpecularLightingElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-fe-spot-light-element/SVGFESpotLightElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-fe-tile-element/SVGFETileElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-fe-turbulence-element/SVGFETurbulenceElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-filter-element/SVGFilterElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-foreign-object-element/SVGForeignObjectElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-g-element/SVGGElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-image-element/SVGImageElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-line-element/SVGLineElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-gradient-element/SVGGradientElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-linear-gradient-element/SVGLinearGradientElement.d.ts","../../../node_modules/happy-dom/lib/svg/SVGAnimatedAngle.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-marker-element/SVGMarkerElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-mask-element/SVGMaskElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-metadata-element/SVGMetadataElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-m-path-element/SVGMPathElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-path-element/SVGPathElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-pattern-element/SVGPatternElement.d.ts","../../../node_modules/happy-dom/lib/svg/SVGPointList.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-polygon-element/SVGPolygonElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-polyline-element/SVGPolylineElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-radial-gradient-element/SVGRadialGradientElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-rect-element/SVGRectElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-script-element/SVGScriptElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-set-element/SVGSetElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-stop-element/SVGStopElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-switch-element/SVGSwitchElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-symbol-element/SVGSymbolElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-text-content-element/SVGTextContentElement.d.ts","../../../node_modules/happy-dom/lib/svg/SVGLengthList.d.ts","../../../node_modules/happy-dom/lib/svg/SVGAnimatedLengthList.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-text-positioning-element/SVGTextPositioningElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-text-element/SVGTextElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-text-path-element/SVGTextPathElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-title-element/SVGTitleElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-t-span-element/SVGTSpanElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-use-element/SVGUseElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-view-element/SVGViewElement.d.ts","../../../node_modules/happy-dom/lib/config/ISVGElementTagNameMap.d.ts","../../../node_modules/happy-dom/lib/nodes/document-fragment/DocumentFragment.d.ts","../../../node_modules/happy-dom/lib/nodes/shadow-root/ShadowRoot.d.ts","../../../node_modules/happy-dom/lib/nodes/html-template-element/HTMLTemplateElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-time-element/HTMLTimeElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-title-element/HTMLTitleElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-track-element/HTMLTrackElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-u-list-element/HTMLUListElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-video-element/HTMLVideoElement.d.ts","../../../node_modules/happy-dom/lib/config/IHTMLElementTagNameMap.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-svg-element/SVGSVGElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-element/SVGElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-style-element/SVGStyleElement.d.ts","../../../node_modules/happy-dom/lib/nodes/node/Node.d.ts","../../../node_modules/happy-dom/lib/dom/DOMRectList.d.ts","../../../node_modules/happy-dom/lib/nodes/element/NamedNodeMap.d.ts","../../../node_modules/happy-dom/lib/nodes/parent-node/IParentNode.d.ts","../../../node_modules/happy-dom/lib/window/IScrollToOptions.d.ts","../../../node_modules/happy-dom/lib/nodes/element/Element.d.ts","../../../node_modules/happy-dom/lib/tree-walker/TNodeFilter.d.ts","../../../node_modules/happy-dom/lib/tree-walker/NodeIterator.d.ts","../../../node_modules/happy-dom/lib/tree-walker/TreeWalker.d.ts","../../../node_modules/happy-dom/lib/nodes/document-type/DocumentType.d.ts","../../../node_modules/happy-dom/lib/dom-implementation/DOMImplementation.d.ts","../../../node_modules/happy-dom/lib/nodes/comment/Comment.d.ts","../../../node_modules/happy-dom/lib/nodes/document/DocumentReadyStateEnum.d.ts","../../../node_modules/happy-dom/lib/range/RangeHowEnum.d.ts","../../../node_modules/happy-dom/lib/range/IRangeBoundaryPoint.d.ts","../../../node_modules/happy-dom/lib/range/Range.d.ts","../../../node_modules/happy-dom/lib/selection/Selection.d.ts","../../../node_modules/happy-dom/lib/nodes/processing-instruction/ProcessingInstruction.d.ts","../../../node_modules/happy-dom/lib/nodes/document/VisibilityStateEnum.d.ts","../../../node_modules/happy-dom/lib/fetch/Headers.d.ts","../../../node_modules/happy-dom/lib/fetch/types/THeadersInit.d.ts","../../../node_modules/happy-dom/lib/fetch/types/IResponseInit.d.ts","../../../node_modules/happy-dom/lib/form-data/FormData.d.ts","../../../node_modules/happy-dom/lib/fetch/types/TResponseBody.d.ts","../../../node_modules/happy-dom/lib/fetch/cache/response/CachedResponseStateEnum.d.ts","../../../node_modules/happy-dom/lib/fetch/cache/response/ICachedResponse.d.ts","../../../node_modules/happy-dom/lib/fetch/Response.d.ts","../../../node_modules/happy-dom/lib/fetch/preload/PreloadEntry.d.ts","../../../node_modules/happy-dom/lib/nodes/document/Document.d.ts","../../../node_modules/happy-dom/lib/browser/types/IBrowserPageViewport.d.ts","../../../node_modules/happy-dom/lib/console/IVirtualConsoleLogGroup.d.ts","../../../node_modules/happy-dom/lib/console/enums/VirtualConsoleLogLevelEnum.d.ts","../../../node_modules/happy-dom/lib/console/enums/VirtualConsoleLogTypeEnum.d.ts","../../../node_modules/happy-dom/lib/console/IVirtualConsoleLogEntry.d.ts","../../../node_modules/happy-dom/lib/console/IVirtualConsolePrinter.d.ts","../../../node_modules/happy-dom/lib/console/VirtualConsolePrinter.d.ts","../../../node_modules/happy-dom/lib/url/URL.d.ts","../../../node_modules/happy-dom/lib/cookie/enums/CookieSameSiteEnum.d.ts","../../../node_modules/happy-dom/lib/cookie/ICookie.d.ts","../../../node_modules/happy-dom/lib/cookie/IOptionalCookie.d.ts","../../../node_modules/happy-dom/lib/cookie/ICookieContainer.d.ts","../../../node_modules/happy-dom/lib/fetch/cache/response/ICacheableRequest.d.ts","../../../node_modules/happy-dom/lib/fetch/cache/response/ICacheableResponse.d.ts","../../../node_modules/happy-dom/lib/fetch/cache/response/IResponseCacheFileSystem.d.ts","../../../node_modules/happy-dom/lib/fetch/cache/response/IResponseCache.d.ts","../../../node_modules/happy-dom/lib/browser/utilities/BrowserExceptionObserver.d.ts","../../../node_modules/happy-dom/lib/browser/types/IBrowser.d.ts","../../../node_modules/happy-dom/lib/fetch/cache/preflight/ICachedPreflightResponse.d.ts","../../../node_modules/happy-dom/lib/fetch/cache/preflight/ICacheablePreflightRequest.d.ts","../../../node_modules/happy-dom/lib/fetch/cache/preflight/ICacheablePreflightResponse.d.ts","../../../node_modules/happy-dom/lib/fetch/cache/preflight/IPreflightResponseCache.d.ts","../../../node_modules/happy-dom/lib/module/types/IECMAScriptModuleImport.d.ts","../../../node_modules/happy-dom/lib/module/types/IECMAScriptModuleCachedResult.d.ts","../../../node_modules/happy-dom/lib/browser/types/IBrowserContext.d.ts","../../../node_modules/happy-dom/lib/browser/types/IReloadOptions.d.ts","../../../node_modules/happy-dom/lib/browser/types/IGoToOptions.d.ts","../../../node_modules/happy-dom/lib/browser/types/IOptionalBrowserPageViewport.d.ts","../../../node_modules/happy-dom/lib/browser/types/IBrowserPage.d.ts","../../../node_modules/happy-dom/lib/history/HistoryScrollRestorationEnum.d.ts","../../../node_modules/happy-dom/lib/history/IHistoryItem.d.ts","../../../node_modules/happy-dom/lib/history/HistoryItemList.d.ts","../../../node_modules/happy-dom/lib/browser/types/IBrowserFrame.d.ts","../../../node_modules/happy-dom/lib/clipboard/ClipboardItem.d.ts","../../../node_modules/happy-dom/lib/clipboard/Clipboard.d.ts","../../../node_modules/happy-dom/lib/css/CSSUnitValue.d.ts","../../../node_modules/happy-dom/lib/css/CSS.d.ts","../../../node_modules/happy-dom/lib/css/rules/CSSContainerRule.d.ts","../../../node_modules/happy-dom/lib/css/rules/CSSFontFaceRule.d.ts","../../../node_modules/happy-dom/lib/css/rules/CSSKeyframeRule.d.ts","../../../node_modules/happy-dom/lib/css/rules/CSSKeyframesRule.d.ts","../../../node_modules/happy-dom/lib/css/style-property-map/CSSKeywordValue.d.ts","../../../node_modules/happy-dom/lib/css/style-property-map/CSSStyleValue.d.ts","../../../node_modules/happy-dom/lib/css/style-property-map/StylePropertyMapReadOnly.d.ts","../../../node_modules/happy-dom/lib/css/style-property-map/StylePropertyMap.d.ts","../../../node_modules/happy-dom/lib/css/rules/CSSStyleRule.d.ts","../../../node_modules/happy-dom/lib/css/rules/CSSSupportsRule.d.ts","../../../node_modules/happy-dom/lib/custom-element/ICustomElementDefinition.d.ts","../../../node_modules/happy-dom/lib/custom-element/CustomElementRegistry.d.ts","../../../node_modules/happy-dom/lib/dom-parser/DOMParser.d.ts","../../../node_modules/happy-dom/lib/event/DataTransferItem.d.ts","../../../node_modules/happy-dom/lib/event/DataTransferItemList.d.ts","../../../node_modules/happy-dom/lib/event/DataTransfer.d.ts","../../../node_modules/happy-dom/lib/event/MessagePort.d.ts","../../../node_modules/happy-dom/lib/event/ITouchInit.d.ts","../../../node_modules/happy-dom/lib/event/Touch.d.ts","../../../node_modules/happy-dom/lib/event/IUIEventInit.d.ts","../../../node_modules/happy-dom/lib/event/UIEvent.d.ts","../../../node_modules/happy-dom/lib/event/events/IAnimationEventInit.d.ts","../../../node_modules/happy-dom/lib/event/events/AnimationEvent.d.ts","../../../node_modules/happy-dom/lib/event/events/IClipboardEventInit.d.ts","../../../node_modules/happy-dom/lib/event/events/ClipboardEvent.d.ts","../../../node_modules/happy-dom/lib/event/events/ICustomEventInit.d.ts","../../../node_modules/happy-dom/lib/event/events/CustomEvent.d.ts","../../../node_modules/happy-dom/lib/event/events/IErrorEventInit.d.ts","../../../node_modules/happy-dom/lib/event/events/ErrorEvent.d.ts","../../../node_modules/happy-dom/lib/event/events/IFocusEventInit.d.ts","../../../node_modules/happy-dom/lib/event/events/FocusEvent.d.ts","../../../node_modules/happy-dom/lib/event/events/IHashChangeEventInit.d.ts","../../../node_modules/happy-dom/lib/event/events/HashChangeEvent.d.ts","../../../node_modules/happy-dom/lib/event/events/IInputEventInit.d.ts","../../../node_modules/happy-dom/lib/event/events/InputEvent.d.ts","../../../node_modules/happy-dom/lib/event/events/IKeyboardEventInit.d.ts","../../../node_modules/happy-dom/lib/event/events/KeyboardEvent.d.ts","../../../node_modules/happy-dom/lib/event/events/IMediaQueryListInit.d.ts","../../../node_modules/happy-dom/lib/event/events/MediaQueryListEvent.d.ts","../../../node_modules/happy-dom/lib/event/events/IMessageEventInit.d.ts","../../../node_modules/happy-dom/lib/event/events/MessageEvent.d.ts","../../../node_modules/happy-dom/lib/event/events/IMouseEventInit.d.ts","../../../node_modules/happy-dom/lib/event/events/MouseEvent.d.ts","../../../node_modules/happy-dom/lib/event/events/IPointerEventInit.d.ts","../../../node_modules/happy-dom/lib/event/events/PointerEvent.d.ts","../../../node_modules/happy-dom/lib/event/events/IProgressEventInit.d.ts","../../../node_modules/happy-dom/lib/event/events/ProgressEvent.d.ts","../../../node_modules/happy-dom/lib/storage/Storage.d.ts","../../../node_modules/happy-dom/lib/event/events/IStorageEventInit.d.ts","../../../node_modules/happy-dom/lib/event/events/StorageEvent.d.ts","../../../node_modules/happy-dom/lib/event/events/ISubmitEventInit.d.ts","../../../node_modules/happy-dom/lib/event/events/SubmitEvent.d.ts","../../../node_modules/happy-dom/lib/event/events/ITouchEventInit.d.ts","../../../node_modules/happy-dom/lib/event/events/TouchEvent.d.ts","../../../node_modules/happy-dom/lib/event/events/IWheelEventInit.d.ts","../../../node_modules/happy-dom/lib/event/events/WheelEvent.d.ts","../../../node_modules/happy-dom/lib/exception/DOMException.d.ts","../../../node_modules/happy-dom/lib/fetch/AbortController.d.ts","../../../node_modules/happy-dom/lib/fetch/types/TRequestInfo.d.ts","../../../node_modules/happy-dom/lib/file/FileReader.d.ts","../../../node_modules/happy-dom/lib/history/History.d.ts","../../../node_modules/happy-dom/lib/intersection-observer/IntersectionObserverEntry.d.ts","../../../node_modules/happy-dom/lib/intersection-observer/IIntersectionObserverInit.d.ts","../../../node_modules/happy-dom/lib/intersection-observer/IntersectionObserver.d.ts","../../../node_modules/happy-dom/lib/match-media/MediaQueryList.d.ts","../../../node_modules/happy-dom/lib/mutation-observer/MutationObserver.d.ts","../../../node_modules/happy-dom/lib/navigator/Plugin.d.ts","../../../node_modules/happy-dom/lib/navigator/MimeType.d.ts","../../../node_modules/happy-dom/lib/navigator/MimeTypeArray.d.ts","../../../node_modules/happy-dom/lib/navigator/PluginArray.d.ts","../../../node_modules/happy-dom/lib/permissions/PermissionStatus.d.ts","../../../node_modules/happy-dom/lib/permissions/Permissions.d.ts","../../../node_modules/happy-dom/lib/navigator/Navigator.d.ts","../../../node_modules/happy-dom/lib/nodes/document/DocumentReadyStateManager.d.ts","../../../node_modules/happy-dom/lib/nodes/html-audio-element/Audio.d.ts","../../../node_modules/happy-dom/lib/nodes/html-document/HTMLDocument.d.ts","../../../node_modules/happy-dom/lib/nodes/html-image-element/Image.d.ts","../../../node_modules/happy-dom/lib/nodes/html-media-element/VTTRegion.d.ts","../../../node_modules/happy-dom/lib/nodes/html-media-element/VTTCue.d.ts","../../../node_modules/happy-dom/lib/nodes/html-unknown-element/HTMLUnknownElement.d.ts","../../../node_modules/happy-dom/lib/nodes/xml-document/XMLDocument.d.ts","../../../node_modules/happy-dom/lib/resize-observer/ResizeObserver.d.ts","../../../node_modules/happy-dom/lib/screen/Screen.d.ts","../../../node_modules/happy-dom/lib/screen/ScreenDetailed.d.ts","../../../node_modules/happy-dom/lib/screen/ScreenDetails.d.ts","../../../node_modules/happy-dom/lib/xml-http-request/XMLHttpRequestEventTarget.d.ts","../../../node_modules/happy-dom/lib/xml-http-request/XMLHttpRequestReadyStateEnum.d.ts","../../../node_modules/happy-dom/lib/xml-http-request/XMLHttpRequestUpload.d.ts","../../../node_modules/happy-dom/lib/xml-http-request/XMLHttpResponseTypeEnum.d.ts","../../../node_modules/happy-dom/lib/fetch/types/TRequestBody.d.ts","../../../node_modules/happy-dom/lib/xml-http-request/XMLHttpRequest.d.ts","../../../node_modules/happy-dom/lib/xml-serializer/XMLSerializer.d.ts","../../../node_modules/happy-dom/lib/window/INodeJSGlobal.d.ts","../../../node_modules/happy-dom/lib/nodes/html-canvas-element/CanvasCaptureMediaStreamTrack.d.ts","../../../node_modules/happy-dom/lib/svg/SVGUnitTypes.d.ts","../../../node_modules/happy-dom/lib/custom-element/CustomElementReactionStack.d.ts","../../../node_modules/happy-dom/lib/module/types/IModule.d.ts","../../../node_modules/happy-dom/lib/module/types/IModuleImportMapRule.d.ts","../../../node_modules/happy-dom/lib/module/types/IModuleImportMapScope.d.ts","../../../node_modules/happy-dom/lib/module/types/IModuleImportMap.d.ts","../../../node_modules/happy-dom/lib/css/rules/CSSScopeRule.d.ts","../../../node_modules/happy-dom/lib/event/events/IPopStateEventInit.d.ts","../../../node_modules/happy-dom/lib/event/events/PopStateEvent.d.ts","../../../node_modules/happy-dom/lib/event/events/ICloseEventInit.d.ts","../../../node_modules/happy-dom/lib/event/events/CloseEvent.d.ts","../../../node_modules/@types/ws/index.d.mts","../../../node_modules/happy-dom/lib/web-socket/WebSocket.d.ts","../../../node_modules/happy-dom/lib/window/BrowserWindow.d.ts","../../../node_modules/happy-dom/lib/event/EventTarget.d.ts","../../../node_modules/happy-dom/lib/fetch/AbortSignal.d.ts","../../../node_modules/happy-dom/lib/fetch/types/TRequestMode.d.ts","../../../node_modules/happy-dom/lib/fetch/types/TRequestCredentials.d.ts","../../../node_modules/happy-dom/lib/fetch/types/TRequestRedirect.d.ts","../../../node_modules/happy-dom/lib/fetch/types/IRequestInit.d.ts","../../../node_modules/happy-dom/lib/fetch/Request.d.ts","../../../node_modules/happy-dom/lib/fetch/types/ISyncResponse.d.ts","../../../node_modules/happy-dom/lib/fetch/types/IFetchInterceptor.d.ts","../../../node_modules/happy-dom/lib/fetch/types/IVirtualServer.d.ts","../../../node_modules/happy-dom/lib/fetch/types/IFetchRequestHeaders.d.ts","../../../node_modules/happy-dom/lib/window/IOptionalTimerLoopsLimit.d.ts","../../../node_modules/happy-dom/lib/module/types/IResolveNodeModules.d.ts","../../../node_modules/happy-dom/lib/browser/types/IBrowserSettings.d.ts","../../../node_modules/happy-dom/lib/browser/BrowserFrame.d.ts","../../../node_modules/happy-dom/lib/browser/BrowserPage.d.ts","../../../node_modules/happy-dom/lib/browser/BrowserContext.d.ts","../../../node_modules/happy-dom/lib/browser/types/IOptionalBrowserSettings.d.ts","../../../node_modules/happy-dom/lib/browser/Browser.d.ts","../../../node_modules/happy-dom/lib/browser/detached-browser/DetachedBrowserFrame.d.ts","../../../node_modules/happy-dom/lib/browser/detached-browser/DetachedBrowserPage.d.ts","../../../node_modules/happy-dom/lib/browser/detached-browser/DetachedBrowserContext.d.ts","../../../node_modules/happy-dom/lib/browser/detached-browser/DetachedBrowser.d.ts","../../../node_modules/happy-dom/lib/console/VirtualConsole.d.ts","../../../node_modules/happy-dom/lib/html-serializer/HTMLSerializer.d.ts","../../../node_modules/happy-dom/lib/tree-walker/NodeFilter.d.ts","../../../node_modules/happy-dom/lib/window/DetachedWindowAPI.d.ts","../../../node_modules/happy-dom/lib/window/Window.d.ts","../../../node_modules/happy-dom/lib/window/GlobalWindow.d.ts","../../../node_modules/happy-dom/lib/xml-parser/XMLParser.d.ts","../../../node_modules/happy-dom/lib/index.d.ts","../../../node_modules/vitest/optional-types.d.ts","../../../node_modules/@vitest/runner/dist/utils.d.ts","../../../node_modules/tinybench/dist/index.d.ts","../../../node_modules/vitest/dist/chunks/benchmark.d.DAaHLpsq.d.ts","../../../node_modules/@vitest/mocker/dist/types.d-BjI5eAwu.d.ts","../../../node_modules/@vitest/mocker/dist/index.d-B41z0AuW.d.ts","../../../node_modules/@vitest/mocker/dist/index.d.ts","../../../node_modules/@vitest/utils/dist/source-map.d.ts","../../../node_modules/vitest/dist/chunks/coverage.d.BZtK59WP.d.ts","../../../node_modules/@vitest/utils/dist/serialize.d.ts","../../../node_modules/@vitest/utils/dist/error.d.ts","../../../node_modules/vitest/dist/browser.d.ts","../../../node_modules/vitest/browser/context.d.ts","../../../node_modules/@vitest/snapshot/dist/manager.d.ts","../../../node_modules/vitest/dist/chunks/reporters.d.DtoKVV2s.d.ts","../../../node_modules/vitest/dist/chunks/plugin.d.DwFIiJ7i.d.ts","../../../node_modules/vitest/dist/config.d.ts","../../../node_modules/vitest/config.d.ts","../../../node_modules/@babel/types/lib/index.d.ts","../../../node_modules/@types/babel__generator/index.d.ts","../../../node_modules/@types/babel__core/node_modules/@babel/parser/typings/babel-parser.d.ts","../../../node_modules/@types/babel__template/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/zod/v4/core/json-schema.d.cts","../../../node_modules/zod/v4/core/standard-schema.d.cts","../../../node_modules/zod/v4/core/registries.d.cts","../../../node_modules/zod/v4/core/to-json-schema.d.cts","../../../node_modules/zod/v4/core/util.d.cts","../../../node_modules/zod/v4/core/versions.d.cts","../../../node_modules/zod/v4/core/schemas.d.cts","../../../node_modules/zod/v4/core/checks.d.cts","../../../node_modules/zod/v4/core/errors.d.cts","../../../node_modules/zod/v4/core/core.d.cts","../../../node_modules/zod/v4/core/parse.d.cts","../../../node_modules/zod/v4/core/regexes.d.cts","../../../node_modules/zod/v4/locales/ar.d.cts","../../../node_modules/zod/v4/locales/az.d.cts","../../../node_modules/zod/v4/locales/be.d.cts","../../../node_modules/zod/v4/locales/bg.d.cts","../../../node_modules/zod/v4/locales/ca.d.cts","../../../node_modules/zod/v4/locales/cs.d.cts","../../../node_modules/zod/v4/locales/da.d.cts","../../../node_modules/zod/v4/locales/de.d.cts","../../../node_modules/zod/v4/locales/en.d.cts","../../../node_modules/zod/v4/locales/eo.d.cts","../../../node_modules/zod/v4/locales/es.d.cts","../../../node_modules/zod/v4/locales/fa.d.cts","../../../node_modules/zod/v4/locales/fi.d.cts","../../../node_modules/zod/v4/locales/fr.d.cts","../../../node_modules/zod/v4/locales/fr-CA.d.cts","../../../node_modules/zod/v4/locales/he.d.cts","../../../node_modules/zod/v4/locales/hu.d.cts","../../../node_modules/zod/v4/locales/hy.d.cts","../../../node_modules/zod/v4/locales/id.d.cts","../../../node_modules/zod/v4/locales/is.d.cts","../../../node_modules/zod/v4/locales/it.d.cts","../../../node_modules/zod/v4/locales/ja.d.cts","../../../node_modules/zod/v4/locales/ka.d.cts","../../../node_modules/zod/v4/locales/kh.d.cts","../../../node_modules/zod/v4/locales/km.d.cts","../../../node_modules/zod/v4/locales/ko.d.cts","../../../node_modules/zod/v4/locales/lt.d.cts","../../../node_modules/zod/v4/locales/mk.d.cts","../../../node_modules/zod/v4/locales/ms.d.cts","../../../node_modules/zod/v4/locales/nl.d.cts","../../../node_modules/zod/v4/locales/no.d.cts","../../../node_modules/zod/v4/locales/ota.d.cts","../../../node_modules/zod/v4/locales/ps.d.cts","../../../node_modules/zod/v4/locales/pl.d.cts","../../../node_modules/zod/v4/locales/pt.d.cts","../../../node_modules/zod/v4/locales/ru.d.cts","../../../node_modules/zod/v4/locales/sl.d.cts","../../../node_modules/zod/v4/locales/sv.d.cts","../../../node_modules/zod/v4/locales/ta.d.cts","../../../node_modules/zod/v4/locales/th.d.cts","../../../node_modules/zod/v4/locales/tr.d.cts","../../../node_modules/zod/v4/locales/ua.d.cts","../../../node_modules/zod/v4/locales/uk.d.cts","../../../node_modules/zod/v4/locales/ur.d.cts","../../../node_modules/zod/v4/locales/uz.d.cts","../../../node_modules/zod/v4/locales/vi.d.cts","../../../node_modules/zod/v4/locales/zh-CN.d.cts","../../../node_modules/zod/v4/locales/zh-TW.d.cts","../../../node_modules/zod/v4/locales/yo.d.cts","../../../node_modules/zod/v4/locales/index.d.cts","../../../node_modules/zod/v4/core/doc.d.cts","../../../node_modules/zod/v4/core/api.d.cts","../../../node_modules/zod/v4/core/json-schema-processors.d.cts","../../../node_modules/zod/v4/core/json-schema-generator.d.cts","../../../node_modules/zod/v4/core/index.d.cts","../../../node_modules/zod/v4/classic/errors.d.cts","../../../node_modules/zod/v4/classic/parse.d.cts","../../../node_modules/zod/v4/classic/schemas.d.cts","../../../node_modules/zod/v4/classic/checks.d.cts","../../../node_modules/zod/v4/classic/compat.d.cts","../../../node_modules/zod/v4/classic/from-json-schema.d.cts","../../../node_modules/zod/v4/classic/iso.d.cts","../../../node_modules/zod/v4/classic/coerce.d.cts","../../../node_modules/zod/v4/classic/external.d.cts","../../../node_modules/zod/index.d.cts","../../../node_modules/babel-plugin-react-compiler/dist/index.d.ts","../../../node_modules/@vitejs/plugin-react/types/optionalTypes.d.ts","../../../node_modules/@vitejs/plugin-react/dist/index.d.ts","../../../tools/vitest/index.ts","../vitest.config.ts","../../../node_modules/@t3-oss/env-core/dist/standard.d.ts","../../../node_modules/@t3-oss/env-core/dist/index.d.ts","../../../node_modules/@t3-oss/env-nextjs/dist/index.d.ts","../../../node_modules/zod/v4/classic/index.d.cts","../../../node_modules/zod/v4/index.d.cts","../src/env.ts","../src/instrumentation-client.ts","../src/sentry.server.config.ts","../src/instrumentation.ts","../../../node_modules/@convex-dev/auth/dist/nextjs/server/routeMatcher.d.ts","../../../node_modules/@convex-dev/auth/dist/nextjs/server/index.d.ts","../src/proxy.ts","../../../node_modules/next/dist/compiled/@next/font/dist/types.d.ts","../../../node_modules/next/dist/compiled/@next/font/dist/google/index.d.ts","../../../node_modules/next/font/google/index.d.ts","../src/components/layout/footer/index.tsx","../../../node_modules/convex/dist/esm-types/values/value.d.ts","../../../node_modules/convex/dist/esm-types/type_utils.d.ts","../../../node_modules/convex/dist/esm-types/values/validators.d.ts","../../../node_modules/convex/dist/esm-types/values/validator.d.ts","../../../node_modules/convex/dist/esm-types/values/base64.d.ts","../../../node_modules/convex/dist/esm-types/values/errors.d.ts","../../../node_modules/convex/dist/esm-types/values/compare.d.ts","../../../node_modules/convex/dist/esm-types/values/size.d.ts","../../../node_modules/convex/dist/esm-types/values/index.d.ts","../../../node_modules/convex/dist/esm-types/browser/sync/function_result.d.ts","../../../node_modules/convex/dist/esm-types/browser/logging.d.ts","../../../node_modules/convex/dist/esm-types/server/authentication.d.ts","../../../node_modules/convex/dist/esm-types/server/data_model.d.ts","../../../node_modules/convex/dist/esm-types/server/filter_builder.d.ts","../../../node_modules/convex/dist/esm-types/server/index_range_builder.d.ts","../../../node_modules/convex/dist/esm-types/server/pagination.d.ts","../../../node_modules/convex/dist/esm-types/server/search_filter_builder.d.ts","../../../node_modules/convex/dist/esm-types/server/query.d.ts","../../../node_modules/convex/dist/esm-types/server/system_fields.d.ts","../../../node_modules/convex/dist/esm-types/server/schema.d.ts","../../../node_modules/convex/dist/esm-types/server/database.d.ts","../../../node_modules/convex/dist/esm-types/server/impl/registration_impl.d.ts","../../../node_modules/convex/dist/esm-types/server/storage.d.ts","../../../node_modules/convex/dist/esm-types/server/scheduler.d.ts","../../../node_modules/convex/dist/esm-types/server/cron.d.ts","../../../node_modules/convex/dist/esm-types/server/router.d.ts","../../../node_modules/convex/dist/esm-types/server/components/paths.d.ts","../../../node_modules/convex/dist/esm-types/server/components/index.d.ts","../../../node_modules/convex/dist/esm-types/server/vector_search.d.ts","../../../node_modules/convex/dist/esm-types/server/index.d.ts","../../../node_modules/convex/dist/esm-types/server/registration.d.ts","../../../node_modules/convex/dist/esm-types/server/api.d.ts","../../../node_modules/convex/dist/esm-types/browser/sync/optimistic_updates.d.ts","../../../node_modules/convex/dist/esm-types/vendor/long.d.ts","../../../node_modules/convex/dist/esm-types/browser/sync/protocol.d.ts","../../../node_modules/convex/dist/esm-types/browser/sync/udf_path_utils.d.ts","../../../node_modules/convex/dist/esm-types/browser/sync/local_state.d.ts","../../../node_modules/convex/dist/esm-types/browser/sync/authentication_manager.d.ts","../../../node_modules/convex/dist/esm-types/browser/sync/client.d.ts","../../../node_modules/convex/dist/esm-types/browser/sync/pagination.d.ts","../../../node_modules/convex/dist/esm-types/browser/simple_client.d.ts","../../../node_modules/convex/dist/esm-types/browser/http_client.d.ts","../../../node_modules/convex/dist/esm-types/browser/index.d.ts","../../../node_modules/convex/dist/esm-types/react/use_paginated_query.d.ts","../../../node_modules/convex/dist/esm-types/react/use_paginated_query2.d.ts","../../../node_modules/convex/dist/esm-types/browser/query_options.d.ts","../../../node_modules/convex/dist/esm-types/react/client.d.ts","../../../node_modules/convex/dist/esm-types/browser/sync/paginated_query_client.d.ts","../../../node_modules/convex/dist/esm-types/react/queries_observer.d.ts","../../../node_modules/convex/dist/esm-types/react/use_queries.d.ts","../../../node_modules/convex/dist/esm-types/react/auth_helpers.d.ts","../../../node_modules/convex/dist/esm-types/react/ConvexAuthState.d.ts","../../../node_modules/convex/dist/esm-types/react/hydration.d.ts","../../../node_modules/convex/dist/esm-types/react/index.d.ts","../../../node_modules/lucide-react/dist/lucide-react.d.ts","../../../node_modules/@auth/core/lib/vendored/cookie.d.ts","../../../node_modules/oauth4webapi/build/index.d.ts","../../../node_modules/@auth/core/lib/utils/cookie.d.ts","../../../node_modules/@auth/core/lib/symbols.d.ts","../../../node_modules/@auth/core/lib/index.d.ts","../../../node_modules/@auth/core/lib/utils/env.d.ts","../../../node_modules/@auth/core/adapters.d.ts","../../../node_modules/@auth/core/jwt.d.ts","../../../node_modules/@auth/core/lib/utils/actions.d.ts","../../../node_modules/@auth/core/index.d.ts","../../../node_modules/@auth/core/lib/utils/logger.d.ts","../../../node_modules/@auth/core/providers/webauthn.d.ts","../../../node_modules/@auth/core/lib/utils/webauthn-utils.d.ts","../../../node_modules/@auth/core/types.d.ts","../../../node_modules/preact/src/jsx.d.ts","../../../node_modules/preact/src/index.d.ts","../../../node_modules/@auth/core/providers/credentials.d.ts","../../../node_modules/@auth/core/providers/nodemailer.d.ts","../../../node_modules/@auth/core/providers/email.d.ts","../../../node_modules/@auth/core/providers/oauth-types.d.ts","../../../node_modules/@auth/core/providers/oauth.d.ts","../../../node_modules/@auth/core/providers/index.d.ts","../../../node_modules/@auth/core/providers/authentik.d.ts","../../../node_modules/@convex-dev/auth/dist/server/convex_types.d.ts","../../../node_modules/@convex-dev/auth/dist/providers/ConvexCredentials.d.ts","../../../node_modules/@convex-dev/auth/dist/server/types.d.ts","../../../node_modules/@convex-dev/auth/dist/server/implementation/types.d.ts","../../../node_modules/@convex-dev/auth/dist/server/implementation/sessions.d.ts","../../../node_modules/@convex-dev/auth/dist/server/implementation/index.d.ts","../../../node_modules/@convex-dev/auth/dist/server/index.d.ts","../../../packages/backend/convex/schema.ts","../../../packages/backend/convex/_generated/dataModel.d.ts","../../../packages/backend/convex/_generated/server.d.ts","../../../node_modules/@convex-dev/auth/dist/providers/Password.d.ts","../../../packages/backend/convex/custom/auth/providers/password.ts","../../../node_modules/@oslojs/crypto/dist/random/index.d.ts","../../../node_modules/oslo/dist/index.d.ts","../../../node_modules/oslo/dist/crypto/sha.d.ts","../../../node_modules/oslo/dist/crypto/ecdsa.d.ts","../../../node_modules/oslo/dist/crypto/hmac.d.ts","../../../node_modules/oslo/dist/crypto/rsa.d.ts","../../../node_modules/oslo/dist/crypto/random.d.ts","../../../node_modules/oslo/dist/crypto/buffer.d.ts","../../../node_modules/oslo/dist/crypto/index.d.ts","../../../node_modules/usesend-js/dist/index.d.ts","../../../packages/backend/convex/custom/auth/providers/usesend.ts","../../../packages/backend/convex/custom/auth/index.ts","../../../packages/backend/convex/auth.ts","../../../packages/backend/convex/crons.ts","../../../packages/backend/convex/files.ts","../../../packages/backend/convex/http.ts","../../../packages/backend/convex/_generated/api.d.ts","../../../node_modules/clsx/clsx.d.mts","../../../node_modules/class-variance-authority/dist/types.d.ts","../../../node_modules/class-variance-authority/dist/index.d.ts","../../../node_modules/tailwind-merge/dist/types.d.ts","../../../node_modules/@radix-ui/react-accessible-icon/dist/index.d.mts","../../../node_modules/@radix-ui/react-accordion/node_modules/@radix-ui/react-context/dist/index.d.mts","../../../node_modules/@radix-ui/react-accordion/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-collapsible/node_modules/@radix-ui/react-context/dist/index.d.mts","../../../node_modules/@radix-ui/react-collapsible/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-collapsible/dist/index.d.mts","../../../node_modules/@radix-ui/react-accordion/dist/index.d.mts","../../../node_modules/@radix-ui/react-alert-dialog/node_modules/@radix-ui/react-context/dist/index.d.mts","../../../node_modules/@radix-ui/react-dialog/node_modules/@radix-ui/react-context/dist/index.d.mts","../../../node_modules/@radix-ui/react-dismissable-layer/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-dismissable-layer/dist/index.d.mts","../../../node_modules/@radix-ui/react-focus-scope/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-focus-scope/dist/index.d.mts","../../../node_modules/@radix-ui/react-portal/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-portal/dist/index.d.mts","../../../node_modules/@radix-ui/react-dialog/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-dialog/dist/index.d.mts","../../../node_modules/@radix-ui/react-alert-dialog/dist/index.d.mts","../../../node_modules/@radix-ui/react-aspect-ratio/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-aspect-ratio/dist/index.d.mts","../../../node_modules/radix-ui/node_modules/@radix-ui/react-context/dist/index.d.mts","../../../node_modules/radix-ui/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/radix-ui/node_modules/@radix-ui/react-avatar/dist/index.d.mts","../../../node_modules/@radix-ui/react-checkbox/node_modules/@radix-ui/react-context/dist/index.d.mts","../../../node_modules/@radix-ui/react-checkbox/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-checkbox/dist/index.d.mts","../../../node_modules/@radix-ui/react-context-menu/node_modules/@radix-ui/react-context/dist/index.d.mts","../../../node_modules/@radix-ui/react-context-menu/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-menu/node_modules/@radix-ui/react-context/dist/index.d.mts","../../../node_modules/@radix-ui/react-popper/node_modules/@radix-ui/react-context/dist/index.d.mts","../../../node_modules/@radix-ui/react-arrow/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-arrow/dist/index.d.mts","../../../node_modules/@radix-ui/react-popper/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/rect/dist/index.d.mts","../../../node_modules/@radix-ui/react-popper/dist/index.d.mts","../../../node_modules/@radix-ui/react-menu/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-roving-focus/node_modules/@radix-ui/react-context/dist/index.d.mts","../../../node_modules/@radix-ui/react-roving-focus/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-roving-focus/dist/index.d.mts","../../../node_modules/@radix-ui/react-menu/dist/index.d.mts","../../../node_modules/@radix-ui/react-context-menu/dist/index.d.mts","../../../node_modules/@radix-ui/react-direction/dist/index.d.mts","../../../node_modules/@radix-ui/react-dropdown-menu/node_modules/@radix-ui/react-context/dist/index.d.mts","../../../node_modules/@radix-ui/react-dropdown-menu/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-dropdown-menu/dist/index.d.mts","../../../node_modules/@radix-ui/react-form/node_modules/@radix-ui/react-context/dist/index.d.mts","../../../node_modules/@radix-ui/react-form/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-form/node_modules/@radix-ui/react-label/dist/index.d.mts","../../../node_modules/@radix-ui/react-form/dist/index.d.mts","../../../node_modules/@radix-ui/react-hover-card/node_modules/@radix-ui/react-context/dist/index.d.mts","../../../node_modules/@radix-ui/react-hover-card/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-hover-card/dist/index.d.mts","../../../node_modules/radix-ui/node_modules/@radix-ui/react-label/dist/index.d.mts","../../../node_modules/@radix-ui/react-menubar/node_modules/@radix-ui/react-context/dist/index.d.mts","../../../node_modules/@radix-ui/react-menubar/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-menubar/dist/index.d.mts","../../../node_modules/@radix-ui/react-navigation-menu/node_modules/@radix-ui/react-context/dist/index.d.mts","../../../node_modules/@radix-ui/react-navigation-menu/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-visually-hidden/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-visually-hidden/dist/index.d.mts","../../../node_modules/@radix-ui/react-navigation-menu/dist/index.d.mts","../../../node_modules/@radix-ui/react-one-time-password-field/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-one-time-password-field/dist/index.d.mts","../../../node_modules/@radix-ui/react-password-toggle-field/dist/index.d.mts","../../../node_modules/@radix-ui/react-popover/node_modules/@radix-ui/react-context/dist/index.d.mts","../../../node_modules/@radix-ui/react-popover/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-popover/dist/index.d.mts","../../../node_modules/radix-ui/node_modules/@radix-ui/react-progress/dist/index.d.mts","../../../node_modules/@radix-ui/react-radio-group/node_modules/@radix-ui/react-context/dist/index.d.mts","../../../node_modules/@radix-ui/react-radio-group/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-radio-group/dist/index.d.mts","../../../node_modules/@radix-ui/react-scroll-area/node_modules/@radix-ui/react-context/dist/index.d.mts","../../../node_modules/@radix-ui/react-scroll-area/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-scroll-area/dist/index.d.mts","../../../node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-context/dist/index.d.mts","../../../node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-select/dist/index.d.mts","../../../node_modules/radix-ui/node_modules/@radix-ui/react-separator/dist/index.d.mts","../../../node_modules/@radix-ui/react-slider/node_modules/@radix-ui/react-context/dist/index.d.mts","../../../node_modules/@radix-ui/react-slider/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-slider/dist/index.d.mts","../../../node_modules/radix-ui/node_modules/@radix-ui/react-slot/dist/index.d.mts","../../../node_modules/@radix-ui/react-switch/node_modules/@radix-ui/react-context/dist/index.d.mts","../../../node_modules/@radix-ui/react-switch/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-switch/dist/index.d.mts","../../../node_modules/@radix-ui/react-tabs/node_modules/@radix-ui/react-context/dist/index.d.mts","../../../node_modules/@radix-ui/react-tabs/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-tabs/dist/index.d.mts","../../../node_modules/@radix-ui/react-toast/node_modules/@radix-ui/react-context/dist/index.d.mts","../../../node_modules/@radix-ui/react-toast/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-toast/dist/index.d.mts","../../../node_modules/@radix-ui/react-toggle/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-toggle/dist/index.d.mts","../../../node_modules/@radix-ui/react-toggle-group/node_modules/@radix-ui/react-context/dist/index.d.mts","../../../node_modules/@radix-ui/react-toggle-group/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-toggle-group/dist/index.d.mts","../../../node_modules/@radix-ui/react-toolbar/node_modules/@radix-ui/react-context/dist/index.d.mts","../../../node_modules/@radix-ui/react-toolbar/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-toolbar/node_modules/@radix-ui/react-separator/dist/index.d.mts","../../../node_modules/@radix-ui/react-toolbar/dist/index.d.mts","../../../node_modules/@radix-ui/react-tooltip/node_modules/@radix-ui/react-context/dist/index.d.mts","../../../node_modules/@radix-ui/react-tooltip/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-tooltip/dist/index.d.mts","../../../node_modules/radix-ui/dist/index.d.mts","../../../packages/ui/src/accordion.tsx","../../../packages/ui/src/alert.tsx","../../../packages/ui/src/alert-dialog.tsx","../../../packages/ui/src/aspect-ratio.tsx","../../../packages/ui/src/avatar.tsx","../../../packages/ui/src/badge.tsx","../../../node_modules/@radix-ui/react-context/dist/index.d.mts","../../../node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-avatar/dist/index.d.mts","../../../packages/ui/src/based-avatar.tsx","../../../node_modules/@radix-ui/react-progress/dist/index.d.mts","../../../packages/ui/src/based-progress.tsx","../../../packages/ui/src/breadcrumb.tsx","../../../packages/ui/src/button.tsx","../../../packages/ui/src/button-group.tsx","../../../node_modules/@date-fns/tz/constants/index.d.ts","../../../node_modules/@date-fns/tz/date/index.d.ts","../../../node_modules/@date-fns/tz/date/mini.d.ts","../../../node_modules/@date-fns/tz/tz/index.d.ts","../../../node_modules/@date-fns/tz/tzOffset/index.d.ts","../../../node_modules/@date-fns/tz/tzScan/index.d.ts","../../../node_modules/@date-fns/tz/tzName/index.d.ts","../../../node_modules/@date-fns/tz/index.d.ts","../../../node_modules/date-fns/constants.d.ts","../../../node_modules/date-fns/locale/types.d.ts","../../../node_modules/date-fns/fp/types.d.ts","../../../node_modules/date-fns/types.d.ts","../../../node_modules/date-fns/add.d.ts","../../../node_modules/date-fns/addBusinessDays.d.ts","../../../node_modules/date-fns/addDays.d.ts","../../../node_modules/date-fns/addHours.d.ts","../../../node_modules/date-fns/addISOWeekYears.d.ts","../../../node_modules/date-fns/addMilliseconds.d.ts","../../../node_modules/date-fns/addMinutes.d.ts","../../../node_modules/date-fns/addMonths.d.ts","../../../node_modules/date-fns/addQuarters.d.ts","../../../node_modules/date-fns/addSeconds.d.ts","../../../node_modules/date-fns/addWeeks.d.ts","../../../node_modules/date-fns/addYears.d.ts","../../../node_modules/date-fns/areIntervalsOverlapping.d.ts","../../../node_modules/date-fns/clamp.d.ts","../../../node_modules/date-fns/closestIndexTo.d.ts","../../../node_modules/date-fns/closestTo.d.ts","../../../node_modules/date-fns/compareAsc.d.ts","../../../node_modules/date-fns/compareDesc.d.ts","../../../node_modules/date-fns/constructFrom.d.ts","../../../node_modules/date-fns/constructNow.d.ts","../../../node_modules/date-fns/daysToWeeks.d.ts","../../../node_modules/date-fns/differenceInBusinessDays.d.ts","../../../node_modules/date-fns/differenceInCalendarDays.d.ts","../../../node_modules/date-fns/differenceInCalendarISOWeekYears.d.ts","../../../node_modules/date-fns/differenceInCalendarISOWeeks.d.ts","../../../node_modules/date-fns/differenceInCalendarMonths.d.ts","../../../node_modules/date-fns/differenceInCalendarQuarters.d.ts","../../../node_modules/date-fns/differenceInCalendarWeeks.d.ts","../../../node_modules/date-fns/differenceInCalendarYears.d.ts","../../../node_modules/date-fns/differenceInDays.d.ts","../../../node_modules/date-fns/differenceInHours.d.ts","../../../node_modules/date-fns/differenceInISOWeekYears.d.ts","../../../node_modules/date-fns/differenceInMilliseconds.d.ts","../../../node_modules/date-fns/differenceInMinutes.d.ts","../../../node_modules/date-fns/differenceInMonths.d.ts","../../../node_modules/date-fns/differenceInQuarters.d.ts","../../../node_modules/date-fns/differenceInSeconds.d.ts","../../../node_modules/date-fns/differenceInWeeks.d.ts","../../../node_modules/date-fns/differenceInYears.d.ts","../../../node_modules/date-fns/eachDayOfInterval.d.ts","../../../node_modules/date-fns/eachHourOfInterval.d.ts","../../../node_modules/date-fns/eachMinuteOfInterval.d.ts","../../../node_modules/date-fns/eachMonthOfInterval.d.ts","../../../node_modules/date-fns/eachQuarterOfInterval.d.ts","../../../node_modules/date-fns/eachWeekOfInterval.d.ts","../../../node_modules/date-fns/eachWeekendOfInterval.d.ts","../../../node_modules/date-fns/eachWeekendOfMonth.d.ts","../../../node_modules/date-fns/eachWeekendOfYear.d.ts","../../../node_modules/date-fns/eachYearOfInterval.d.ts","../../../node_modules/date-fns/endOfDay.d.ts","../../../node_modules/date-fns/endOfDecade.d.ts","../../../node_modules/date-fns/endOfHour.d.ts","../../../node_modules/date-fns/endOfISOWeek.d.ts","../../../node_modules/date-fns/endOfISOWeekYear.d.ts","../../../node_modules/date-fns/endOfMinute.d.ts","../../../node_modules/date-fns/endOfMonth.d.ts","../../../node_modules/date-fns/endOfQuarter.d.ts","../../../node_modules/date-fns/endOfSecond.d.ts","../../../node_modules/date-fns/endOfToday.d.ts","../../../node_modules/date-fns/endOfTomorrow.d.ts","../../../node_modules/date-fns/endOfWeek.d.ts","../../../node_modules/date-fns/endOfYear.d.ts","../../../node_modules/date-fns/endOfYesterday.d.ts","../../../node_modules/date-fns/_lib/format/formatters.d.ts","../../../node_modules/date-fns/_lib/format/longFormatters.d.ts","../../../node_modules/date-fns/format.d.ts","../../../node_modules/date-fns/formatDistance.d.ts","../../../node_modules/date-fns/formatDistanceStrict.d.ts","../../../node_modules/date-fns/formatDistanceToNow.d.ts","../../../node_modules/date-fns/formatDistanceToNowStrict.d.ts","../../../node_modules/date-fns/formatDuration.d.ts","../../../node_modules/date-fns/formatISO.d.ts","../../../node_modules/date-fns/formatISO9075.d.ts","../../../node_modules/date-fns/formatISODuration.d.ts","../../../node_modules/date-fns/formatRFC3339.d.ts","../../../node_modules/date-fns/formatRFC7231.d.ts","../../../node_modules/date-fns/formatRelative.d.ts","../../../node_modules/date-fns/fromUnixTime.d.ts","../../../node_modules/date-fns/getDate.d.ts","../../../node_modules/date-fns/getDay.d.ts","../../../node_modules/date-fns/getDayOfYear.d.ts","../../../node_modules/date-fns/getDaysInMonth.d.ts","../../../node_modules/date-fns/getDaysInYear.d.ts","../../../node_modules/date-fns/getDecade.d.ts","../../../node_modules/date-fns/_lib/defaultOptions.d.ts","../../../node_modules/date-fns/getDefaultOptions.d.ts","../../../node_modules/date-fns/getHours.d.ts","../../../node_modules/date-fns/getISODay.d.ts","../../../node_modules/date-fns/getISOWeek.d.ts","../../../node_modules/date-fns/getISOWeekYear.d.ts","../../../node_modules/date-fns/getISOWeeksInYear.d.ts","../../../node_modules/date-fns/getMilliseconds.d.ts","../../../node_modules/date-fns/getMinutes.d.ts","../../../node_modules/date-fns/getMonth.d.ts","../../../node_modules/date-fns/getOverlappingDaysInIntervals.d.ts","../../../node_modules/date-fns/getQuarter.d.ts","../../../node_modules/date-fns/getSeconds.d.ts","../../../node_modules/date-fns/getTime.d.ts","../../../node_modules/date-fns/getUnixTime.d.ts","../../../node_modules/date-fns/getWeek.d.ts","../../../node_modules/date-fns/getWeekOfMonth.d.ts","../../../node_modules/date-fns/getWeekYear.d.ts","../../../node_modules/date-fns/getWeeksInMonth.d.ts","../../../node_modules/date-fns/getYear.d.ts","../../../node_modules/date-fns/hoursToMilliseconds.d.ts","../../../node_modules/date-fns/hoursToMinutes.d.ts","../../../node_modules/date-fns/hoursToSeconds.d.ts","../../../node_modules/date-fns/interval.d.ts","../../../node_modules/date-fns/intervalToDuration.d.ts","../../../node_modules/date-fns/intlFormat.d.ts","../../../node_modules/date-fns/intlFormatDistance.d.ts","../../../node_modules/date-fns/isAfter.d.ts","../../../node_modules/date-fns/isBefore.d.ts","../../../node_modules/date-fns/isDate.d.ts","../../../node_modules/date-fns/isEqual.d.ts","../../../node_modules/date-fns/isExists.d.ts","../../../node_modules/date-fns/isFirstDayOfMonth.d.ts","../../../node_modules/date-fns/isFriday.d.ts","../../../node_modules/date-fns/isFuture.d.ts","../../../node_modules/date-fns/isLastDayOfMonth.d.ts","../../../node_modules/date-fns/isLeapYear.d.ts","../../../node_modules/date-fns/isMatch.d.ts","../../../node_modules/date-fns/isMonday.d.ts","../../../node_modules/date-fns/isPast.d.ts","../../../node_modules/date-fns/isSameDay.d.ts","../../../node_modules/date-fns/isSameHour.d.ts","../../../node_modules/date-fns/isSameISOWeek.d.ts","../../../node_modules/date-fns/isSameISOWeekYear.d.ts","../../../node_modules/date-fns/isSameMinute.d.ts","../../../node_modules/date-fns/isSameMonth.d.ts","../../../node_modules/date-fns/isSameQuarter.d.ts","../../../node_modules/date-fns/isSameSecond.d.ts","../../../node_modules/date-fns/isSameWeek.d.ts","../../../node_modules/date-fns/isSameYear.d.ts","../../../node_modules/date-fns/isSaturday.d.ts","../../../node_modules/date-fns/isSunday.d.ts","../../../node_modules/date-fns/isThisHour.d.ts","../../../node_modules/date-fns/isThisISOWeek.d.ts","../../../node_modules/date-fns/isThisMinute.d.ts","../../../node_modules/date-fns/isThisMonth.d.ts","../../../node_modules/date-fns/isThisQuarter.d.ts","../../../node_modules/date-fns/isThisSecond.d.ts","../../../node_modules/date-fns/isThisWeek.d.ts","../../../node_modules/date-fns/isThisYear.d.ts","../../../node_modules/date-fns/isThursday.d.ts","../../../node_modules/date-fns/isToday.d.ts","../../../node_modules/date-fns/isTomorrow.d.ts","../../../node_modules/date-fns/isTuesday.d.ts","../../../node_modules/date-fns/isValid.d.ts","../../../node_modules/date-fns/isWednesday.d.ts","../../../node_modules/date-fns/isWeekend.d.ts","../../../node_modules/date-fns/isWithinInterval.d.ts","../../../node_modules/date-fns/isYesterday.d.ts","../../../node_modules/date-fns/lastDayOfDecade.d.ts","../../../node_modules/date-fns/lastDayOfISOWeek.d.ts","../../../node_modules/date-fns/lastDayOfISOWeekYear.d.ts","../../../node_modules/date-fns/lastDayOfMonth.d.ts","../../../node_modules/date-fns/lastDayOfQuarter.d.ts","../../../node_modules/date-fns/lastDayOfWeek.d.ts","../../../node_modules/date-fns/lastDayOfYear.d.ts","../../../node_modules/date-fns/_lib/format/lightFormatters.d.ts","../../../node_modules/date-fns/lightFormat.d.ts","../../../node_modules/date-fns/max.d.ts","../../../node_modules/date-fns/milliseconds.d.ts","../../../node_modules/date-fns/millisecondsToHours.d.ts","../../../node_modules/date-fns/millisecondsToMinutes.d.ts","../../../node_modules/date-fns/millisecondsToSeconds.d.ts","../../../node_modules/date-fns/min.d.ts","../../../node_modules/date-fns/minutesToHours.d.ts","../../../node_modules/date-fns/minutesToMilliseconds.d.ts","../../../node_modules/date-fns/minutesToSeconds.d.ts","../../../node_modules/date-fns/monthsToQuarters.d.ts","../../../node_modules/date-fns/monthsToYears.d.ts","../../../node_modules/date-fns/nextDay.d.ts","../../../node_modules/date-fns/nextFriday.d.ts","../../../node_modules/date-fns/nextMonday.d.ts","../../../node_modules/date-fns/nextSaturday.d.ts","../../../node_modules/date-fns/nextSunday.d.ts","../../../node_modules/date-fns/nextThursday.d.ts","../../../node_modules/date-fns/nextTuesday.d.ts","../../../node_modules/date-fns/nextWednesday.d.ts","../../../node_modules/date-fns/parse/_lib/types.d.ts","../../../node_modules/date-fns/parse/_lib/Setter.d.ts","../../../node_modules/date-fns/parse/_lib/Parser.d.ts","../../../node_modules/date-fns/parse/_lib/parsers.d.ts","../../../node_modules/date-fns/parse.d.ts","../../../node_modules/date-fns/parseISO.d.ts","../../../node_modules/date-fns/parseJSON.d.ts","../../../node_modules/date-fns/previousDay.d.ts","../../../node_modules/date-fns/previousFriday.d.ts","../../../node_modules/date-fns/previousMonday.d.ts","../../../node_modules/date-fns/previousSaturday.d.ts","../../../node_modules/date-fns/previousSunday.d.ts","../../../node_modules/date-fns/previousThursday.d.ts","../../../node_modules/date-fns/previousTuesday.d.ts","../../../node_modules/date-fns/previousWednesday.d.ts","../../../node_modules/date-fns/quartersToMonths.d.ts","../../../node_modules/date-fns/quartersToYears.d.ts","../../../node_modules/date-fns/roundToNearestHours.d.ts","../../../node_modules/date-fns/roundToNearestMinutes.d.ts","../../../node_modules/date-fns/secondsToHours.d.ts","../../../node_modules/date-fns/secondsToMilliseconds.d.ts","../../../node_modules/date-fns/secondsToMinutes.d.ts","../../../node_modules/date-fns/set.d.ts","../../../node_modules/date-fns/setDate.d.ts","../../../node_modules/date-fns/setDay.d.ts","../../../node_modules/date-fns/setDayOfYear.d.ts","../../../node_modules/date-fns/setDefaultOptions.d.ts","../../../node_modules/date-fns/setHours.d.ts","../../../node_modules/date-fns/setISODay.d.ts","../../../node_modules/date-fns/setISOWeek.d.ts","../../../node_modules/date-fns/setISOWeekYear.d.ts","../../../node_modules/date-fns/setMilliseconds.d.ts","../../../node_modules/date-fns/setMinutes.d.ts","../../../node_modules/date-fns/setMonth.d.ts","../../../node_modules/date-fns/setQuarter.d.ts","../../../node_modules/date-fns/setSeconds.d.ts","../../../node_modules/date-fns/setWeek.d.ts","../../../node_modules/date-fns/setWeekYear.d.ts","../../../node_modules/date-fns/setYear.d.ts","../../../node_modules/date-fns/startOfDay.d.ts","../../../node_modules/date-fns/startOfDecade.d.ts","../../../node_modules/date-fns/startOfHour.d.ts","../../../node_modules/date-fns/startOfISOWeek.d.ts","../../../node_modules/date-fns/startOfISOWeekYear.d.ts","../../../node_modules/date-fns/startOfMinute.d.ts","../../../node_modules/date-fns/startOfMonth.d.ts","../../../node_modules/date-fns/startOfQuarter.d.ts","../../../node_modules/date-fns/startOfSecond.d.ts","../../../node_modules/date-fns/startOfToday.d.ts","../../../node_modules/date-fns/startOfTomorrow.d.ts","../../../node_modules/date-fns/startOfWeek.d.ts","../../../node_modules/date-fns/startOfWeekYear.d.ts","../../../node_modules/date-fns/startOfYear.d.ts","../../../node_modules/date-fns/startOfYesterday.d.ts","../../../node_modules/date-fns/sub.d.ts","../../../node_modules/date-fns/subBusinessDays.d.ts","../../../node_modules/date-fns/subDays.d.ts","../../../node_modules/date-fns/subHours.d.ts","../../../node_modules/date-fns/subISOWeekYears.d.ts","../../../node_modules/date-fns/subMilliseconds.d.ts","../../../node_modules/date-fns/subMinutes.d.ts","../../../node_modules/date-fns/subMonths.d.ts","../../../node_modules/date-fns/subQuarters.d.ts","../../../node_modules/date-fns/subSeconds.d.ts","../../../node_modules/date-fns/subWeeks.d.ts","../../../node_modules/date-fns/subYears.d.ts","../../../node_modules/date-fns/toDate.d.ts","../../../node_modules/date-fns/transpose.d.ts","../../../node_modules/date-fns/weeksToDays.d.ts","../../../node_modules/date-fns/yearsToDays.d.ts","../../../node_modules/date-fns/yearsToMonths.d.ts","../../../node_modules/date-fns/yearsToQuarters.d.ts","../../../node_modules/date-fns/index.d.ts","../../../node_modules/date-fns/locale/af.d.ts","../../../node_modules/date-fns/locale/ar.d.ts","../../../node_modules/date-fns/locale/ar-DZ.d.ts","../../../node_modules/date-fns/locale/ar-EG.d.ts","../../../node_modules/date-fns/locale/ar-MA.d.ts","../../../node_modules/date-fns/locale/ar-SA.d.ts","../../../node_modules/date-fns/locale/ar-TN.d.ts","../../../node_modules/date-fns/locale/az.d.ts","../../../node_modules/date-fns/locale/be.d.ts","../../../node_modules/date-fns/locale/be-tarask.d.ts","../../../node_modules/date-fns/locale/bg.d.ts","../../../node_modules/date-fns/locale/bn.d.ts","../../../node_modules/date-fns/locale/bs.d.ts","../../../node_modules/date-fns/locale/ca.d.ts","../../../node_modules/date-fns/locale/ckb.d.ts","../../../node_modules/date-fns/locale/cs.d.ts","../../../node_modules/date-fns/locale/cy.d.ts","../../../node_modules/date-fns/locale/da.d.ts","../../../node_modules/date-fns/locale/de.d.ts","../../../node_modules/date-fns/locale/de-AT.d.ts","../../../node_modules/date-fns/locale/el.d.ts","../../../node_modules/date-fns/locale/en-AU.d.ts","../../../node_modules/date-fns/locale/en-CA.d.ts","../../../node_modules/date-fns/locale/en-GB.d.ts","../../../node_modules/date-fns/locale/en-IE.d.ts","../../../node_modules/date-fns/locale/en-IN.d.ts","../../../node_modules/date-fns/locale/en-NZ.d.ts","../../../node_modules/date-fns/locale/en-US.d.ts","../../../node_modules/date-fns/locale/en-ZA.d.ts","../../../node_modules/date-fns/locale/eo.d.ts","../../../node_modules/date-fns/locale/es.d.ts","../../../node_modules/date-fns/locale/et.d.ts","../../../node_modules/date-fns/locale/eu.d.ts","../../../node_modules/date-fns/locale/fa-IR.d.ts","../../../node_modules/date-fns/locale/fi.d.ts","../../../node_modules/date-fns/locale/fr.d.ts","../../../node_modules/date-fns/locale/fr-CA.d.ts","../../../node_modules/date-fns/locale/fr-CH.d.ts","../../../node_modules/date-fns/locale/fy.d.ts","../../../node_modules/date-fns/locale/gd.d.ts","../../../node_modules/date-fns/locale/gl.d.ts","../../../node_modules/date-fns/locale/gu.d.ts","../../../node_modules/date-fns/locale/he.d.ts","../../../node_modules/date-fns/locale/hi.d.ts","../../../node_modules/date-fns/locale/hr.d.ts","../../../node_modules/date-fns/locale/ht.d.ts","../../../node_modules/date-fns/locale/hu.d.ts","../../../node_modules/date-fns/locale/hy.d.ts","../../../node_modules/date-fns/locale/id.d.ts","../../../node_modules/date-fns/locale/is.d.ts","../../../node_modules/date-fns/locale/it.d.ts","../../../node_modules/date-fns/locale/it-CH.d.ts","../../../node_modules/date-fns/locale/ja.d.ts","../../../node_modules/date-fns/locale/ja-Hira.d.ts","../../../node_modules/date-fns/locale/ka.d.ts","../../../node_modules/date-fns/locale/kk.d.ts","../../../node_modules/date-fns/locale/km.d.ts","../../../node_modules/date-fns/locale/kn.d.ts","../../../node_modules/date-fns/locale/ko.d.ts","../../../node_modules/date-fns/locale/lb.d.ts","../../../node_modules/date-fns/locale/lt.d.ts","../../../node_modules/date-fns/locale/lv.d.ts","../../../node_modules/date-fns/locale/mk.d.ts","../../../node_modules/date-fns/locale/mn.d.ts","../../../node_modules/date-fns/locale/ms.d.ts","../../../node_modules/date-fns/locale/mt.d.ts","../../../node_modules/date-fns/locale/nb.d.ts","../../../node_modules/date-fns/locale/nl.d.ts","../../../node_modules/date-fns/locale/nl-BE.d.ts","../../../node_modules/date-fns/locale/nn.d.ts","../../../node_modules/date-fns/locale/oc.d.ts","../../../node_modules/date-fns/locale/pl.d.ts","../../../node_modules/date-fns/locale/pt.d.ts","../../../node_modules/date-fns/locale/pt-BR.d.ts","../../../node_modules/date-fns/locale/ro.d.ts","../../../node_modules/date-fns/locale/ru.d.ts","../../../node_modules/date-fns/locale/se.d.ts","../../../node_modules/date-fns/locale/sk.d.ts","../../../node_modules/date-fns/locale/sl.d.ts","../../../node_modules/date-fns/locale/sq.d.ts","../../../node_modules/date-fns/locale/sr.d.ts","../../../node_modules/date-fns/locale/sr-Latn.d.ts","../../../node_modules/date-fns/locale/sv.d.ts","../../../node_modules/date-fns/locale/ta.d.ts","../../../node_modules/date-fns/locale/te.d.ts","../../../node_modules/date-fns/locale/th.d.ts","../../../node_modules/date-fns/locale/tr.d.ts","../../../node_modules/date-fns/locale/ug.d.ts","../../../node_modules/date-fns/locale/uk.d.ts","../../../node_modules/date-fns/locale/uz.d.ts","../../../node_modules/date-fns/locale/uz-Cyrl.d.ts","../../../node_modules/date-fns/locale/vi.d.ts","../../../node_modules/date-fns/locale/zh-CN.d.ts","../../../node_modules/date-fns/locale/zh-HK.d.ts","../../../node_modules/date-fns/locale/zh-TW.d.ts","../../../node_modules/date-fns/locale.d.ts","../../../node_modules/react-day-picker/dist/esm/components/Button.d.ts","../../../node_modules/react-day-picker/dist/esm/components/CaptionLabel.d.ts","../../../node_modules/react-day-picker/dist/esm/components/Chevron.d.ts","../../../node_modules/react-day-picker/dist/esm/components/MonthCaption.d.ts","../../../node_modules/react-day-picker/dist/esm/components/Week.d.ts","../../../node_modules/react-day-picker/dist/esm/labels/labelDayButton.d.ts","../../../node_modules/react-day-picker/dist/esm/labels/labelGrid.d.ts","../../../node_modules/react-day-picker/dist/esm/labels/labelGridcell.d.ts","../../../node_modules/react-day-picker/dist/esm/labels/labelMonthDropdown.d.ts","../../../node_modules/react-day-picker/dist/esm/labels/labelNav.d.ts","../../../node_modules/react-day-picker/dist/esm/labels/labelNext.d.ts","../../../node_modules/react-day-picker/dist/esm/labels/labelPrevious.d.ts","../../../node_modules/react-day-picker/dist/esm/labels/labelWeekday.d.ts","../../../node_modules/react-day-picker/dist/esm/labels/labelWeekNumber.d.ts","../../../node_modules/react-day-picker/dist/esm/labels/labelWeekNumberHeader.d.ts","../../../node_modules/react-day-picker/dist/esm/labels/labelYearDropdown.d.ts","../../../node_modules/react-day-picker/dist/esm/labels/index.d.ts","../../../node_modules/react-day-picker/dist/esm/UI.d.ts","../../../node_modules/react-day-picker/dist/esm/classes/CalendarWeek.d.ts","../../../node_modules/react-day-picker/dist/esm/classes/CalendarMonth.d.ts","../../../node_modules/react-day-picker/dist/esm/types/props.d.ts","../../../node_modules/react-day-picker/dist/esm/types/selection.d.ts","../../../node_modules/react-day-picker/dist/esm/useDayPicker.d.ts","../../../node_modules/react-day-picker/dist/esm/types/deprecated.d.ts","../../../node_modules/react-day-picker/dist/esm/types/index.d.ts","../../../node_modules/react-day-picker/dist/esm/components/Day.d.ts","../../../node_modules/react-day-picker/dist/esm/components/DayButton.d.ts","../../../node_modules/react-day-picker/dist/esm/components/Dropdown.d.ts","../../../node_modules/react-day-picker/dist/esm/components/DropdownNav.d.ts","../../../node_modules/react-day-picker/dist/esm/components/Footer.d.ts","../../../node_modules/react-day-picker/dist/esm/components/Month.d.ts","../../../node_modules/react-day-picker/dist/esm/components/MonthGrid.d.ts","../../../node_modules/react-day-picker/dist/esm/components/Months.d.ts","../../../node_modules/react-day-picker/dist/esm/components/MonthsDropdown.d.ts","../../../node_modules/react-day-picker/dist/esm/components/Nav.d.ts","../../../node_modules/react-day-picker/dist/esm/components/NextMonthButton.d.ts","../../../node_modules/react-day-picker/dist/esm/components/Option.d.ts","../../../node_modules/react-day-picker/dist/esm/components/PreviousMonthButton.d.ts","../../../node_modules/react-day-picker/dist/esm/components/Root.d.ts","../../../node_modules/react-day-picker/dist/esm/components/Select.d.ts","../../../node_modules/react-day-picker/dist/esm/components/Weekday.d.ts","../../../node_modules/react-day-picker/dist/esm/components/Weekdays.d.ts","../../../node_modules/react-day-picker/dist/esm/components/WeekNumber.d.ts","../../../node_modules/react-day-picker/dist/esm/components/WeekNumberHeader.d.ts","../../../node_modules/react-day-picker/dist/esm/components/Weeks.d.ts","../../../node_modules/react-day-picker/dist/esm/components/YearsDropdown.d.ts","../../../node_modules/react-day-picker/dist/esm/components/custom-components.d.ts","../../../node_modules/react-day-picker/dist/esm/formatters/formatCaption.d.ts","../../../node_modules/react-day-picker/dist/esm/formatters/formatDay.d.ts","../../../node_modules/react-day-picker/dist/esm/formatters/formatMonthDropdown.d.ts","../../../node_modules/react-day-picker/dist/esm/formatters/formatWeekdayName.d.ts","../../../node_modules/react-day-picker/dist/esm/formatters/formatWeekNumber.d.ts","../../../node_modules/react-day-picker/dist/esm/formatters/formatWeekNumberHeader.d.ts","../../../node_modules/react-day-picker/dist/esm/formatters/formatYearDropdown.d.ts","../../../node_modules/react-day-picker/dist/esm/formatters/index.d.ts","../../../node_modules/react-day-picker/dist/esm/types/shared.d.ts","../../../node_modules/react-day-picker/dist/esm/locale/en-US.d.ts","../../../node_modules/react-day-picker/dist/esm/classes/DateLib.d.ts","../../../node_modules/react-day-picker/dist/esm/classes/CalendarDay.d.ts","../../../node_modules/react-day-picker/dist/esm/classes/index.d.ts","../../../node_modules/react-day-picker/dist/esm/DayPicker.d.ts","../../../node_modules/react-day-picker/dist/esm/helpers/getDefaultClassNames.d.ts","../../../node_modules/react-day-picker/dist/esm/helpers/index.d.ts","../../../node_modules/react-day-picker/dist/esm/utils/addToRange.d.ts","../../../node_modules/react-day-picker/dist/esm/utils/dateMatchModifiers.d.ts","../../../node_modules/react-day-picker/dist/esm/utils/rangeContainsDayOfWeek.d.ts","../../../node_modules/react-day-picker/dist/esm/utils/rangeContainsModifiers.d.ts","../../../node_modules/react-day-picker/dist/esm/utils/rangeIncludesDate.d.ts","../../../node_modules/react-day-picker/dist/esm/utils/rangeOverlaps.d.ts","../../../node_modules/react-day-picker/dist/esm/utils/typeguards.d.ts","../../../node_modules/react-day-picker/dist/esm/utils/index.d.ts","../../../node_modules/react-day-picker/dist/esm/index.d.ts","../../../packages/ui/src/calendar.tsx","../../../packages/ui/src/card.tsx","../../../node_modules/embla-carousel/esm/components/Alignment.d.ts","../../../node_modules/embla-carousel/esm/components/NodeRects.d.ts","../../../node_modules/embla-carousel/esm/components/Axis.d.ts","../../../node_modules/embla-carousel/esm/components/SlidesToScroll.d.ts","../../../node_modules/embla-carousel/esm/components/Limit.d.ts","../../../node_modules/embla-carousel/esm/components/ScrollContain.d.ts","../../../node_modules/embla-carousel/esm/components/DragTracker.d.ts","../../../node_modules/embla-carousel/esm/components/utils.d.ts","../../../node_modules/embla-carousel/esm/components/Animations.d.ts","../../../node_modules/embla-carousel/esm/components/Counter.d.ts","../../../node_modules/embla-carousel/esm/components/EventHandler.d.ts","../../../node_modules/embla-carousel/esm/components/EventStore.d.ts","../../../node_modules/embla-carousel/esm/components/PercentOfView.d.ts","../../../node_modules/embla-carousel/esm/components/ResizeHandler.d.ts","../../../node_modules/embla-carousel/esm/components/Vector1d.d.ts","../../../node_modules/embla-carousel/esm/components/ScrollBody.d.ts","../../../node_modules/embla-carousel/esm/components/ScrollBounds.d.ts","../../../node_modules/embla-carousel/esm/components/ScrollLooper.d.ts","../../../node_modules/embla-carousel/esm/components/ScrollProgress.d.ts","../../../node_modules/embla-carousel/esm/components/SlideRegistry.d.ts","../../../node_modules/embla-carousel/esm/components/ScrollTarget.d.ts","../../../node_modules/embla-carousel/esm/components/ScrollTo.d.ts","../../../node_modules/embla-carousel/esm/components/SlideFocus.d.ts","../../../node_modules/embla-carousel/esm/components/Translate.d.ts","../../../node_modules/embla-carousel/esm/components/SlideLooper.d.ts","../../../node_modules/embla-carousel/esm/components/SlidesHandler.d.ts","../../../node_modules/embla-carousel/esm/components/SlidesInView.d.ts","../../../node_modules/embla-carousel/esm/components/Engine.d.ts","../../../node_modules/embla-carousel/esm/components/OptionsHandler.d.ts","../../../node_modules/embla-carousel/esm/components/Plugins.d.ts","../../../node_modules/embla-carousel/esm/components/EmblaCarousel.d.ts","../../../node_modules/embla-carousel/esm/components/DragHandler.d.ts","../../../node_modules/embla-carousel/esm/components/Options.d.ts","../../../node_modules/embla-carousel/esm/index.d.ts","../../../node_modules/embla-carousel-react/esm/components/useEmblaCarousel.d.ts","../../../node_modules/embla-carousel-react/esm/index.d.ts","../../../packages/ui/src/carousel.tsx","../../../node_modules/@types/d3-time/index.d.ts","../../../node_modules/@types/d3-scale/index.d.ts","../../../node_modules/victory-vendor/d3-scale.d.ts","../../../node_modules/recharts/types/shape/Dot.d.ts","../../../node_modules/recharts/types/component/Text.d.ts","../../../node_modules/recharts/types/zIndex/ZIndexLayer.d.ts","../../../node_modules/recharts/types/cartesian/getCartesianPosition.d.ts","../../../node_modules/recharts/types/component/Label.d.ts","../../../node_modules/recharts/types/cartesian/CartesianAxis.d.ts","../../../node_modules/recharts/types/util/scale/CustomScaleDefinition.d.ts","../../../node_modules/redux/dist/redux.d.ts","../../../node_modules/@reduxjs/toolkit/node_modules/immer/dist/immer.d.ts","../../../node_modules/reselect/dist/reselect.d.ts","../../../node_modules/redux-thunk/dist/redux-thunk.d.ts","../../../node_modules/@reduxjs/toolkit/dist/uncheckedindexed.ts","../../../node_modules/@reduxjs/toolkit/dist/index.d.mts","../../../node_modules/recharts/types/state/cartesianAxisSlice.d.ts","../../../node_modules/recharts/types/synchronisation/types.d.ts","../../../node_modules/recharts/types/chart/types.d.ts","../../../node_modules/recharts/types/component/DefaultTooltipContent.d.ts","../../../node_modules/recharts/types/context/brushUpdateContext.d.ts","../../../node_modules/recharts/types/state/chartDataSlice.d.ts","../../../node_modules/recharts/types/state/types/LineSettings.d.ts","../../../node_modules/recharts/types/state/types/ScatterSettings.d.ts","../../../node_modules/@types/d3-path/index.d.ts","../../../node_modules/@types/d3-shape/index.d.ts","../../../node_modules/victory-vendor/d3-shape.d.ts","../../../node_modules/recharts/types/shape/Curve.d.ts","../../../node_modules/recharts/types/component/LabelList.d.ts","../../../node_modules/recharts/types/component/DefaultLegendContent.d.ts","../../../node_modules/recharts/types/util/payload/getUniqPayload.d.ts","../../../node_modules/recharts/types/util/useElementOffset.d.ts","../../../node_modules/recharts/types/component/Legend.d.ts","../../../node_modules/recharts/types/state/legendSlice.d.ts","../../../node_modules/recharts/types/state/types/StackedGraphicalItem.d.ts","../../../node_modules/recharts/types/util/stacks/stackTypes.d.ts","../../../node_modules/recharts/types/util/scale/RechartsScale.d.ts","../../../node_modules/recharts/types/util/ChartUtils.d.ts","../../../node_modules/recharts/types/state/selectors/areaSelectors.d.ts","../../../node_modules/recharts/types/cartesian/Area.d.ts","../../../node_modules/recharts/types/state/types/AreaSettings.d.ts","../../../node_modules/recharts/types/animation/easing.d.ts","../../../node_modules/recharts/types/shape/Rectangle.d.ts","../../../node_modules/recharts/types/cartesian/Bar.d.ts","../../../node_modules/recharts/types/util/BarUtils.d.ts","../../../node_modules/recharts/types/state/types/BarSettings.d.ts","../../../node_modules/recharts/types/state/types/RadialBarSettings.d.ts","../../../node_modules/recharts/types/util/svgPropertiesNoEvents.d.ts","../../../node_modules/recharts/types/util/useUniqueId.d.ts","../../../node_modules/recharts/types/state/types/PieSettings.d.ts","../../../node_modules/recharts/types/state/types/RadarSettings.d.ts","../../../node_modules/recharts/types/state/graphicalItemsSlice.d.ts","../../../node_modules/recharts/types/state/tooltipSlice.d.ts","../../../node_modules/recharts/types/state/optionsSlice.d.ts","../../../node_modules/recharts/types/state/layoutSlice.d.ts","../../../node_modules/immer/dist/immer.d.ts","../../../node_modules/recharts/types/util/IfOverflow.d.ts","../../../node_modules/recharts/types/util/resolveDefaultProps.d.ts","../../../node_modules/recharts/types/cartesian/ReferenceLine.d.ts","../../../node_modules/recharts/types/state/referenceElementsSlice.d.ts","../../../node_modules/recharts/types/state/brushSlice.d.ts","../../../node_modules/recharts/types/state/rootPropsSlice.d.ts","../../../node_modules/recharts/types/state/polarAxisSlice.d.ts","../../../node_modules/recharts/types/state/polarOptionsSlice.d.ts","../../../node_modules/recharts/types/cartesian/Line.d.ts","../../../node_modules/recharts/types/util/Constants.d.ts","../../../node_modules/recharts/types/util/ScatterUtils.d.ts","../../../node_modules/recharts/types/shape/Symbols.d.ts","../../../node_modules/recharts/types/cartesian/Scatter.d.ts","../../../node_modules/recharts/types/cartesian/ErrorBar.d.ts","../../../node_modules/recharts/types/state/errorBarSlice.d.ts","../../../node_modules/recharts/types/state/zIndexSlice.d.ts","../../../node_modules/recharts/types/state/eventSettingsSlice.d.ts","../../../node_modules/recharts/types/state/renderedTicksSlice.d.ts","../../../node_modules/recharts/types/state/store.d.ts","../../../node_modules/recharts/types/cartesian/getTicks.d.ts","../../../node_modules/recharts/types/cartesian/CartesianGrid.d.ts","../../../node_modules/recharts/types/state/selectors/combiners/combineDisplayedStackedData.d.ts","../../../node_modules/recharts/types/state/selectors/selectTooltipAxisType.d.ts","../../../node_modules/recharts/types/types.d.ts","../../../node_modules/recharts/types/hooks.d.ts","../../../node_modules/recharts/types/state/selectors/axisSelectors.d.ts","../../../node_modules/recharts/types/component/Dots.d.ts","../../../node_modules/recharts/types/util/typedDataKey.d.ts","../../../node_modules/recharts/types/util/types.d.ts","../../../node_modules/recharts/types/container/Surface.d.ts","../../../node_modules/recharts/types/container/Layer.d.ts","../../../node_modules/recharts/types/component/Cursor.d.ts","../../../node_modules/recharts/types/component/Tooltip.d.ts","../../../node_modules/recharts/types/component/ResponsiveContainer.d.ts","../../../node_modules/recharts/types/component/Cell.d.ts","../../../node_modules/recharts/types/component/Customized.d.ts","../../../node_modules/recharts/types/shape/Sector.d.ts","../../../node_modules/recharts/types/shape/Polygon.d.ts","../../../node_modules/recharts/types/shape/Cross.d.ts","../../../node_modules/recharts/types/polar/PolarGrid.d.ts","../../../node_modules/recharts/types/polar/defaultPolarRadiusAxisProps.d.ts","../../../node_modules/recharts/types/polar/PolarRadiusAxis.d.ts","../../../node_modules/recharts/types/polar/defaultPolarAngleAxisProps.d.ts","../../../node_modules/recharts/types/polar/PolarAngleAxis.d.ts","../../../node_modules/recharts/types/context/tooltipContext.d.ts","../../../node_modules/recharts/types/polar/Pie.d.ts","../../../node_modules/recharts/types/polar/Radar.d.ts","../../../node_modules/recharts/types/util/RadialBarUtils.d.ts","../../../node_modules/recharts/types/polar/RadialBar.d.ts","../../../node_modules/recharts/types/cartesian/Brush.d.ts","../../../node_modules/recharts/types/cartesian/ReferenceDot.d.ts","../../../node_modules/recharts/types/util/excludeEventProps.d.ts","../../../node_modules/recharts/types/util/svgPropertiesAndEvents.d.ts","../../../node_modules/recharts/types/cartesian/ReferenceArea.d.ts","../../../node_modules/recharts/types/cartesian/BarStack.d.ts","../../../node_modules/recharts/types/cartesian/XAxis.d.ts","../../../node_modules/recharts/types/cartesian/YAxis.d.ts","../../../node_modules/recharts/types/cartesian/ZAxis.d.ts","../../../node_modules/recharts/types/chart/LineChart.d.ts","../../../node_modules/recharts/types/chart/BarChart.d.ts","../../../node_modules/recharts/types/chart/PieChart.d.ts","../../../node_modules/recharts/types/chart/Treemap.d.ts","../../../node_modules/recharts/types/chart/Sankey.d.ts","../../../node_modules/recharts/types/chart/RadarChart.d.ts","../../../node_modules/recharts/types/chart/ScatterChart.d.ts","../../../node_modules/recharts/types/chart/AreaChart.d.ts","../../../node_modules/recharts/types/chart/RadialBarChart.d.ts","../../../node_modules/recharts/types/chart/ComposedChart.d.ts","../../../node_modules/recharts/types/chart/SunburstChart.d.ts","../../../node_modules/recharts/types/shape/Trapezoid.d.ts","../../../node_modules/recharts/types/cartesian/Funnel.d.ts","../../../node_modules/recharts/types/chart/FunnelChart.d.ts","../../../node_modules/recharts/types/util/Global.d.ts","../../../node_modules/recharts/types/zIndex/DefaultZIndexes.d.ts","../../../node_modules/decimal.js-light/decimal.d.ts","../../../node_modules/recharts/types/util/scale/getNiceTickValues.d.ts","../../../node_modules/recharts/types/context/chartLayoutContext.d.ts","../../../node_modules/recharts/types/util/getRelativeCoordinate.d.ts","../../../node_modules/recharts/types/util/createCartesianCharts.d.ts","../../../node_modules/recharts/types/util/createPolarCharts.d.ts","../../../node_modules/recharts/types/index.d.ts","../../../packages/ui/src/chart.tsx","../../../packages/ui/src/checkbox.tsx","../../../packages/ui/src/collapsible.tsx","../../../node_modules/@base-ui/react/esm/utils/reason-parts.d.ts","../../../node_modules/@base-ui/react/esm/utils/reasons.d.ts","../../../node_modules/@base-ui/react/esm/utils/createBaseUIEventDetails.d.ts","../../../node_modules/@base-ui/react/esm/types/index.d.ts","../../../node_modules/@base-ui/react/esm/utils/types.d.ts","../../../node_modules/@base-ui/react/esm/accordion/root/AccordionRoot.d.ts","../../../node_modules/@base-ui/react/esm/utils/useTransitionStatus.d.ts","../../../node_modules/@base-ui/react/esm/collapsible/root/CollapsibleRoot.d.ts","../../../node_modules/@base-ui/react/esm/collapsible/root/useCollapsibleRoot.d.ts","../../../node_modules/@base-ui/react/esm/accordion/item/AccordionItem.d.ts","../../../node_modules/@base-ui/react/esm/accordion/header/AccordionHeader.d.ts","../../../node_modules/@base-ui/react/esm/accordion/trigger/AccordionTrigger.d.ts","../../../node_modules/@base-ui/react/esm/accordion/panel/AccordionPanel.d.ts","../../../node_modules/@base-ui/react/esm/accordion/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/accordion/index.d.ts","../../../node_modules/@base-ui/utils/esm/store/createSelector.d.ts","../../../node_modules/@base-ui/utils/esm/fastHooks.d.ts","../../../node_modules/@base-ui/utils/esm/store/Store.d.ts","../../../node_modules/@base-ui/utils/esm/store/useStore.d.ts","../../../node_modules/@base-ui/utils/esm/store/ReactStore.d.ts","../../../node_modules/@base-ui/utils/esm/store/StoreInspector.d.ts","../../../node_modules/@base-ui/utils/esm/store/index.d.ts","../../../node_modules/@base-ui/utils/esm/useEnhancedClickHandler.d.ts","../../../node_modules/@floating-ui/utils/dist/floating-ui.utils.d.mts","../../../node_modules/@floating-ui/core/dist/floating-ui.core.d.mts","../../../node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.d.mts","../../../node_modules/@floating-ui/dom/dist/floating-ui.dom.d.mts","../../../node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.d.mts","../../../node_modules/@base-ui/react/esm/floating-ui-react/utils/constants.d.ts","../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useInteractions.d.ts","../../../node_modules/@base-ui/react/esm/floating-ui-react/components/FloatingTreeStore.d.ts","../../../node_modules/@base-ui/react/esm/floating-ui-react/components/FloatingRootStore.d.ts","../../../node_modules/@base-ui/react/esm/floating-ui-react/components/FloatingFocusManager.d.ts","../../../node_modules/@base-ui/react/esm/utils/getStateAttributesProps.d.ts","../../../node_modules/@base-ui/react/esm/utils/useRenderElement.d.ts","../../../node_modules/@base-ui/react/esm/floating-ui-react/components/FloatingPortal.d.ts","../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useClientPoint.d.ts","../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useDismiss.d.ts","../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useFocus.d.ts","../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useHoverShared.d.ts","../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useHover.d.ts","../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useHoverFloatingInteraction.d.ts","../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useHoverReferenceInteraction.d.ts","../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useListNavigation.d.ts","../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useRole.d.ts","../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useTypeahead.d.ts","../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useFloatingRootContext.d.ts","../../../node_modules/@base-ui/react/esm/floating-ui-react/safePolygon.d.ts","../../../node_modules/@base-ui/react/esm/floating-ui-react/components/FloatingTree.d.ts","../../../node_modules/@base-ui/react/esm/floating-ui-react/types.d.ts","../../../node_modules/@base-ui/react/esm/floating-ui-react/components/FloatingDelayGroup.d.ts","../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useClick.d.ts","../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useFloating.d.ts","../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useSyncedFloatingRootContext.d.ts","../../../node_modules/@base-ui/react/esm/floating-ui-react/index.d.ts","../../../node_modules/@base-ui/react/esm/utils/popups/popupTriggerMap.d.ts","../../../node_modules/@base-ui/react/esm/utils/popups/store.d.ts","../../../node_modules/@base-ui/react/esm/utils/popups/popupStoreUtils.d.ts","../../../node_modules/@base-ui/react/esm/utils/popups/index.d.ts","../../../node_modules/@base-ui/react/esm/dialog/root/DialogRoot.d.ts","../../../node_modules/@base-ui/react/esm/dialog/store/DialogStore.d.ts","../../../node_modules/@base-ui/react/esm/dialog/store/DialogHandle.d.ts","../../../node_modules/@base-ui/react/esm/alert-dialog/root/AlertDialogRoot.d.ts","../../../node_modules/@base-ui/react/esm/dialog/backdrop/DialogBackdrop.d.ts","../../../node_modules/@base-ui/react/esm/dialog/close/DialogClose.d.ts","../../../node_modules/@base-ui/react/esm/dialog/description/DialogDescription.d.ts","../../../node_modules/@base-ui/react/esm/dialog/popup/DialogPopup.d.ts","../../../node_modules/@base-ui/react/esm/dialog/portal/DialogPortal.d.ts","../../../node_modules/@base-ui/react/esm/dialog/title/DialogTitle.d.ts","../../../node_modules/@base-ui/react/esm/dialog/trigger/DialogTrigger.d.ts","../../../node_modules/@base-ui/react/esm/dialog/viewport/DialogViewport.d.ts","../../../node_modules/@base-ui/react/esm/alert-dialog/handle.d.ts","../../../node_modules/@base-ui/react/esm/alert-dialog/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/alert-dialog/index.d.ts","../../../node_modules/@base-ui/react/esm/utils/resolveValueLabel.d.ts","../../../node_modules/@base-ui/react/esm/combobox/root/AriaCombobox.d.ts","../../../node_modules/@base-ui/react/esm/autocomplete/root/AutocompleteRoot.d.ts","../../../node_modules/@base-ui/react/esm/autocomplete/value/AutocompleteValue.d.ts","../../../node_modules/@base-ui/react/esm/form/FormContext.d.ts","../../../node_modules/@base-ui/react/esm/form/Form.d.ts","../../../node_modules/@base-ui/react/esm/form/index.d.ts","../../../node_modules/@base-ui/react/esm/field/root/FieldRoot.d.ts","../../../node_modules/@base-ui/react/esm/utils/useAnchorPositioning.d.ts","../../../node_modules/@base-ui/react/esm/combobox/trigger/ComboboxTrigger.d.ts","../../../node_modules/@base-ui/react/esm/combobox/input/ComboboxInput.d.ts","../../../node_modules/@base-ui/react/esm/combobox/input-group/ComboboxInputGroup.d.ts","../../../node_modules/@base-ui/react/esm/combobox/icon/ComboboxIcon.d.ts","../../../node_modules/@base-ui/react/esm/combobox/clear/ComboboxClear.d.ts","../../../node_modules/@base-ui/react/esm/combobox/list/ComboboxList.d.ts","../../../node_modules/@base-ui/react/esm/combobox/status/ComboboxStatus.d.ts","../../../node_modules/@base-ui/react/esm/combobox/portal/ComboboxPortal.d.ts","../../../node_modules/@base-ui/react/esm/combobox/backdrop/ComboboxBackdrop.d.ts","../../../node_modules/@base-ui/react/esm/combobox/positioner/ComboboxPositioner.d.ts","../../../node_modules/@base-ui/react/esm/combobox/popup/ComboboxPopup.d.ts","../../../node_modules/@base-ui/react/esm/combobox/arrow/ComboboxArrow.d.ts","../../../node_modules/@base-ui/react/esm/combobox/group/ComboboxGroup.d.ts","../../../node_modules/@base-ui/react/esm/combobox/group-label/ComboboxGroupLabel.d.ts","../../../node_modules/@base-ui/react/esm/combobox/item/ComboboxItem.d.ts","../../../node_modules/@base-ui/react/esm/combobox/row/ComboboxRow.d.ts","../../../node_modules/@base-ui/react/esm/combobox/collection/ComboboxCollection.d.ts","../../../node_modules/@base-ui/react/esm/combobox/empty/ComboboxEmpty.d.ts","../../../node_modules/@base-ui/react/esm/separator/Separator.d.ts","../../../node_modules/@base-ui/react/esm/combobox/root/utils/useFilter.d.ts","../../../node_modules/@base-ui/react/esm/combobox/root/utils/useFilteredItems.d.ts","../../../node_modules/@base-ui/react/esm/autocomplete/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/autocomplete/index.d.ts","../../../node_modules/@base-ui/react/esm/avatar/root/AvatarRoot.d.ts","../../../node_modules/@base-ui/react/esm/avatar/image/useImageLoadingStatus.d.ts","../../../node_modules/@base-ui/react/esm/avatar/image/AvatarImage.d.ts","../../../node_modules/@base-ui/react/esm/avatar/fallback/AvatarFallback.d.ts","../../../node_modules/@base-ui/react/esm/avatar/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/avatar/index.d.ts","../../../node_modules/@base-ui/react/esm/button/Button.d.ts","../../../node_modules/@base-ui/react/esm/button/index.d.ts","../../../node_modules/@base-ui/react/esm/checkbox/root/CheckboxRoot.d.ts","../../../node_modules/@base-ui/react/esm/checkbox/indicator/CheckboxIndicator.d.ts","../../../node_modules/@base-ui/react/esm/checkbox/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/checkbox/index.d.ts","../../../node_modules/@base-ui/react/esm/checkbox-group/CheckboxGroup.d.ts","../../../node_modules/@base-ui/react/esm/checkbox-group/index.d.ts","../../../node_modules/@base-ui/react/esm/collapsible/trigger/CollapsibleTrigger.d.ts","../../../node_modules/@base-ui/react/esm/collapsible/panel/CollapsiblePanel.d.ts","../../../node_modules/@base-ui/react/esm/collapsible/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/collapsible/index.d.ts","../../../node_modules/@base-ui/react/esm/combobox/root/ComboboxRoot.d.ts","../../../node_modules/@base-ui/react/esm/combobox/label/ComboboxLabel.d.ts","../../../node_modules/@base-ui/react/esm/combobox/value/ComboboxValue.d.ts","../../../node_modules/@base-ui/react/esm/combobox/item-indicator/ComboboxItemIndicator.d.ts","../../../node_modules/@base-ui/react/esm/combobox/chips/ComboboxChips.d.ts","../../../node_modules/@base-ui/react/esm/combobox/chip/ComboboxChip.d.ts","../../../node_modules/@base-ui/react/esm/combobox/chip-remove/ComboboxChipRemove.d.ts","../../../node_modules/@base-ui/react/esm/separator/index.d.ts","../../../node_modules/@base-ui/react/esm/combobox/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/combobox/index.d.ts","../../../node_modules/@base-ui/react/esm/menu/arrow/MenuArrow.d.ts","../../../node_modules/@base-ui/react/esm/menu/backdrop/MenuBackdrop.d.ts","../../../node_modules/@base-ui/react/esm/menu/store/MenuStore.d.ts","../../../node_modules/@base-ui/react/esm/menu/root/MenuRootContext.d.ts","../../../node_modules/@base-ui/react/esm/menubar/MenubarContext.d.ts","../../../node_modules/@base-ui/react/esm/context-menu/root/ContextMenuRootContext.d.ts","../../../node_modules/@base-ui/react/esm/menu/store/MenuHandle.d.ts","../../../node_modules/@base-ui/react/esm/menu/root/MenuRoot.d.ts","../../../node_modules/@base-ui/react/esm/menu/checkbox-item/MenuCheckboxItem.d.ts","../../../node_modules/@base-ui/react/esm/menu/checkbox-item-indicator/MenuCheckboxItemIndicator.d.ts","../../../node_modules/@base-ui/react/esm/menu/group/MenuGroup.d.ts","../../../node_modules/@base-ui/react/esm/menu/group-label/MenuGroupLabel.d.ts","../../../node_modules/@base-ui/react/esm/menu/item/MenuItem.d.ts","../../../node_modules/@base-ui/react/esm/menu/link-item/MenuLinkItem.d.ts","../../../node_modules/@base-ui/react/esm/menu/popup/MenuPopup.d.ts","../../../node_modules/@base-ui/react/esm/menu/portal/MenuPortal.d.ts","../../../node_modules/@base-ui/react/esm/menu/positioner/MenuPositioner.d.ts","../../../node_modules/@base-ui/react/esm/menu/radio-group/MenuRadioGroup.d.ts","../../../node_modules/@base-ui/react/esm/menu/radio-item/MenuRadioItem.d.ts","../../../node_modules/@base-ui/react/esm/menu/radio-item-indicator/MenuRadioItemIndicator.d.ts","../../../node_modules/@base-ui/react/esm/menu/submenu-root/MenuSubmenuRootContext.d.ts","../../../node_modules/@base-ui/react/esm/menu/submenu-root/MenuSubmenuRoot.d.ts","../../../node_modules/@base-ui/react/esm/menu/trigger/MenuTrigger.d.ts","../../../node_modules/@base-ui/react/esm/menu/viewport/MenuViewport.d.ts","../../../node_modules/@base-ui/react/esm/menu/submenu-trigger/MenuSubmenuTrigger.d.ts","../../../node_modules/@base-ui/react/esm/menu/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/menu/index.d.ts","../../../node_modules/@base-ui/react/esm/context-menu/root/ContextMenuRoot.d.ts","../../../node_modules/@base-ui/react/esm/context-menu/trigger/ContextMenuTrigger.d.ts","../../../node_modules/@base-ui/react/esm/context-menu/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/context-menu/index.d.ts","../../../node_modules/@base-ui/react/esm/csp-provider/CSPProvider.d.ts","../../../node_modules/@base-ui/react/esm/csp-provider/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/csp-provider/index.d.ts","../../../node_modules/@base-ui/react/esm/dialog/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/dialog/index.d.ts","../../../node_modules/@base-ui/react/esm/direction-provider/DirectionContext.d.ts","../../../node_modules/@base-ui/react/esm/direction-provider/DirectionProvider.d.ts","../../../node_modules/@base-ui/react/esm/direction-provider/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/direction-provider/index.d.ts","../../../node_modules/@base-ui/react/esm/drawer/backdrop/DrawerBackdrop.d.ts","../../../node_modules/@base-ui/react/esm/drawer/close/DrawerClose.d.ts","../../../node_modules/@base-ui/react/esm/drawer/content/DrawerContent.d.ts","../../../node_modules/@base-ui/react/esm/drawer/description/DrawerDescription.d.ts","../../../node_modules/@base-ui/react/esm/drawer/indent/DrawerIndent.d.ts","../../../node_modules/@base-ui/react/esm/drawer/indent-background/DrawerIndentBackground.d.ts","../../../node_modules/@base-ui/react/esm/utils/useSwipeDismiss.d.ts","../../../node_modules/@base-ui/react/esm/drawer/root/DrawerRoot.d.ts","../../../node_modules/@base-ui/react/esm/drawer/root/DrawerRootContext.d.ts","../../../node_modules/@base-ui/react/esm/drawer/popup/DrawerPopup.d.ts","../../../node_modules/@base-ui/react/esm/drawer/portal/DrawerPortal.d.ts","../../../node_modules/@base-ui/react/esm/drawer/provider/DrawerProvider.d.ts","../../../node_modules/@base-ui/react/esm/drawer/swipe-area/DrawerSwipeArea.d.ts","../../../node_modules/@base-ui/react/esm/drawer/title/DrawerTitle.d.ts","../../../node_modules/@base-ui/react/esm/drawer/trigger/DrawerTrigger.d.ts","../../../node_modules/@base-ui/react/esm/drawer/viewport/DrawerViewport.d.ts","../../../node_modules/@base-ui/react/esm/drawer/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/drawer/index.d.ts","../../../node_modules/@base-ui/react/esm/field/label/FieldLabel.d.ts","../../../node_modules/@base-ui/react/esm/field/error/FieldError.d.ts","../../../node_modules/@base-ui/react/esm/field/description/FieldDescription.d.ts","../../../node_modules/@base-ui/react/esm/field/control/FieldControl.d.ts","../../../node_modules/@base-ui/react/esm/field/validity/FieldValidity.d.ts","../../../node_modules/@base-ui/react/esm/field/item/FieldItem.d.ts","../../../node_modules/@base-ui/react/esm/field/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/field/index.d.ts","../../../node_modules/@base-ui/react/esm/fieldset/root/FieldsetRoot.d.ts","../../../node_modules/@base-ui/react/esm/fieldset/legend/FieldsetLegend.d.ts","../../../node_modules/@base-ui/react/esm/fieldset/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/fieldset/index.d.ts","../../../node_modules/@base-ui/react/esm/input/Input.d.ts","../../../node_modules/@base-ui/react/esm/input/index.d.ts","../../../node_modules/@base-ui/react/esm/menubar/Menubar.d.ts","../../../node_modules/@base-ui/react/esm/menubar/index.d.ts","../../../node_modules/@base-ui/react/esm/merge-props/mergeProps.d.ts","../../../node_modules/@base-ui/react/esm/merge-props/index.d.ts","../../../node_modules/@base-ui/react/esm/meter/root/MeterRoot.d.ts","../../../node_modules/@base-ui/react/esm/meter/track/MeterTrack.d.ts","../../../node_modules/@base-ui/react/esm/meter/indicator/MeterIndicator.d.ts","../../../node_modules/@base-ui/react/esm/meter/value/MeterValue.d.ts","../../../node_modules/@base-ui/react/esm/meter/label/MeterLabel.d.ts","../../../node_modules/@base-ui/react/esm/meter/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/meter/index.d.ts","../../../node_modules/@base-ui/react/esm/navigation-menu/root/NavigationMenuRoot.d.ts","../../../node_modules/@base-ui/react/esm/navigation-menu/list/NavigationMenuList.d.ts","../../../node_modules/@base-ui/react/esm/navigation-menu/item/NavigationMenuItem.d.ts","../../../node_modules/@base-ui/react/esm/navigation-menu/content/NavigationMenuContent.d.ts","../../../node_modules/@base-ui/react/esm/navigation-menu/trigger/NavigationMenuTrigger.d.ts","../../../node_modules/@base-ui/react/esm/navigation-menu/portal/NavigationMenuPortal.d.ts","../../../node_modules/@base-ui/react/esm/navigation-menu/positioner/NavigationMenuPositioner.d.ts","../../../node_modules/@base-ui/react/esm/navigation-menu/viewport/NavigationMenuViewport.d.ts","../../../node_modules/@base-ui/react/esm/navigation-menu/backdrop/NavigationMenuBackdrop.d.ts","../../../node_modules/@base-ui/react/esm/navigation-menu/popup/NavigationMenuPopup.d.ts","../../../node_modules/@base-ui/react/esm/navigation-menu/arrow/NavigationMenuArrow.d.ts","../../../node_modules/@base-ui/react/esm/navigation-menu/link/NavigationMenuLink.d.ts","../../../node_modules/@base-ui/react/esm/navigation-menu/icon/NavigationMenuIcon.d.ts","../../../node_modules/@base-ui/react/esm/navigation-menu/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/navigation-menu/index.d.ts","../../../node_modules/@base-ui/react/esm/number-field/utils/types.d.ts","../../../node_modules/@base-ui/react/esm/number-field/root/NumberFieldRoot.d.ts","../../../node_modules/@base-ui/react/esm/number-field/group/NumberFieldGroup.d.ts","../../../node_modules/@base-ui/react/esm/number-field/increment/NumberFieldIncrement.d.ts","../../../node_modules/@base-ui/react/esm/number-field/decrement/NumberFieldDecrement.d.ts","../../../node_modules/@base-ui/react/esm/number-field/input/NumberFieldInput.d.ts","../../../node_modules/@base-ui/react/esm/number-field/scrub-area/NumberFieldScrubArea.d.ts","../../../node_modules/@base-ui/react/esm/number-field/scrub-area-cursor/NumberFieldScrubAreaCursor.d.ts","../../../node_modules/@base-ui/react/esm/number-field/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/number-field/index.d.ts","../../../node_modules/@base-ui/utils/esm/useTimeout.d.ts","../../../node_modules/@base-ui/react/esm/popover/store/PopoverStore.d.ts","../../../node_modules/@base-ui/react/esm/popover/store/PopoverHandle.d.ts","../../../node_modules/@base-ui/react/esm/popover/root/PopoverRoot.d.ts","../../../node_modules/@base-ui/react/esm/popover/trigger/PopoverTrigger.d.ts","../../../node_modules/@base-ui/react/esm/popover/portal/PopoverPortal.d.ts","../../../node_modules/@base-ui/react/esm/popover/positioner/PopoverPositioner.d.ts","../../../node_modules/@base-ui/react/esm/popover/popup/PopoverPopup.d.ts","../../../node_modules/@base-ui/react/esm/popover/arrow/PopoverArrow.d.ts","../../../node_modules/@base-ui/react/esm/popover/backdrop/PopoverBackdrop.d.ts","../../../node_modules/@base-ui/react/esm/popover/title/PopoverTitle.d.ts","../../../node_modules/@base-ui/react/esm/popover/description/PopoverDescription.d.ts","../../../node_modules/@base-ui/react/esm/popover/close/PopoverClose.d.ts","../../../node_modules/@base-ui/react/esm/popover/viewport/PopoverViewport.d.ts","../../../node_modules/@base-ui/react/esm/popover/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/popover/index.d.ts","../../../node_modules/@base-ui/react/esm/preview-card/store/PreviewCardStore.d.ts","../../../node_modules/@base-ui/react/esm/preview-card/store/PreviewCardHandle.d.ts","../../../node_modules/@base-ui/react/esm/preview-card/root/PreviewCardRoot.d.ts","../../../node_modules/@base-ui/react/esm/utils/FloatingPortalLite.d.ts","../../../node_modules/@base-ui/react/esm/preview-card/portal/PreviewCardPortal.d.ts","../../../node_modules/@base-ui/react/esm/preview-card/trigger/PreviewCardTrigger.d.ts","../../../node_modules/@base-ui/react/esm/preview-card/positioner/PreviewCardPositioner.d.ts","../../../node_modules/@base-ui/react/esm/preview-card/popup/PreviewCardPopup.d.ts","../../../node_modules/@base-ui/react/esm/preview-card/arrow/PreviewCardArrow.d.ts","../../../node_modules/@base-ui/react/esm/preview-card/backdrop/PreviewCardBackdrop.d.ts","../../../node_modules/@base-ui/react/esm/preview-card/viewport/PreviewCardViewport.d.ts","../../../node_modules/@base-ui/react/esm/preview-card/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/preview-card/index.d.ts","../../../node_modules/@base-ui/react/esm/progress/root/ProgressRoot.d.ts","../../../node_modules/@base-ui/react/esm/progress/track/ProgressTrack.d.ts","../../../node_modules/@base-ui/react/esm/progress/indicator/ProgressIndicator.d.ts","../../../node_modules/@base-ui/react/esm/progress/value/ProgressValue.d.ts","../../../node_modules/@base-ui/react/esm/progress/label/ProgressLabel.d.ts","../../../node_modules/@base-ui/react/esm/progress/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/progress/index.d.ts","../../../node_modules/@base-ui/react/esm/radio/root/RadioRoot.d.ts","../../../node_modules/@base-ui/react/esm/radio/indicator/RadioIndicator.d.ts","../../../node_modules/@base-ui/react/esm/radio/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/radio/index.d.ts","../../../node_modules/@base-ui/react/esm/radio-group/RadioGroup.d.ts","../../../node_modules/@base-ui/react/esm/radio-group/index.d.ts","../../../node_modules/@base-ui/react/esm/scroll-area/root/ScrollAreaRoot.d.ts","../../../node_modules/@base-ui/react/esm/scroll-area/viewport/ScrollAreaViewport.d.ts","../../../node_modules/@base-ui/react/esm/scroll-area/scrollbar/ScrollAreaScrollbar.d.ts","../../../node_modules/@base-ui/react/esm/scroll-area/content/ScrollAreaContent.d.ts","../../../node_modules/@base-ui/react/esm/scroll-area/thumb/ScrollAreaThumb.d.ts","../../../node_modules/@base-ui/react/esm/scroll-area/corner/ScrollAreaCorner.d.ts","../../../node_modules/@base-ui/react/esm/scroll-area/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/scroll-area/index.d.ts","../../../node_modules/@base-ui/react/esm/select/root/SelectRoot.d.ts","../../../node_modules/@base-ui/react/esm/select/label/SelectLabel.d.ts","../../../node_modules/@base-ui/react/esm/select/trigger/SelectTrigger.d.ts","../../../node_modules/@base-ui/react/esm/select/value/SelectValue.d.ts","../../../node_modules/@base-ui/react/esm/select/icon/SelectIcon.d.ts","../../../node_modules/@base-ui/react/esm/select/portal/SelectPortal.d.ts","../../../node_modules/@base-ui/react/esm/select/backdrop/SelectBackdrop.d.ts","../../../node_modules/@base-ui/react/esm/select/positioner/SelectPositioner.d.ts","../../../node_modules/@base-ui/react/esm/select/popup/SelectPopup.d.ts","../../../node_modules/@base-ui/react/esm/select/list/SelectList.d.ts","../../../node_modules/@base-ui/react/esm/select/item/SelectItem.d.ts","../../../node_modules/@base-ui/react/esm/select/item-indicator/SelectItemIndicator.d.ts","../../../node_modules/@base-ui/react/esm/select/item-text/SelectItemText.d.ts","../../../node_modules/@base-ui/react/esm/select/arrow/SelectArrow.d.ts","../../../node_modules/@base-ui/react/esm/select/scroll-down-arrow/SelectScrollDownArrow.d.ts","../../../node_modules/@base-ui/react/esm/select/scroll-up-arrow/SelectScrollUpArrow.d.ts","../../../node_modules/@base-ui/react/esm/select/group/SelectGroup.d.ts","../../../node_modules/@base-ui/react/esm/select/group-label/SelectGroupLabel.d.ts","../../../node_modules/@base-ui/react/esm/select/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/select/index.d.ts","../../../node_modules/@base-ui/react/esm/slider/root/SliderRoot.d.ts","../../../node_modules/@base-ui/react/esm/slider/label/SliderLabel.d.ts","../../../node_modules/@base-ui/react/esm/slider/value/SliderValue.d.ts","../../../node_modules/@base-ui/react/esm/slider/control/SliderControl.d.ts","../../../node_modules/@base-ui/react/esm/slider/track/SliderTrack.d.ts","../../../node_modules/@base-ui/react/esm/labelable-provider/LabelableContext.d.ts","../../../node_modules/@base-ui/react/esm/slider/thumb/SliderThumb.d.ts","../../../node_modules/@base-ui/react/esm/slider/indicator/SliderIndicator.d.ts","../../../node_modules/@base-ui/react/esm/slider/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/slider/index.d.ts","../../../node_modules/@base-ui/react/esm/switch/root/SwitchRoot.d.ts","../../../node_modules/@base-ui/react/esm/switch/thumb/SwitchThumb.d.ts","../../../node_modules/@base-ui/react/esm/switch/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/switch/index.d.ts","../../../node_modules/@base-ui/react/esm/tabs/tab/TabsTab.d.ts","../../../node_modules/@base-ui/react/esm/tabs/root/TabsRoot.d.ts","../../../node_modules/@base-ui/react/esm/tabs/indicator/TabsIndicator.d.ts","../../../node_modules/@base-ui/react/esm/tabs/panel/TabsPanel.d.ts","../../../node_modules/@base-ui/react/esm/tabs/list/TabsList.d.ts","../../../node_modules/@base-ui/react/esm/tabs/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/tabs/index.d.ts","../../../node_modules/@base-ui/react/esm/toast/positioner/ToastPositioner.d.ts","../../../node_modules/@base-ui/react/esm/toast/useToastManager.d.ts","../../../node_modules/@base-ui/react/esm/toast/createToastManager.d.ts","../../../node_modules/@base-ui/react/esm/toast/provider/ToastProvider.d.ts","../../../node_modules/@base-ui/react/esm/toast/viewport/ToastViewport.d.ts","../../../node_modules/@base-ui/react/esm/toast/root/ToastRoot.d.ts","../../../node_modules/@base-ui/react/esm/toast/content/ToastContent.d.ts","../../../node_modules/@base-ui/react/esm/toast/description/ToastDescription.d.ts","../../../node_modules/@base-ui/react/esm/toast/title/ToastTitle.d.ts","../../../node_modules/@base-ui/react/esm/toast/close/ToastClose.d.ts","../../../node_modules/@base-ui/react/esm/toast/action/ToastAction.d.ts","../../../node_modules/@base-ui/react/esm/toast/portal/ToastPortal.d.ts","../../../node_modules/@base-ui/react/esm/toast/arrow/ToastArrow.d.ts","../../../node_modules/@base-ui/react/esm/toast/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/toast/index.d.ts","../../../node_modules/@base-ui/react/esm/toggle/Toggle.d.ts","../../../node_modules/@base-ui/react/esm/toggle/index.d.ts","../../../node_modules/@base-ui/react/esm/toggle-group/ToggleGroup.d.ts","../../../node_modules/@base-ui/react/esm/toggle-group/index.d.ts","../../../node_modules/@base-ui/react/esm/toolbar/separator/ToolbarSeparator.d.ts","../../../node_modules/@base-ui/react/esm/toolbar/root/ToolbarRoot.d.ts","../../../node_modules/@base-ui/react/esm/toolbar/group/ToolbarGroup.d.ts","../../../node_modules/@base-ui/react/esm/toolbar/button/ToolbarButton.d.ts","../../../node_modules/@base-ui/react/esm/toolbar/link/ToolbarLink.d.ts","../../../node_modules/@base-ui/react/esm/toolbar/input/ToolbarInput.d.ts","../../../node_modules/@base-ui/react/esm/toolbar/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/toolbar/index.d.ts","../../../node_modules/@base-ui/react/esm/tooltip/store/TooltipStore.d.ts","../../../node_modules/@base-ui/react/esm/tooltip/store/TooltipHandle.d.ts","../../../node_modules/@base-ui/react/esm/tooltip/root/TooltipRoot.d.ts","../../../node_modules/@base-ui/react/esm/tooltip/trigger/TooltipTrigger.d.ts","../../../node_modules/@base-ui/react/esm/tooltip/portal/TooltipPortal.d.ts","../../../node_modules/@base-ui/react/esm/tooltip/positioner/TooltipPositioner.d.ts","../../../node_modules/@base-ui/react/esm/tooltip/popup/TooltipPopup.d.ts","../../../node_modules/@base-ui/react/esm/tooltip/arrow/TooltipArrow.d.ts","../../../node_modules/@base-ui/react/esm/tooltip/provider/TooltipProvider.d.ts","../../../node_modules/@base-ui/react/esm/tooltip/viewport/TooltipViewport.d.ts","../../../node_modules/@base-ui/react/esm/tooltip/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/tooltip/index.d.ts","../../../node_modules/@base-ui/react/esm/use-render/useRender.d.ts","../../../node_modules/@base-ui/react/esm/use-render/index.d.ts","../../../node_modules/@base-ui/react/esm/index.d.ts","../../../packages/ui/src/combobox.tsx","../../../node_modules/cmdk/dist/index.d.ts","../../../packages/ui/src/command.tsx","../../../packages/ui/src/context-menu.tsx","../../../packages/ui/src/dialog.tsx","../../../node_modules/vaul/dist/index.d.mts","../../../packages/ui/src/drawer.tsx","../../../packages/ui/src/dropdown-menu.tsx","../../../packages/ui/src/empty.tsx","../../../packages/ui/src/field.tsx","../../../node_modules/@radix-ui/react-label/dist/index.d.mts","../../../node_modules/react-hook-form/dist/constants.d.ts","../../../node_modules/react-hook-form/dist/utils/createSubject.d.ts","../../../node_modules/react-hook-form/dist/types/events.d.ts","../../../node_modules/react-hook-form/dist/types/path/common.d.ts","../../../node_modules/react-hook-form/dist/types/path/eager.d.ts","../../../node_modules/react-hook-form/dist/types/path/index.d.ts","../../../node_modules/react-hook-form/dist/types/fieldArray.d.ts","../../../node_modules/react-hook-form/dist/types/resolvers.d.ts","../../../node_modules/react-hook-form/dist/types/form.d.ts","../../../node_modules/react-hook-form/dist/types/utils.d.ts","../../../node_modules/react-hook-form/dist/types/fields.d.ts","../../../node_modules/react-hook-form/dist/types/errors.d.ts","../../../node_modules/react-hook-form/dist/types/validator.d.ts","../../../node_modules/react-hook-form/dist/types/controller.d.ts","../../../node_modules/react-hook-form/dist/types/watch.d.ts","../../../node_modules/react-hook-form/dist/types/index.d.ts","../../../node_modules/react-hook-form/dist/controller.d.ts","../../../node_modules/react-hook-form/dist/form.d.ts","../../../node_modules/react-hook-form/dist/formStateSubscribe.d.ts","../../../node_modules/react-hook-form/dist/logic/appendErrors.d.ts","../../../node_modules/react-hook-form/dist/logic/createFormControl.d.ts","../../../node_modules/react-hook-form/dist/logic/index.d.ts","../../../node_modules/react-hook-form/dist/useController.d.ts","../../../node_modules/react-hook-form/dist/useFieldArray.d.ts","../../../node_modules/react-hook-form/dist/useForm.d.ts","../../../node_modules/react-hook-form/dist/useFormContext.d.ts","../../../node_modules/react-hook-form/dist/useFormState.d.ts","../../../node_modules/react-hook-form/dist/useWatch.d.ts","../../../node_modules/react-hook-form/dist/utils/get.d.ts","../../../node_modules/react-hook-form/dist/utils/set.d.ts","../../../node_modules/react-hook-form/dist/utils/index.d.ts","../../../node_modules/react-hook-form/dist/watch.d.ts","../../../node_modules/react-hook-form/dist/index.d.ts","../../../node_modules/@radix-ui/react-slot/dist/index.d.mts","../../../packages/ui/src/form.tsx","../../../packages/ui/src/hover-card.tsx","../../../node_modules/react-image-crop/dist/index.d.ts","../../../packages/ui/src/image-crop.tsx","../../../packages/ui/src/input.tsx","../../../packages/ui/src/input-group.tsx","../../../node_modules/input-otp/dist/index.d.ts","../../../packages/ui/src/input-otp.tsx","../../../packages/ui/src/item.tsx","../../../packages/ui/src/kbd.tsx","../../../packages/ui/src/label.tsx","../../../packages/ui/src/native-select.tsx","../../../packages/ui/src/navigation-menu.tsx","../../../packages/ui/src/pagination.tsx","../../../packages/ui/src/popover.tsx","../../../packages/ui/src/progress.tsx","../../../packages/ui/src/radio-group.tsx","../../../node_modules/react-resizable-panels/dist/react-resizable-panels.d.ts","../../../packages/ui/src/resizable.tsx","../../../packages/ui/src/scroll-area.tsx","../../../packages/ui/src/select.tsx","../../../node_modules/@radix-ui/react-separator/dist/index.d.mts","../../../packages/ui/src/separator.tsx","../../../packages/ui/src/sheet.tsx","../../../packages/ui/src/sidebar.tsx","../../../packages/ui/src/skeleton.tsx","../../../packages/ui/src/slider.tsx","../../../packages/ui/src/spinner.tsx","../../../packages/ui/src/status-message.tsx","../../../packages/ui/src/submit-button.tsx","../../../packages/ui/src/switch.tsx","../../../packages/ui/src/table.tsx","../../../packages/ui/src/tabs.tsx","../../../packages/ui/src/textarea.tsx","../../../node_modules/next-themes/dist/index.d.ts","../../../packages/ui/src/theme.tsx","../../../node_modules/sonner/dist/index.d.mts","../../../packages/ui/src/sonner.tsx","../../../packages/ui/src/toggle.tsx","../../../packages/ui/src/toggle-group.tsx","../../../packages/ui/src/tooltip.tsx","../../../packages/ui/src/hooks/use-mobile.ts","../../../packages/ui/src/hooks/use-on-click-outside.tsx","../../../packages/ui/src/hooks/index.tsx","../../../packages/ui/src/index.tsx","../src/components/layout/header/navigation.tsx","../../../node_modules/@convex-dev/auth/dist/react/index.d.ts","../src/components/layout/header/controls/AvatarDropdown.tsx","../src/components/layout/header/controls/index.tsx","../src/components/layout/header/index.tsx","../../../node_modules/@convex-dev/auth/dist/nextjs/index.d.ts","../src/components/providers/ConvexClientProvider.tsx","../src/components/providers/index.tsx","../src/lib/metadata.ts","../src/app/global-error.tsx","../src/app/layout.tsx","../src/components/landing/hero.tsx","../src/components/landing/features.tsx","../src/components/landing/tech-stack.tsx","../src/components/landing/cta.tsx","../src/components/landing/index.tsx","../src/app/page.tsx","../src/app/(auth)/forgot-password/layout.tsx","../../../node_modules/zod/v3/helpers/typeAliases.d.cts","../../../node_modules/zod/v3/helpers/util.d.cts","../../../node_modules/zod/v3/ZodError.d.cts","../../../node_modules/zod/v3/locales/en.d.cts","../../../node_modules/zod/v3/errors.d.cts","../../../node_modules/zod/v3/helpers/parseUtil.d.cts","../../../node_modules/zod/v3/helpers/enumUtil.d.cts","../../../node_modules/zod/v3/helpers/errorUtil.d.cts","../../../node_modules/zod/v3/helpers/partialUtil.d.cts","../../../node_modules/zod/v3/standard-schema.d.cts","../../../node_modules/zod/v3/types.d.cts","../../../node_modules/zod/v3/external.d.cts","../../../node_modules/zod/v3/index.d.cts","../../../node_modules/@hookform/resolvers/zod/dist/zod.d.ts","../../../node_modules/@hookform/resolvers/zod/dist/index.d.ts","../../../packages/backend/types/auth.ts","../../../packages/backend/types/index.ts","../src/app/(auth)/forgot-password/page.tsx","../src/app/(auth)/profile/layout.tsx","../src/components/layout/auth/profile/avatar-upload.tsx","../src/components/layout/auth/profile/header.tsx","../src/components/layout/auth/profile/reset-password.tsx","../src/components/layout/auth/profile/sign-out.tsx","../src/components/layout/auth/profile/user-info.tsx","../src/components/layout/auth/profile/index.tsx","../../../node_modules/convex/dist/esm-types/nextjs/index.d.ts","../src/app/(auth)/profile/page.tsx","../src/app/(auth)/sign-in/layout.tsx","../src/components/layout/auth/buttons/gibs-auth.tsx","../src/components/layout/auth/buttons/index.tsx","../src/app/(auth)/sign-in/page.tsx","../src/lib/proxy/ban-sus-ips.ts","../../../node_modules/vitest/dist/chunks/global.d.DVsSRdQ5.d.ts","../../../node_modules/vitest/optional-runtime-types.d.ts","../../../node_modules/vitest/dist/chunks/suite.d.udJtyAgw.d.ts","../../../node_modules/vitest/dist/chunks/evaluatedModules.d.BxJ5omdx.d.ts","../../../node_modules/vitest/dist/runners.d.ts","../../../node_modules/expect-type/dist/utils.d.ts","../../../node_modules/expect-type/dist/overloads.d.ts","../../../node_modules/expect-type/dist/branding.d.ts","../../../node_modules/expect-type/dist/messages.d.ts","../../../node_modules/expect-type/dist/index.d.ts","../../../node_modules/vitest/dist/index.d.ts","../../../node_modules/@types/aria-query/index.d.ts","../../../node_modules/@testing-library/jest-dom/types/matchers.d.ts","../../../node_modules/@testing-library/jest-dom/types/vitest.d.ts","../tests/jest-dom.d.ts","../../../node_modules/@testing-library/dom/types/matches.d.ts","../../../node_modules/@testing-library/dom/types/wait-for.d.ts","../../../node_modules/@testing-library/dom/types/query-helpers.d.ts","../../../node_modules/@testing-library/dom/types/queries.d.ts","../../../node_modules/@testing-library/dom/types/get-queries-for-element.d.ts","../../../node_modules/@testing-library/dom/node_modules/pretty-format/build/types.d.ts","../../../node_modules/@testing-library/dom/node_modules/pretty-format/build/index.d.ts","../../../node_modules/@testing-library/dom/types/screen.d.ts","../../../node_modules/@testing-library/dom/types/wait-for-element-to-be-removed.d.ts","../../../node_modules/@testing-library/dom/types/get-node-text.d.ts","../../../node_modules/@testing-library/dom/types/events.d.ts","../../../node_modules/@testing-library/dom/types/pretty-dom.d.ts","../../../node_modules/@testing-library/dom/types/role-helpers.d.ts","../../../node_modules/@testing-library/dom/types/config.d.ts","../../../node_modules/@testing-library/dom/types/suggestions.d.ts","../../../node_modules/@testing-library/dom/types/index.d.ts","../../../node_modules/@types/react-dom/test-utils/index.d.ts","../../../node_modules/@testing-library/react/types/index.d.ts","../tests/component/render.test.tsx","../tests/integration/smoke.test.ts","../tests/unit/environment.test.ts"],"fileIdsList":[[66,327,329,335,348,411,419,423,426,428,429,430,443],[348,411,419,423,426,428,429,430,443,805,806],[348,411,419,423,426,428,429,430,443,805,1534,1536,1541],[348,411,419,423,426,428,429,430,443,1543],[348,411,419,423,426,428,429,430,443,805],[339,348,411,419,423,426,428,429,430,443,794,2222,3505,3543,3551,3553,3584,3586],[348,411,419,423,426,428,429,430,443,794,805,2238],[348,411,419,423,426,428,429,430,443,2350,3551,3594,3595],[339,348,411,419,423,426,428,429,430,443,784,794,2222,2252,3505,3543,3551,3553,3584,3586,3599],[339,348,411,419,423,426,428,429,430,443,772,802,805,1534,1541,2233,2242,2243,3551,3556,3559,3560],[348,411,419,423,426,428,429,430,443,802,805,1541,2233,2238,2242,2243,3551,3556,3559,3560],[348,411,419,423,426,428,429,430,443,3567],[348,411,419,423,426,428,429,430,443],[348,411,419,423,426,428,429,430,443,3551],[348,411,419,423,426,428,429,430,443,782,784,2242,3551],[348,411,419,423,426,428,429,430,443,3563,3564,3565,3566],[339,348,411,419,423,426,428,429,430,443,782,2353,3551,3553],[348,411,419,423,426,428,429,430,443,3598],[339,348,411,419,423,426,428,429,430,443,2297,2298,2330,2350,3543,3551],[348,411,419,423,426,428,429,430,443,3589,3590,3591,3592,3593],[339,348,411,419,423,426,428,429,430,443,2222,2297,2350,3505,3543,3551,3584,3586],[339,348,411,419,423,426,428,429,430,443,794,2298,3551,3553],[339,348,411,419,423,426,428,429,430,443,2222,2297,2350,3505,3543,3551,3584],[348,411,419,423,426,428,429,430,443,784,2242],[348,411,419,423,426,428,429,430,443,784,794,2297,2330,2350,3551,3553],[348,411,419,423,426,428,429,430,443,3551,3554],[339,348,411,419,423,426,428,429,430,443,782,784,2242,2297,2298,2350,3552,3555],[348,411,419,423,426,428,429,430,443,784,2298,3551],[339,348,411,419,423,426,428,429,430,443,2233,2297,3557],[348,411,419,423,426,428,429,430,443,3558],[348,411,419,423,426,428,429,430,443,2230,2232],[348,411,419,423,426,428,429,430,443,1534,2233],[348,411,419,423,426,428,429,430,443,805,1534,2235],[348,411,419,423,426,428,429,430,443,805,1534],[348,411,419,423,426,428,429,430,443,801],[348,411,419,423,426,428,429,430,443,2238],[348,411,419,423,426,428,429,430,443,3612,3615,3634],[348,411,419,423,426,428,429,430,443,3612,3615],[348,411,419,423,426,428,429,430,443,3615],[348,411,419,423,426,428,429,430,443,2138,2226],[348,411,419,423,426,428,429,430,443,2312,2320],[348,411,419,423,426,428,429,430,443,2302,2303,2304,2305,2306,2307,2309,2312,2320],[348,411,419,423,426,428,429,430,443,2309,2312],[348,411,419,423,426,428,429,430,443,2302],[348,411,419,423,426,428,429,430,443,2312],[348,411,419,423,426,428,429,430,443,2308,2312],[348,411,419,423,426,428,429,430,443,2308],[348,411,419,423,426,428,429,430,443,2301,2305,2310,2312],[348,411,419,423,426,428,429,430,443,2320],[348,411,419,423,426,428,429,430,443,2312,2314,2320],[348,411,419,423,426,428,429,430,443,2312,2316,2320],[348,411,419,423,426,428,429,430,443,2310,2312,2315,2317,2319],[348,411,419,423,426,428,429,430,443,2312,2317],[348,411,419,423,426,428,429,430,443,2300,2302,2308,2312,2318,2320],[348,411,419,423,426,428,429,430,443,2299,2300,2301,2308,2309,2311,2320],[339,348,411,419,423,426,428,429,430,443,3091,3096],[348,411,419,423,426,428,429,430,443,3092,3096,3097,3098,3099,3100],[348,411,419,423,426,428,429,430,443,3092,3096,3097,3098,3099],[339,348,411,419,423,426,428,429,430,443,3088,3089,3091,3092,3095],[339,348,411,419,423,426,428,429,430,443,3091,3092,3093,3096],[339,348,411,419,423,426,428,429,430,443,3088,3089,3091],[348,411,419,423,426,428,429,430,443,3148],[348,411,419,423,426,428,429,430,443,3149,3159],[348,411,419,423,426,428,429,430,443,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158],[339,348,411,419,423,426,428,429,430,443,503,3089,3146,3148],[348,411,419,423,426,428,429,430,443,3163,3164,3170,3171,3172,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3186,3187,3189,3191],[348,411,419,423,426,428,429,430,443,3163,3164,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190],[339,348,411,419,423,426,428,429,430,443,3162],[339,348,411,419,423,426,428,429,430,443],[339,348,411,419,423,426,428,429,430,443,3091,3193],[339,348,411,419,423,426,428,429,430,443,3091,3093,3193,3194],[348,411,419,423,426,428,429,430,443,3193,3195,3196,3197],[348,411,419,423,426,428,429,430,443,3193,3195,3196],[339,348,411,419,423,426,428,429,430,443,3091],[348,411,419,423,426,428,429,430,443,3199],[339,348,411,419,423,426,428,429,430,443,3088,3089,3091,3168],[348,411,419,423,426,428,429,430,443,3205],[348,411,419,423,426,428,429,430,443,3201,3202,3203],[348,411,419,423,426,428,429,430,443,3201,3202],[339,348,411,419,423,426,428,429,430,443,3091,3093,3201],[348,411,419,423,426,428,429,430,443,3094,3207,3208,3209],[348,411,419,423,426,428,429,430,443,3094,3207,3208],[339,348,411,419,423,426,428,429,430,443,3091,3093,3094],[339,348,411,419,423,426,428,429,430,443,3088,3089,3091,3095],[339,348,411,419,423,426,428,429,430,443,3093,3094],[339,348,411,419,423,426,428,429,430,443,3091,3094],[339,348,411,419,423,426,428,429,430,443,3091,3169],[339,348,411,419,423,426,428,429,430,443,3091,3093],[348,411,419,423,426,428,429,430,443,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3189,3211,3212,3213,3214,3215,3216,3217,3219],[348,411,419,423,426,428,429,430,443,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3189,3190,3211,3212,3213,3214,3215,3216,3217,3218],[339,348,411,419,423,426,428,429,430,443,3091,3168,3169],[339,348,411,419,423,426,428,429,430,443,3091,3168],[339,348,411,419,423,426,428,429,430,443,3091,3093,3109,3169],[339,348,411,419,423,426,428,429,430,443,3141],[339,348,411,419,423,426,428,429,430,443,3088,3089,3161],[348,411,419,423,426,428,429,430,443,3221,3222,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3242,3245,3248,3249,3250],[348,411,419,423,426,428,429,430,443,3188,3221,3222,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3242,3245,3248,3249],[348,411,419,423,426,428,429,430,443,503,3090,3228,3247],[339,348,411,419,423,426,428,429,430,443,3248],[339,348,411,419,423,426,428,429,430,443,503],[348,411,419,423,426,428,429,430,443,3252,3253],[348,411,419,423,426,428,429,430,443,3252],[348,411,419,423,426,428,429,430,443,3146,3150,3151,3152,3153,3154,3155,3156,3157,3255],[348,411,419,423,426,428,429,430,443,3146,3148,3150,3151,3152,3153,3154,3155,3156,3157],[339,348,411,419,423,426,428,429,430,443,3091,3093,3109],[339,348,411,419,423,426,428,429,430,443,503,3088,3089,3145,3148],[348,411,419,423,426,428,429,430,443,3147],[339,348,411,419,423,426,428,429,430,443,3093,3108,3109,3118,3141,3145,3146,3461],[339,348,411,419,423,426,428,429,430,443,3091,3148],[339,348,411,419,423,426,428,429,430,443,3257],[348,411,419,423,426,428,429,430,443,3258,3259],[348,411,419,423,426,428,429,430,443,3257,3258],[348,411,419,423,426,428,429,430,443,3261,3262,3263,3264,3265,3266,3268,3270,3271,3272,3273,3274,3275,3276,3277],[348,411,419,423,426,428,429,430,443,3148,3261,3262,3263,3264,3265,3266,3268,3270,3271,3272,3273,3274,3275,3276],[339,348,411,419,423,426,428,429,430,443,3091,3093,3109,3269],[339,348,411,419,423,426,428,429,430,443,503,3088,3089,3145,3148,3269],[339,348,411,419,423,426,428,429,430,443,3267,3268],[339,348,411,419,423,426,428,429,430,443,3091,3267,3269],[339,348,411,419,423,426,428,429,430,443,3091,3093,3168],[348,411,419,423,426,428,429,430,443,3168,3279,3280,3281,3282,3283,3284,3285],[348,411,419,423,426,428,429,430,443,3168,3279,3280,3281,3282,3283,3284],[339,348,411,419,423,426,428,429,430,443,3091,3167],[339,348,411,419,423,426,428,429,430,443,3093,3168],[348,411,419,423,426,428,429,430,443,3287,3288,3289],[348,411,419,423,426,428,429,430,443,3287,3288],[339,348,411,419,423,426,428,429,430,443,3136],[339,348,411,419,423,426,428,429,430,443,3109,3117,3136],[339,348,411,419,423,426,428,429,430,443,3091,3121],[339,348,411,419,423,426,428,429,430,443,3089,3108,3136,3145],[339,348,411,419,423,426,428,429,430,443,3117,3136],[348,411,419,423,426,428,429,430,443,3136],[348,411,419,423,426,428,429,430,443,3088,3136],[348,411,419,423,426,428,429,430,443,3117,3136],[348,411,419,423,426,428,429,430,443,3089,3118,3136],[348,411,419,423,426,428,429,430,443,3126,3136],[339,348,411,419,423,426,428,429,430,443,3091,3117,3126,3136],[339,348,411,419,423,426,428,429,430,443,3115,3136],[348,411,419,423,426,428,429,430,443,3090,3108,3118,3145],[348,411,419,423,426,428,429,430,443,3114,3116,3117,3119,3122,3123,3124,3125,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3137,3138,3139,3140],[348,411,419,423,426,428,429,430,443,3126],[339,348,411,419,423,426,428,429,430,443,3089,3114,3116,3117,3118,3119,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3137,3141],[339,348,411,419,423,426,428,429,430,443,3088,3089,3091,3165],[339,348,411,419,423,426,428,429,430,443,3166,3168],[348,411,419,423,426,428,429,430,443,3166],[348,411,419,423,426,428,429,430,443,3090,3101,3160,3167,3192,3198,3200,3204,3206,3210,3218,3220,3247,3251,3254,3256,3260,3278,3286,3290,3292,3294,3296,3303,3318,3328,3344,3357,3364,3368,3370,3378,3398,3408,3412,3419,3434,3436,3438,3446,3458,3460],[339,348,411,419,423,426,428,429,430,443,3091,3286],[348,411,419,423,426,428,429,430,443,3291],[339,348,411,419,423,426,428,429,430,443,3091,3228],[348,411,419,423,426,428,429,430,443,3221,3222,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3242,3243,3244,3245,3246],[348,411,419,423,426,428,429,430,443,3188,3221,3222,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3242,3243,3244,3245],[339,348,411,419,423,426,428,429,430,443,503,3088,3089,3145,3223,3224,3225,3226,3227],[339,348,411,419,423,426,428,429,430,443,3223,3228],[348,411,419,423,426,428,429,430,443,3223],[339,348,411,419,423,426,428,429,430,443,3091,3093,3108,3117,3118,3141,3145,3228,3247],[348,411,419,423,426,428,429,430,443,503,3228,3241],[339,348,411,419,423,426,428,429,430,443,3223],[339,348,411,419,423,426,428,429,430,443,3091,3227],[339,348,411,419,423,426,428,429,430,443,3228],[348,411,419,423,426,428,429,430,443,3293],[348,411,419,423,426,428,429,430,443,3295],[348,411,419,423,426,428,429,430,443,3297,3298,3299,3300,3301,3302],[348,411,419,423,426,428,429,430,443,3297,3298,3299,3300,3301],[339,348,411,419,423,426,428,429,430,443,3091,3297],[348,411,419,423,426,428,429,430,443,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317],[348,411,419,423,426,428,429,430,443,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316],[339,348,411,419,423,426,428,429,430,443,3091,3093,3169],[339,348,411,419,423,426,428,429,430,443,3091,3320],[348,411,419,423,426,428,429,430,443,3320,3321,3322,3323,3324,3325,3326,3327],[348,411,419,423,426,428,429,430,443,3320,3321,3322,3323,3324,3325,3326],[339,348,411,419,423,426,428,429,430,443,3088,3089,3091,3168,3319],[348,411,419,423,426,428,429,430,443,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343],[348,411,419,423,426,428,429,430,443,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342],[339,348,411,419,423,426,428,429,430,443,503,3088,3089,3145,3331],[348,411,419,423,426,428,429,430,443,3330],[339,348,411,419,423,426,428,429,430,443,3093,3108,3109,3118,3141,3145,3329,3332,3344,3461],[339,348,411,419,423,426,428,429,430,443,3091,3331],[348,411,419,423,426,428,429,430,443,3347,3349,3350,3351,3352,3353,3354,3356],[348,411,419,423,426,428,429,430,443,3346,3347,3349,3350,3351,3352,3353,3354,3355],[339,348,411,419,423,426,428,429,430,443,3348],[339,348,411,419,423,426,428,429,430,443,503,3088,3089,3145,3346],[348,411,419,423,426,428,429,430,443,3345],[339,348,411,419,423,426,428,429,430,443,3093,3108,3118,3141,3145,3347,3461],[339,348,411,419,423,426,428,429,430,443,3091,3346],[348,411,419,423,426,428,429,430,443,3358,3359,3360,3361,3362,3363],[348,411,419,423,426,428,429,430,443,3358,3359,3360,3361,3362],[339,348,411,419,423,426,428,429,430,443,3091,3358],[348,411,419,423,426,428,429,430,443,3369],[348,411,419,423,426,428,429,430,443,3365,3366,3367],[348,411,419,423,426,428,429,430,443,3365,3366],[339,348,411,419,423,426,428,429,430,443,3091,3371],[348,411,419,423,426,428,429,430,443,3371,3372,3373,3374,3375,3376,3377],[348,411,419,423,426,428,429,430,443,3371,3372,3373,3374,3375,3376],[348,411,419,423,426,428,429,430,443,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397],[348,411,419,423,426,428,429,430,443,3188,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396],[348,411,419,423,426,428,429,430,443,3188],[339,348,411,419,423,426,428,429,430,443,3091,3399],[348,411,419,423,426,428,429,430,443,3399,3400,3401,3402,3403,3405,3406,3407],[348,411,419,423,426,428,429,430,443,3399,3400,3401,3402,3403,3405,3406],[339,348,411,419,423,426,428,429,430,443,3091,3399,3404],[348,411,419,423,426,428,429,430,443,3409,3410,3411],[348,411,419,423,426,428,429,430,443,3409,3410],[339,348,411,419,423,426,428,429,430,443,3088,3090,3091,3168],[339,348,411,419,423,426,428,429,430,443,3091,3409],[348,411,419,423,426,428,429,430,443,3413,3414,3415,3416,3417,3418],[348,411,419,423,426,428,429,430,443,3413,3414,3415,3416,3417],[339,348,411,419,423,426,428,429,430,443,3091,3413,3414],[339,348,411,419,423,426,428,429,430,443,3091,3414],[339,348,411,419,423,426,428,429,430,443,3091,3093,3413,3414],[339,348,411,419,423,426,428,429,430,443,3088,3089,3091,3413],[348,411,419,423,426,428,429,430,443,3421],[348,411,419,423,426,428,429,430,443,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433],[348,411,419,423,426,428,429,430,443,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432],[339,348,411,419,423,426,428,429,430,443,3091,3169,3421],[339,348,411,419,423,426,428,429,430,443,3422],[339,348,411,419,423,426,428,429,430,443,3091,3093,3421],[339,348,411,419,423,426,428,429,430,443,3420],[348,411,419,423,426,428,429,430,443,3437],[348,411,419,423,426,428,429,430,443,3435],[339,348,411,419,423,426,428,429,430,443,3091,3440],[348,411,419,423,426,428,429,430,443,3439,3440,3441,3442,3443,3444,3445],[348,411,419,423,426,428,429,430,443,3091,3439,3440,3441,3442,3443,3444],[339,348,411,419,423,426,428,429,430,443,3091,3218],[348,411,419,423,426,428,429,430,443,3449,3450,3451,3452,3453,3454,3455,3457],[348,411,419,423,426,428,429,430,443,3448,3449,3450,3451,3452,3453,3454,3455,3456],[339,348,411,419,423,426,428,429,430,443,503,3088,3089,3145,3448],[348,411,419,423,426,428,429,430,443,3447],[339,348,411,419,423,426,428,429,430,443,3093,3108,3118,3141,3145,3449,3458,3461],[339,348,411,419,423,426,428,429,430,443,3091,3448],[339,348,411,419,423,426,428,429,430,443,3089],[348,411,419,423,426,428,429,430,443,3091,3459],[339,348,411,419,423,426,428,429,430,443,3091,3120],[348,411,419,423,426,428,429,430,443,3088],[348,411,419,423,426,428,429,430,443,3142,3143,3144],[339,348,411,419,423,426,428,429,430,443,3093,3108,3143],[348,411,419,423,426,428,429,430,443,3091,3093,3118,3141,3142],[348,411,419,423,426,428,429,430,443,3087],[339,348,411,419,423,426,428,429,430,443,3090],[339,348,411,419,423,426,428,429,430,443,3110,3141],[348,411,419,423,426,428,429,430,443,3104],[339,348,411,419,423,426,428,429,430,443,503,3104],[348,411,419,423,426,428,429,430,443,2959],[348,411,419,423,426,428,429,430,443,3102,3104,3105,3106,3107],[348,411,419,423,426,428,429,430,443,3103,3104],[339,348,411,419,423,426,428,429,430,443,503,2297],[339,348,411,419,423,426,428,429,430,443,503,676,801,802,2237],[348,411,419,423,426,428,429,430,443,784,801],[348,411,419,423,426,428,429,430,443,2252,2273,2328],[348,411,419,423,426,428,429,430,443,2252,2273,2323,2328],[339,348,411,419,423,426,428,429,430,443,503,2252,2297],[348,411,419,423,426,428,429,430,443,2252,2273],[348,411,419,423,426,428,429,430,443,2252,2273,2322,2324,2325,2326],[348,411,419,423,426,428,429,430,443,2252,2273,2325,2328],[348,411,419,423,426,428,429,430,443,2252,2273,2322],[348,411,419,423,426,428,429,430,443,2322,2324,2327],[348,411,419,423,426,428,429,430,443,2252,2273,2312,2320,2322,2323],[348,411,419,423,426,428,429,430,443,2474],[348,411,419,423,426,428,429,430,443,2475],[348,411,419,423,426,428,429,430,443,2474,2475,2476,2477,2478,2479,2480],[67,348,411,419,423,426,428,429,430,443],[63,64,348,411,419,423,426,428,429,430,443],[63,348,411,419,423,426,428,429,430,443],[62,348,411,419,423,426,428,429,430,443],[72,348,411,419,423,426,428,429,430,443],[63,70,348,411,419,423,426,428,429,430,443],[348,411,419,423,426,428,429,430,443,3110],[348,411,419,423,426,428,429,430,443,3111,3112],[339,348,411,419,423,426,428,429,430,443,3113],[348,411,419,423,426,428,429,430,443,3583],[348,411,419,423,426,428,429,430,443,2212,3505,3582],[348,411,419,423,426,428,429,430,443,1581,1583],[348,411,419,423,426,428,429,430,443,1582],[348,411,419,423,426,428,429,430,443,1581,1584],[348,411,419,423,426,428,429,430,443,1579,1581],[348,411,419,423,426,428,429,430,443,1578,1579,1580],[348,411,419,423,426,428,429,430,443,1578,1581],[348,411,419,423,426,428,429,430,443,1268,1269],[348,411,419,423,426,428,429,430,443,1269,1270,1271],[348,411,419,423,426,428,429,430,443,1267,1268,1269,1270,1271,1272,1273],[348,411,419,423,426,428,429,430,443,1191,1267],[348,411,419,423,426,428,429,430,443,1268],[348,411,419,423,426,428,429,430,443,1191],[348,411,419,423,426,428,429,430,443,1269,1270],[348,411,419,423,426,428,429,430,443,1150],[348,411,419,423,426,428,429,430,443,1153],[348,411,419,423,426,428,429,430,443,1158,1160],[348,411,419,423,426,428,429,430,443,1146,1150,1162,1163],[348,411,419,423,426,428,429,430,443,1173,1176,1182,1184],[348,411,419,423,426,428,429,430,443,1145,1150],[348,411,419,423,426,428,429,430,443,1144],[348,411,419,423,426,428,429,430,443,1145],[348,411,419,423,426,428,429,430,443,1152],[348,411,419,423,426,428,429,430,443,1155],[348,411,419,423,426,428,429,430,443,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1185,1186,1187,1188,1189,1190],[348,411,419,423,426,428,429,430,443,1161],[348,411,419,423,426,428,429,430,443,1157],[348,411,419,423,426,428,429,430,443,1158],[348,411,419,423,426,428,429,430,443,1149,1150,1156],[348,411,419,423,426,428,429,430,443,1157,1158],[348,411,419,423,426,428,429,430,443,1164],[348,411,419,423,426,428,429,430,443,1185],[348,411,419,423,426,428,429,430,443,1150,1170,1172,1173,1174],[348,411,419,423,426,428,429,430,443,1173,1174,1176],[348,411,419,423,426,428,429,430,443,1150,1165,1168,1171,1178],[348,411,419,423,426,428,429,430,443,1165,1166],[348,411,419,423,426,428,429,430,443,1148,1165,1168,1171],[348,411,419,423,426,428,429,430,443,1149],[348,411,419,423,426,428,429,430,443,1150,1167,1170],[348,411,419,423,426,428,429,430,443,1166],[348,411,419,423,426,428,429,430,443,1167],[348,411,419,423,426,428,429,430,443,1165,1167],[348,411,419,423,426,428,429,430,443,1147,1148,1165,1167,1168,1169],[348,411,419,423,426,428,429,430,443,1167,1170],[348,411,419,423,426,428,429,430,443,1150,1170,1172],[348,411,419,423,426,428,429,430,443,1173,1174],[348,411,419,423,426,428,429,430,443,1191,1326],[348,411,419,423,426,428,429,430,443,1327,1328],[348,411,419,423,426,428,429,430,443,1191,1213],[348,411,419,423,426,428,429,430,443,1213],[348,411,419,423,426,428,429,430,443,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235],[348,411,419,423,426,428,429,430,443,1218],[348,411,419,423,426,428,429,430,443,1223],[348,411,419,423,426,428,429,430,443,1220,1221,1222],[348,411,419,423,426,428,429,430,443,1288,1490],[348,411,419,423,426,428,429,430,443,1490,1491],[348,411,419,423,426,428,429,430,443,468,1191,1288],[348,411,419,423,426,428,429,430,443,1471,1472],[348,411,419,423,426,428,429,430,443,1191,1288,1469,1470],[348,411,419,423,426,428,429,430,443,1469],[348,411,419,423,426,428,429,430,443,1486,1487],[348,411,419,423,426,428,429,430,443,1288,1486],[348,411,419,423,426,428,429,430,443,1288],[348,411,419,423,426,428,429,430,443,1374,1375,1376,1377],[348,411,419,423,426,428,429,430,443,1288,1375],[348,411,419,423,426,428,429,430,443,1191,1288,1374],[348,411,419,423,426,428,429,430,443,1483],[348,411,419,423,426,428,429,430,443,1384,1385],[348,411,419,423,426,428,429,430,443,1288,1384],[348,411,419,423,426,428,429,430,443,1191,1288],[348,411,419,423,426,428,429,430,443,1456,1457],[348,411,419,423,426,428,429,430,443,1288,1289],[348,411,419,423,426,428,429,430,443,1289,1290],[348,411,419,423,425,426,428,429,430,443,468,1191,1288],[348,411,419,423,426,428,429,430,443,1411,1412],[348,411,419,423,426,428,429,430,443,1288,1411],[348,411,419,423,426,428,429,430,443,1388,1389],[348,411,419,423,426,428,429,430,443,1288,1388],[348,411,419,423,426,428,429,430,443,1475,1476],[348,411,419,423,426,428,429,430,443,1288,1475],[348,411,419,423,426,428,429,430,443,1464,1465,1466],[348,411,419,423,426,428,429,430,443,1288,1464],[348,411,419,423,426,428,429,430,443,1392],[348,411,419,423,426,428,429,430,443,1395,1396],[348,411,419,423,426,428,429,430,443,1288,1395],[348,411,419,423,426,428,429,430,443,1399,1400],[348,411,419,423,426,428,429,430,443,1288,1399],[348,411,419,423,426,428,429,430,443,1403,1404],[348,411,419,423,426,428,429,430,443,1288,1403],[348,411,419,423,426,428,429,430,443,1407,1408],[348,411,419,423,426,428,429,430,443,1288,1407],[348,411,419,423,426,428,429,430,443,1423,1424,1425],[348,411,419,423,426,428,429,430,443,1288,1423],[348,411,419,423,426,428,429,430,443,1191,1288,1422],[348,411,419,423,426,428,429,430,443,1421],[348,411,419,422,423,426,428,429,430,443,448,457,468,1415,1416,1419,1420,1421],[348,411,419,423,426,428,429,430,443,1479,1480],[348,411,419,423,426,428,429,430,443,1288,1479],[348,411,419,423,426,428,429,430,443,1369,1370],[348,411,419,423,426,428,429,430,443,1288,1369],[348,411,419,423,426,428,429,430,443,1276],[348,411,419,423,426,428,429,430,443,1275,1276,1277,1283,1284,1285,1286,1287],[348,411,419,423,426,428,429,430,443,1191,1274,1275],[348,411,419,423,426,428,429,430,443,1275],[348,411,419,423,426,428,429,430,443,1282],[348,411,419,423,426,428,429,430,443,1280,1281],[348,411,419,423,426,428,429,430,443,1275,1278,1279],[348,411,419,423,426,428,429,430,435,443],[348,411,419,423,426,428,429,430,443,1191,1274],[348,411,419,423,426,428,429,430,443,1191,1192],[348,411,419,423,426,428,429,430,443,1192,1194],[348,411,419,423,426,428,429,430,443,1192],[348,411,419,423,426,428,429,430,443,1193,1194],[348,411,419,423,426,428,429,430,443,1192,1193],[348,411,419,423,426,428,429,430,443,1196,1202,1203],[348,411,419,423,426,428,429,430,443,1201],[348,411,419,423,426,428,429,430,443,1197,1198,1199,1200],[348,411,419,423,426,428,429,430,443,1192,1193,1194,1195,1204,1205,1206],[348,411,419,423,426,428,429,430,443,1191,1193],[348,411,419,423,426,428,429,430,443,1191,1241],[348,411,419,423,426,428,429,430,443,1191,1207,1236,1237,1238,1240,1241],[348,411,419,423,426,428,429,430,443,1191,1238,1239],[348,411,419,423,426,428,429,430,443,1191,1238,1239,1240,1241,1243],[348,411,419,423,426,428,429,430,443,1236,1238,1243],[348,411,419,423,426,428,429,430,443,1191,1238,1239,1240],[348,411,419,423,426,428,429,430,443,1191,1207,1236,1237],[348,411,419,423,426,428,429,430,443,1191,1238,1239,1240,1243],[348,411,419,423,426,428,429,430,443,1236,1238],[348,411,419,423,426,428,429,430,443,1208,1209,1237,1238,1239,1240,1241,1242,1243,1248,1249,1250,1251,1252,1253,1254,1255,1256],[348,411,419,423,426,428,429,430,443,1247],[348,411,419,423,426,428,429,430,443,1208],[348,411,419,423,426,428,429,430,443,1241,1244],[348,411,419,423,426,428,429,430,443,1245,1246],[348,411,419,423,426,428,429,430,443,1209],[348,411,419,423,426,428,429,430,443,1191,1209],[348,411,419,423,426,428,429,430,443,1191,1207,1208,1209,1240],[348,411,419,423,426,428,429,430,443,1191,1453],[348,411,419,423,426,428,429,430,443,1441],[348,411,419,423,426,428,429,430,443,1440,1441,1442,1448,1449,1450,1451,1452],[348,411,419,423,426,428,429,430,443,1191,1439,1440],[348,411,419,423,426,428,429,430,443,1440],[348,411,419,423,426,428,429,430,443,1447],[348,411,419,423,426,428,429,430,443,1445,1446],[348,411,419,423,426,428,429,430,443,1440,1443,1444],[348,411,419,423,426,428,429,430,443,1191,1439],[348,411,419,423,426,428,429,430,443,1430,1431],[348,411,419,423,426,428,429,430,443,1431,1432,1433],[348,411,419,423,426,428,429,430,443,1430,1431,1432],[348,411,419,423,426,428,429,430,443,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438],[348,411,419,423,426,428,429,430,443,1191,1429],[348,411,419,423,426,428,429,430,443,1430],[348,411,419,423,426,428,429,430,443,1431,1432],[339,348,411,419,423,426,428,429,430,443,2356,2357,2360],[339,348,411,419,423,426,428,429,430,443,2356,2371],[339,348,411,419,423,426,428,429,430,443,2357],[339,348,411,419,423,426,428,429,430,443,2465,2466],[339,348,411,419,423,426,428,429,430,443,503,2356,2357],[339,348,411,419,423,426,428,429,430,443,2356,2357],[339,348,411,419,423,426,428,429,430,443,2356,2357,2394],[339,348,411,419,423,426,428,429,430,443,2356,2357,2365,2367,2369],[339,348,411,419,423,426,428,429,430,443,503,2356,2357,2402],[339,348,411,419,423,426,428,429,430,443,2356,2357,2365,2369,2389],[339,348,411,419,423,426,428,429,430,443,2466],[339,348,411,419,423,426,428,429,430,443,2356,2357,2365,2367,2369,2389,2393],[339,348,411,419,423,426,428,429,430,443,503,2356,2357,2393,2394],[339,348,411,419,423,426,428,429,430,443,2356,2357,2365,2414],[339,348,411,419,423,426,428,429,430,443,2357,2393],[339,348,411,419,423,426,428,429,430,443,2356,2357,2365,2367,2369,2389],[339,348,411,419,423,426,428,429,430,443,2356,2357,2386,2388],[339,348,411,419,423,426,428,429,430,443,2356,2357,2393],[339,343,348,411,419,423,426,428,429,430,443,469,470,471,472,473,755,800],[339,348,411,419,423,426,428,429,430,443,2356,2357,2365],[339,348,411,419,423,426,428,429,430,443,2356,2357,2393,2447],[339,348,411,419,423,426,428,429,430,443,2356,2357,2393,2432,2450],[348,411,419,423,426,428,429,430,443,2957,2958,2959,2960,2961],[348,411,419,423,426,428,429,430,443,1563],[348,411,419,423,426,428,429,430,443,1051],[348,411,419,423,426,428,429,430,443,1043,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055],[348,411,419,423,426,428,429,430,443,1019],[348,411,419,423,426,428,429,430,443,1019,1045],[348,411,419,423,426,428,429,430,443,1043],[348,411,419,423,426,428,429,430,443,1019,1051],[348,411,419,423,426,428,429,430,443,808,810,811,812,813,815,816,817,819,820,821,822,823,824,825,826,827,831,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,867,868,870,871,872,873,874,878,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,937,938,939,940,941,943,944,945,946,947,948,949,950,951,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018],[348,411,419,423,426,428,429,430,443,1522,1523,1524],[348,411,419,423,426,428,429,430,443,1522,1523,1525],[348,411,419,423,426,428,429,430,443,1520,1521,1522,1523,1525,1526],[348,411,419,423,426,428,429,430,443,1522,1523],[348,411,419,423,426,428,429,430,443,1519],[348,411,419,423,426,428,429,430,443,1019,1119],[348,411,419,423,426,428,429,430,443,1019,1119,1137,1138,1139,1140,1141],[348,411,419,423,426,428,429,430,443,1120,1121,1122,1123,1124,1125,1128,1129,1130,1132,1133,1134,1135,1136],[348,411,419,423,426,428,429,430,443,805,1127],[348,411,419,423,426,428,429,430,443,1127],[348,411,419,423,426,428,429,430,443,759],[348,411,419,423,426,428,429,430,443,766],[348,411,419,423,426,428,429,430,443,772,805],[348,411,419,423,426,428,429,430,443,805,1019,1126],[348,411,419,423,426,428,429,430,443,1131],[348,411,419,423,426,428,429,430,443,1530,1532],[348,411,419,423,426,428,429,430,443,1019,1529],[348,411,419,423,426,428,429,430,443,1530,1531],[348,411,419,423,426,428,429,430,443,1137,1138,1139,1264,1265],[348,411,419,423,426,428,429,430,443,1019,1127,1136,1142,1266,1518,1533],[348,411,419,423,426,428,429,430,443,1137,1138,1139,1516,1517],[348,411,419,423,426,428,429,430,443,827,841,896],[348,411,419,423,426,428,429,430,443,868,872],[348,411,419,423,426,428,429,430,443,847,862,868],[348,411,419,423,426,428,429,430,443,847,864,866,867],[348,411,419,423,426,428,429,430,443,808],[348,411,419,423,426,428,429,430,443,812],[348,411,419,423,426,428,429,430,443,835,836,847,862,868,869,871],[348,411,419,423,426,428,429,430,443,823,827,843,856],[348,411,419,423,426,428,429,430,443,811,812,817,820,823,824,825,827,833,834,835,836,842,843,844,847,853,854,856,857,858,859,860,861],[348,411,419,423,426,428,429,430,443,822,847,862],[348,411,419,423,426,428,429,430,443,847],[348,411,419,423,426,428,429,430,443,826,827,841,842,843,853,856,862,879],[348,411,419,423,426,428,429,430,443,844,853],[348,411,419,423,426,428,429,430,443,811,821,823,831,842,844,845,847,853,889],[348,411,419,423,426,428,429,430,443,833,847,853],[348,411,419,423,426,428,429,430,443,817,820,933],[348,411,419,423,426,428,429,430,443,933],[348,411,419,423,426,428,429,430,443,854,858,862],[348,411,419,423,426,428,429,430,443,854],[348,411,419,423,426,428,429,430,443,835,862],[348,411,419,423,426,428,429,430,443,933,1019],[348,411,419,423,426,428,429,430,443,853,854],[348,411,419,423,426,428,429,430,443,935,936],[348,411,419,423,426,428,429,430,443,942],[348,411,419,423,426,428,429,430,443,817],[348,411,419,423,426,428,429,430,443,849,1019],[348,411,419,423,426,428,429,430,443,854,933],[348,411,419,423,426,428,429,430,443,835,862,1019],[348,411,419,423,426,428,429,430,443,834,835,847,907],[348,411,419,423,426,428,429,430,443,850,853],[348,411,419,423,426,428,429,430,443,836,847,862],[348,411,419,423,426,428,429,430,443,836,847],[348,411,419,423,426,428,429,430,443,838],[348,411,419,423,426,428,429,430,443,827],[348,411,419,423,426,428,429,430,443,809,810,811,812,817,820,821,822,831,842,843,844,845,846,853,862],[348,411,419,423,426,428,429,430,443,858,862],[348,411,419,423,426,428,429,430,443,811,823,834,847,853,857,858,862],[348,411,419,423,426,428,429,430,443,842],[348,411,419,423,426,428,429,430,443,959],[348,411,419,423,426,428,429,430,443,958],[348,411,419,423,426,428,429,430,443,817,843,847,862],[348,411,419,423,426,428,429,430,443,962],[348,411,419,423,426,428,429,430,443,961],[348,411,419,423,426,428,429,430,443,817,860],[348,411,419,423,426,428,429,430,443,866,875,876,877,879,880,881,882,883,884,885],[348,411,419,423,426,428,429,430,443,964],[348,411,419,423,426,428,429,430,443,967],[348,411,419,423,426,428,429,430,443,808,878,1019],[348,411,419,423,426,428,429,430,443,956],[348,411,419,423,426,428,429,430,443,955],[348,411,419,423,426,428,429,430,443,855,858],[348,411,419,423,426,428,429,430,443,815,817],[348,411,419,423,426,428,429,430,443,815,817,818,878],[348,411,419,423,426,428,429,430,443,817,847,860,865],[348,411,419,423,426,428,429,430,443,817,847],[348,411,419,423,426,428,429,430,443,952],[348,411,419,423,426,428,429,430,443,862],[348,411,419,423,426,428,429,430,443,817,822,952],[348,411,419,423,426,428,429,430,443,857,861],[348,411,419,423,426,428,429,430,443,843,853,857],[348,411,419,423,426,428,429,430,443,843,857],[348,411,419,423,426,428,429,430,443,811],[348,411,419,423,426,428,429,430,443,822],[348,411,419,423,426,428,429,430,443,824],[348,411,419,423,426,428,429,430,443,813,817,818,821],[348,411,419,423,426,428,429,430,443,810,817,823,825,826,827,833,835,836,838,839,841,842,853],[348,411,419,423,426,428,429,430,443,808,810,811,812,816,817,820,821,822,831,837,841,845,847,848,851,852],[348,411,419,423,426,428,429,430,443,853],[348,411,419,423,426,428,429,430,443,848,850],[348,411,419,423,426,428,429,430,443,821,828,829],[348,411,419,423,426,428,429,430,443,810],[348,411,419,423,426,428,429,430,443,810,828,830,832,854],[348,411,419,423,426,428,429,430,443,821,831,853],[348,411,419,423,426,428,429,430,443,819],[348,411,419,423,426,428,429,430,443,853,862],[348,411,419,423,426,428,429,430,443,809,834],[348,411,419,423,426,428,429,430,443,809],[348,411,419,423,426,428,429,430,443,820],[348,411,419,423,426,428,429,430,443,812,817,835,836,846,847,850,853,854,855,856,857],[348,411,419,423,426,428,429,430,443,808,837,854,862],[348,411,419,423,426,428,429,430,443,817,820,821],[348,411,419,423,426,428,429,430,443,840],[348,411,419,423,426,428,429,430,443,841],[348,411,419,423,426,428,429,430,443,831],[348,411,419,423,426,428,429,430,443,808,814,815,816,818],[348,411,419,423,426,428,429,430,443,849],[348,411,419,423,426,428,429,430,443,817,818,847],[348,411,419,423,426,428,429,430,443,850],[348,411,419,423,426,428,429,430,443,843],[348,411,419,423,426,428,429,430,443,843,862],[348,411,419,423,426,428,429,430,443,850,851,853],[348,411,419,423,426,428,429,430,443,825,843],[348,411,419,423,426,428,429,430,443,837,850],[348,411,419,423,426,428,429,430,443,827,862],[348,411,419,423,426,428,429,430,443,810,817,824,827,841,843,853,856],[348,411,419,423,426,428,429,430,443,811,834,849,850,851,853,862],[348,411,419,423,426,428,429,430,443,858],[348,411,419,423,426,428,429,430,443,831,842],[348,411,419,423,426,428,429,430,443,821,834,980,981],[348,411,419,423,426,428,429,430,443,846],[348,411,419,423,426,428,429,430,443,848,849,853],[348,411,419,423,426,428,429,430,443,988],[348,411,419,423,426,428,429,430,443,834],[348,411,419,423,426,428,429,430,443,847,850,853,858,862],[348,411,419,423,426,428,429,430,443,824,857],[348,411,419,423,426,428,429,430,443,819,820],[348,411,419,423,426,428,429,430,443,847,853],[348,411,419,423,426,428,429,430,443,815,817,818,822],[348,411,419,423,426,428,429,430,443,849,850,853,981],[348,411,419,423,426,428,429,430,443,995],[348,411,419,423,426,428,429,430,443,817,846,847,862],[348,411,419,423,426,428,429,430,443,858,913],[348,411,419,423,426,428,429,430,443,816,846,862],[348,411,419,423,426,428,429,430,443,870,872],[339,348,411,419,423,426,428,429,430,443,1103],[339,348,411,419,423,426,428,429,430,443,1019,1103],[348,411,419,423,426,428,429,430,443,1103,1104,1105,1106,1107,1108,1110,1111,1112,1117,1118],[339,348,411,419,423,426,428,429,430,443,1019],[348,411,419,423,426,428,429,430,443,1113,1114,1115],[339,348,411,419,423,426,428,429,430,443,1019,1103,1109],[348,411,419,423,426,428,429,430,443,1019,1109],[348,411,419,423,426,428,429,430,443,1019,1103,1109],[348,411,419,423,426,428,429,430,443,1019,1103,1109,1116],[348,411,419,423,426,428,429,430,443,1019,1103],[348,411,419,423,426,428,429,430,443,1019,1022],[348,411,419,423,426,428,429,430,443,1019,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038],[348,411,419,423,426,428,429,430,443,1019,1020,1021,1039,1040,1041,1042,1057,1067,1069,1077,1078,1079,1080,1081,1082,1083,1084,1085,1088,1091,1094,1097,1100,1101,1102],[348,411,419,423,426,428,429,430,443,1096],[348,411,419,423,426,428,429,430,443,1019,1095],[348,411,419,423,426,428,429,430,443,1087],[348,411,419,423,426,428,429,430,443,1019,1086],[348,411,419,423,426,428,429,430,443,1090],[348,411,419,423,426,428,429,430,443,1019,1089],[348,411,419,423,426,428,429,430,443,1099],[348,411,419,423,426,428,429,430,443,1019,1098],[348,411,419,423,426,428,429,430,443,1093],[348,411,419,423,426,428,429,430,443,1019,1092],[348,411,419,423,426,428,429,430,443,1019,1056],[348,411,419,423,426,428,429,430,443,1019,1023],[348,411,419,423,426,428,429,430,443,1019,1022,1024],[348,411,419,423,426,428,429,430,443,1073],[348,411,419,423,426,428,429,430,443,1019,1071,1072],[348,411,419,423,426,428,429,430,443,1070,1073,1074,1075,1076],[348,411,419,423,426,428,429,430,443,1019,1067],[348,411,419,423,426,428,429,430,443,1068],[348,411,419,423,426,428,429,430,443,1064,1065,1066],[348,411,419,423,426,428,429,430,443,1019,1064],[348,411,419,423,426,428,429,430,443,1058,1059,1061,1062,1063],[348,411,419,423,426,428,429,430,443,1058],[348,411,419,423,426,428,429,430,443,1019,1058,1059,1060,1061,1062],[348,411,419,423,426,428,429,430,443,1019,1059,1061],[348,411,419,423,426,428,429,430,443,1056],[348,411,419,423,426,428,429,430,443,1065],[348,411,419,423,426,428,429,430,443,1019,1317,1319,1320,1340,1341,1342,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1363,1364],[348,411,419,423,426,428,429,430,443,1360,1361,1362],[348,411,419,423,426,428,429,430,443,1019,1294,1295,1316,1320,1321,1322,1323,1324,1325,1330,1331,1332,1333,1334,1335,1336,1338,1365],[348,411,419,423,426,428,429,430,443,1019,1337],[348,411,419,423,425,426,428,429,430,443,1019,1288],[348,411,419,422,423,425,426,428,429,430,443,1019],[348,411,419,423,425,426,428,429,430,443,1019,1321],[348,411,419,423,425,426,428,429,430,443,1019,1288,1294],[348,411,419,423,426,428,429,430,443,1019,1343],[348,411,419,423,426,428,429,430,443,1019,1321],[348,411,419,423,426,428,429,430,443,1019,1339],[348,411,419,423,426,428,429,430,443,1316,1329],[348,411,419,423,426,428,429,430,443,1019,1191,1257,1316,1320],[348,411,419,423,426,428,429,430,443,1019,1320,1321],[348,411,419,423,425,426,427,428,429,430,443],[348,411,419,423,426,428,429,430,443,1019,1317],[348,411,419,423,426,428,429,430,443,1318],[348,411,419,423,426,428,429,430,443,1019,1191,1257,1288,1319],[348,411,419,423,426,428,429,430,443,1019,1191],[348,411,419,423,426,428,429,430,443,1019,1316,1366,1367,1368,1372,1373,1379,1383,1387,1391,1394,1398,1402,1406,1410,1414,1427,1428,1455,1460,1463,1468,1474,1478,1482,1485,1489,1493,1496,1497,1498,1499,1500,1501,1507,1512,1513,1514,1515],[348,411,419,423,426,428,429,430,443,1502,1503,1504,1505,1506],[348,411,419,423,425,426,428,429,430,443,1019,1288,1291,1366,1367],[348,411,419,423,426,428,429,430,443,1019,1371],[348,411,419,423,426,428,429,430,443,1019,1492],[348,411,419,423,426,428,429,430,443,1019,1288],[348,411,419,423,426,428,429,430,443,1019,1473],[348,411,419,423,426,428,429,430,443,1019,1488],[348,411,419,423,425,426,428,429,430,443,1019,1378],[348,411,419,423,426,428,429,430,443,1019,1288,1380,1382],[348,411,419,423,426,428,429,430,443,1288,1381],[348,411,419,423,426,428,429,430,443,1019,1510],[348,411,419,423,426,428,429,430,443,1511],[348,411,419,423,426,428,429,430,443,1288,1508],[348,411,419,423,426,428,429,430,443,1508,1509],[348,411,419,423,426,428,429,430,443,1019,1484],[348,411,419,423,426,428,429,430,443,1019,1386],[348,411,419,423,426,428,429,430,443,1019,1458,1459],[348,411,419,423,426,428,429,430,443,448],[348,411,419,423,426,428,429,430,443,1019,1461,1462],[348,411,419,423,426,428,429,430,443,1019,1390],[348,411,419,423,426,428,429,430,443,1019,1477],[348,411,419,423,426,428,429,430,443,1019,1467],[348,411,419,423,426,428,429,430,443,1019,1393],[348,411,419,423,426,428,429,430,443,1019,1397],[348,411,419,423,426,428,429,430,443,1019,1401],[348,411,419,423,426,428,429,430,443,1019,1405],[348,411,419,423,426,428,429,430,443,1019,1409],[348,411,419,423,426,428,429,430,443,1019,1426],[348,411,419,423,426,428,429,430,443,1019,1288,1454],[348,411,419,423,426,428,429,430,443,1019,1413],[348,411,419,423,426,428,429,430,443,1019,1481],[348,411,419,423,426,428,429,430,443,1019,1494,1495],[348,411,419,423,426,428,429,430,443,1019,1366,1367],[348,411,419,423,426,428,429,430,443,1257,1316,1366],[348,411,419,423,426,428,429,430,443,1019,1191,1257,1366],[348,410,411,419,423,426,428,429,430,443,1191],[348,411,419,423,426,428,429,430,443,1019,1299],[348,411,419,423,426,428,429,430,443,1019,1296,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315],[348,411,419,423,426,428,429,430,443,1019,1191,1236],[348,411,419,423,426,428,429,430,443,1019,1191,1257],[348,411,419,423,426,428,429,430,443,1191,1257],[348,411,419,423,426,428,429,430,443,1019,1191,1299],[348,411,419,423,426,428,429,430,443,1191,1299],[348,411,419,423,426,428,429,430,443,1299],[348,411,419,423,426,428,429,430,443,1191,1257,1299],[348,411,419,423,426,428,429,430,443,1019,1257,1260],[348,411,419,423,426,428,429,430,443,1019,1258,1260,1261,1262,1263],[348,411,419,423,426,428,429,430,443,1019,1258,1260],[348,411,419,423,426,428,429,430,443,1019,1258,1259],[348,411,419,423,426,428,429,430,443,1527,1528],[348,411,419,423,426,428,429,430,443,1527],[348,411,419,423,426,428,429,430,443,2228],[348,411,419,423,426,428,429,430,443,2229],[348,411,419,423,426,428,429,430,443,3622],[348,411,419,423,426,428,429,430,443,3620],[348,411,419,423,426,428,429,430,443,3617,3618,3619,3620,3621,3624,3625,3626,3627,3628,3629,3630,3631],[348,411,419,423,426,428,429,430,443,3613],[348,411,419,423,426,428,429,430,443,3623],[348,411,419,423,426,428,429,430,443,3617,3618,3619],[348,411,419,423,426,428,429,430,443,3617,3618],[348,411,419,423,426,428,429,430,443,3620,3621,3623],[348,411,419,423,426,428,429,430,443,3618],[348,411,419,423,426,428,429,430,443,3612,3614,3615],[339,348,411,419,423,426,428,429,430,443,473,736,3632,3633],[348,411,419,423,426,428,429,430,443,2139,2140,2141,2143,2144],[348,411,419,423,426,428,429,430,443,2139],[348,411,419,423,426,428,429,430,443,2139,2141],[348,411,419,423,426,428,429,430,443,1553,1554],[348,411,419,423,425,426,428,429,430,443,468],[348,411,419,423,426,428,429,430,443,2947],[348,411,419,423,426,428,429,430,443,2971],[348,408,409,411,419,423,426,428,429,430,443],[348,410,411,419,423,426,428,429,430,443],[411,419,423,426,428,429,430,443],[348,411,419,423,426,428,429,430,443,451],[348,411,412,417,419,422,423,426,428,429,430,432,443,448,460],[348,411,412,413,419,422,423,426,428,429,430,443],[348,411,414,419,423,426,428,429,430,443,461],[348,411,415,416,419,423,426,428,429,430,434,443],[348,411,416,419,423,426,428,429,430,443,448,457],[348,411,417,419,422,423,426,428,429,430,432,443],[348,410,411,418,419,423,426,428,429,430,443],[348,411,419,420,423,426,428,429,430,443],[348,411,419,421,422,423,426,428,429,430,443],[348,410,411,419,422,423,426,428,429,430,443],[348,411,419,422,423,424,426,428,429,430,443,448,460],[348,411,419,422,423,424,426,428,429,430,443,448,451],[348,398,411,419,422,423,425,426,428,429,430,432,443,448,460],[348,411,419,422,423,425,426,428,429,430,432,443,448,457,460],[348,411,419,423,425,426,427,428,429,430,443,448,457,460],[346,347,348,349,350,351,352,353,354,355,356,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,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,461,462,463,464,465,466,467],[348,411,419,422,423,426,428,429,430,443],[348,411,419,423,426,428,430,443],[348,411,419,423,426,428,429,430,431,443,460],[348,411,419,422,423,426,428,429,430,432,443,448],[348,411,419,423,426,428,429,430,434,443],[348,411,419,422,423,426,428,429,430,438,443],[348,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,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,461,462,463,464,465,466,467],[348,411,419,423,426,428,429,430,440,443],[348,411,419,423,426,428,429,430,441,443],[348,411,416,419,423,426,428,429,430,432,443,451],[348,411,419,422,423,426,428,429,430,443,444],[348,411,419,423,426,428,429,430,443,445,461,464],[348,411,419,422,423,426,428,429,430,443,448,450,451],[348,411,419,423,426,428,429,430,443,449,451],[348,411,419,423,426,428,429,430,443,451,461],[348,411,419,423,426,428,429,430,443,452],[348,408,411,419,423,426,428,429,430,443,448,454,460],[348,411,419,423,426,428,429,430,443,448,453],[348,411,419,422,423,426,428,429,430,443,455,456],[348,411,419,423,426,428,429,430,443,455,456],[348,411,416,419,423,426,428,429,430,432,443,448,457],[348,411,419,423,426,428,429,430,443,458],[348,411,419,423,426,428,429,430,432,443,459],[348,411,419,423,425,426,428,429,430,441,443,460],[348,411,419,423,426,428,429,430,443,461,462],[348,411,416,419,423,426,428,429,430,443,462],[348,411,419,423,426,428,429,430,443,448,463],[348,411,419,423,426,428,429,430,431,443,464],[348,411,419,423,426,428,429,430,443,465],[348,411,414,419,423,426,428,429,430,443],[348,411,416,419,423,426,428,429,430,443],[348,411,419,423,426,428,429,430,443,461],[348,398,411,419,423,426,428,429,430,443],[348,411,419,423,426,428,429,430,443,460],[348,411,419,423,426,428,429,430,443,466],[348,411,419,423,426,428,429,430,438,443],[348,411,419,423,426,428,429,430,443,456],[348,398,411,419,422,423,424,426,428,429,430,438,443,448,451,460,463,464,466],[348,411,419,423,426,428,429,430,443,448,467],[339,343,348,411,419,423,426,428,429,430,443,469,470,471,473,755,800,3506],[339,343,348,411,419,423,426,428,429,430,443,469,470,471,472,736,755,800,3506],[339,343,348,411,419,423,426,428,429,430,443,469,470,472,473,755,800,3506],[339,348,411,419,423,426,428,429,430,443,473,736,737],[339,348,411,419,423,426,428,429,430,443,473,736],[339,343,348,411,419,423,426,428,429,430,443,470,471,472,473,755,800,3506],[339,343,348,411,419,423,426,428,429,430,443,469,471,472,473,755,800,3506],[337,338,348,411,419,423,426,428,429,430,443],[348,411,419,422,423,425,426,427,428,429,430,432,443,448,457,460,467,468],[86,207,348,411,419,423,426,428,429,430,443],[211,348,411,419,423,426,428,429,430,443],[203,204,205,206,348,411,419,423,426,428,429,430,443],[83,132,141,152,155,348,411,419,423,426,428,429,430,443],[83,153,161,348,411,419,423,426,428,429,430,443],[83,112,113,348,411,419,423,426,428,429,430,443],[114,115,116,117,118,119,120,121,122,123,124,348,411,419,423,426,428,429,430,443],[83,112,348,411,419,423,426,428,429,430,443],[112,114,115,116,117,118,119,120,121,122,123,124,125,348,411,419,423,426,428,429,430,443],[126,127,132,153,155,158,159,162,348,411,419,423,426,428,429,430,443],[83,157,348,411,419,423,426,428,429,430,443],[83,132,155,348,411,419,423,426,428,429,430,443],[83,127,153,155,159,348,411,419,423,426,428,429,430,443],[83,157,158,348,411,419,423,426,428,429,430,443],[83,103,348,411,419,423,426,428,429,430,443],[160,348,411,419,423,426,428,429,430,443],[83,133,138,151,153,348,411,419,423,426,428,429,430,443],[83,127,132,133,138,151,153,348,411,419,423,426,428,429,430,443],[83,132,133,138,151,153,348,411,419,423,426,428,429,430,443],[134,135,136,137,139,140,141,142,143,144,145,146,147,148,149,150,152,154,348,411,419,423,426,428,429,430,443],[83,126,127,132,133,134,135,136,137,151,153,348,411,419,423,426,428,429,430,443],[133,134,135,136,137,139,140,142,143,144,145,146,147,148,149,150,151,152,154,348,411,419,423,426,428,429,430,443],[83,128,348,411,419,423,426,428,429,430,443],[129,130,155,348,411,419,423,426,428,429,430,443],[128,348,411,419,423,426,428,429,430,443],[83,126,127,155,348,411,419,423,426,428,429,430,443],[129,130,131,348,411,419,423,426,428,429,430,443],[101,102,348,411,419,423,426,428,429,430,443],[78,348,411,419,423,426,428,429,430,443],[79,80,81,82,348,411,419,423,426,428,429,430,443],[78,80,348,411,419,423,426,428,429,430,443],[79,82,348,411,419,423,426,428,429,430,443],[78,218,348,411,419,423,426,428,429,430,443],[78,218,219,348,411,419,423,426,428,429,430,443],[208,209,216,219,220,221,222,223,224,225,230,231,232,233,348,411,419,423,426,428,429,430,443],[78,216,348,411,419,423,426,428,429,430,443],[207,348,411,419,423,426,428,429,430,443],[78,89,93,212,214,216,217,219,348,411,419,423,426,428,429,430,443],[78,207,216,348,411,419,423,426,428,429,430,443],[78,216,223,348,411,419,423,426,428,429,430,443],[216,229,348,411,419,423,426,428,429,430,443],[78,207,214,348,411,419,423,426,428,429,430,443],[207,214,215,348,411,419,423,426,428,429,430,443],[78,89,93,218,348,411,419,423,426,428,429,430,443],[109,177,348,411,419,423,426,428,429,430,443],[178,179,180,181,182,348,411,419,423,426,428,429,430,443],[109,348,411,419,423,426,428,429,430,443],[183,184,185,186,348,411,419,423,426,428,429,430,443],[177,348,411,419,423,426,428,429,430,443],[168,348,411,419,423,426,428,429,430,443],[188,189,190,191,192,193,348,411,419,423,426,428,429,430,443],[109,166,177,187,194,197,348,411,419,423,426,428,429,430,443],[111,165,168,170,348,411,419,423,426,428,429,430,443],[173,174,348,411,419,423,426,428,429,430,443],[165,167,168,170,171,348,411,419,423,426,428,429,430,443],[109,111,164,348,411,419,423,426,428,429,430,443],[83,348,411,419,423,426,428,429,430,443],[169,348,411,419,423,426,428,429,430,443],[109,110,164,166,167,169,171,348,411,419,423,426,428,429,430,443],[109,111,168,169,171,348,411,419,423,426,428,429,430,443],[163,348,411,419,423,426,428,429,430,443],[109,164,165,348,411,419,423,426,428,429,430,443],[168,169,348,411,419,423,426,428,429,430,443],[171,172,348,411,419,423,426,428,429,430,443],[169,171,172,348,411,419,423,426,428,429,430,443],[110,111,164,165,167,168,169,170,171,175,176,348,411,419,423,426,428,429,430,443],[83,108,348,411,419,423,426,428,429,430,443],[195,196,348,411,419,423,426,428,429,430,443],[78,93,348,411,419,423,426,428,429,430,443],[78,93,94,348,411,419,423,426,428,429,430,443],[84,85,91,94,95,96,97,98,99,100,104,105,106,107,348,411,419,423,426,428,429,430,443],[78,91,348,411,419,423,426,428,429,430,443],[78,88,89,91,92,94,214,218,348,411,419,423,426,428,429,430,443],[78,83,91,348,411,419,423,426,428,429,430,443],[78,91,98,348,411,419,423,426,428,429,430,443],[91,103,348,411,419,423,426,428,429,430,443],[78,83,89,348,411,419,423,426,428,429,430,443],[83,89,90,348,411,419,423,426,428,429,430,443],[78,93,214,218,348,411,419,423,426,428,429,430,443],[83,86,348,411,419,423,426,428,429,430,443],[87,348,411,419,423,426,428,429,430,443],[227,228,348,411,419,423,426,428,429,430,443],[348,411,419,423,426,428,429,430,443,1643,2137,2224],[348,411,419,423,426,428,429,430,443,2223],[348,411,419,423,426,428,429,430,443,1546,1547,1548,1551,1552,1555],[348,411,419,423,426,428,429,430,443,2125],[348,411,419,423,426,428,429,430,443,2125,2126],[348,411,419,423,426,428,429,430,443,1551,1647,1648],[348,411,419,423,426,428,429,430,443,1551,1647],[348,411,419,423,426,428,429,430,443,1647],[348,411,419,423,426,428,429,430,443,1549,1647,1651,1652],[348,411,419,423,426,428,429,430,443,1549,1647,1651],[348,411,419,423,426,428,429,430,443,1545],[348,411,419,423,426,428,429,430,443,1549,1550],[348,411,419,423,426,428,429,430,443,1549],[348,411,419,423,426,428,429,430,443,1549,1550,1644,2130],[348,411,419,423,426,428,429,430,443,1644],[348,411,419,423,426,428,429,430,443,1549,1552,1644,1645,1646],[348,411,419,423,426,428,429,430,443,2139,2144,2145,2222],[348,411,419,423,426,428,429,430,443,2351,2352],[348,411,419,423,426,428,429,430,443,2351],[339,348,411,419,423,426,428,429,430,443,2371],[348,411,419,423,426,428,429,430,443,2254,2273,2275],[348,411,419,423,426,428,429,430,443,2253,2276,2278,2279,2282,2283,2284,2285],[348,411,419,423,426,428,429,430,443,2252,2253],[348,411,419,423,426,428,429,430,443,2275],[348,411,419,423,426,428,429,430,443,2273,2281,2282,2283,2286],[348,411,419,423,426,428,429,430,443,2254,2278,2280],[348,411,419,423,426,428,429,430,443,2252,2253,2254,2276,2277,2278,2279,2281],[348,411,419,423,426,428,429,430,443,2252],[348,411,419,423,426,428,429,430,443,2252,2278,2279],[348,411,419,423,426,428,429,430,443,2252,2275],[348,411,419,423,426,428,429,430,443,2252,2279,2282,2283],[348,411,419,423,426,428,429,430,443,2252,2255,2277],[348,411,419,423,426,428,429,430,443,2273,2297],[339,348,411,419,423,426,428,429,430,443,2282],[339,348,411,419,423,426,428,429,430,443,2252,2254,2274,2275,2278,2282,2283,2286,2289],[348,411,419,423,426,428,429,430,443,2282,2287,2288,2290,2293,2294,2295,2296],[348,411,419,423,426,428,429,430,443,2252,2275,2278,2283,2290,2291,2293],[348,411,419,423,426,428,429,430,443,2245,2252,2273,2275,2286],[348,411,419,423,426,428,429,430,443,2287],[348,411,419,423,426,428,429,430,443,2252,2275,2292],[348,411,419,423,426,428,429,430,443,2245,2259,2274],[348,411,419,423,426,428,429,430,443,2270,2274,2275],[348,411,419,423,426,428,429,430,443,2252,2267,2275],[348,411,419,423,426,428,429,430,443,2252,2256,2261,2262,2263],[348,411,419,423,426,428,429,430,443,2252,2256],[348,411,419,423,426,428,429,430,443,2256,2274],[348,411,419,423,426,428,429,430,443,2245,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2271,2272,2274,2275],[348,411,419,423,426,428,429,430,443,2256],[348,411,419,423,426,428,429,430,443,2244,2246],[348,411,419,423,426,428,429,430,443,2256,2257,2258,2259,2260],[348,411,419,423,426,428,429,430,443,2244,2245,2246,2247,2256,2267,2272,2273,2275],[348,411,419,423,426,428,429,430,443,2274],[348,411,419,423,426,428,429,430,443,2244,2275],[348,411,419,423,426,428,429,430,443,2245,2246,2247,2256,2262],[348,411,419,423,426,428,429,430,443,2245,2252,2256],[348,411,419,423,426,428,429,430,443,2244,2256],[348,411,419,423,426,428,429,430,443,2244],[348,411,419,423,426,428,429,430,443,2244,2246,2247,2248,2249,2250,2251],[348,411,419,423,426,428,429,430,443,2245,2246,2252],[348,411,419,423,426,428,429,430,443,2244,2245,2247,2252],[348,411,419,423,426,428,429,430,443,2485],[348,411,419,423,426,428,429,430,443,2483,2485],[348,411,419,423,426,428,429,430,443,2483],[348,411,419,423,426,428,429,430,443,2485,2549,2550],[348,411,419,423,426,428,429,430,443,2485,2552],[348,411,419,423,426,428,429,430,443,2485,2553],[348,411,419,423,426,428,429,430,443,2570],[348,411,419,423,426,428,429,430,443,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738],[348,411,419,423,426,428,429,430,443,2485,2646],[348,411,419,423,426,428,429,430,443,2483,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834],[348,411,419,423,426,428,429,430,443,2485,2550,2670],[348,411,419,423,426,428,429,430,443,2483,2667,2668],[348,411,419,423,426,428,429,430,443,2485,2667],[348,411,419,423,426,428,429,430,443,2669],[348,411,419,423,426,428,429,430,443,2482,2483,2484],[348,411,419,423,426,428,429,430,443,2943],[348,411,419,423,426,428,429,430,443,2944],[348,411,419,423,426,428,429,430,443,2917,2937],[348,411,419,423,426,428,429,430,443,2911],[348,411,419,423,426,428,429,430,443,2912,2916,2917,2918,2919,2920,2922,2924,2925,2930,2931,2940],[348,411,419,423,426,428,429,430,443,2912,2917],[348,411,419,423,426,428,429,430,443,2920,2937,2939,2942],[348,411,419,423,426,428,429,430,443,2911,2912,2913,2914,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2941,2942],[348,411,419,423,426,428,429,430,443,2940],[348,411,419,423,426,428,429,430,443,2910,2912,2913,2915,2923,2932,2935,2936,2941],[348,411,419,423,426,428,429,430,443,2917,2942],[348,411,419,423,426,428,429,430,443,2938,2940,2942],[348,411,419,423,426,428,429,430,443,2911,2912,2917,2920,2940],[348,411,419,423,426,428,429,430,443,2924],[348,411,419,423,426,428,429,430,443,2914,2922,2924,2925],[348,411,419,423,426,428,429,430,443,2914],[348,411,419,423,426,428,429,430,443,2914,2924],[348,411,419,423,426,428,429,430,443,2918,2919,2920,2924,2925,2930],[348,411,419,423,426,428,429,430,443,2920,2921,2925,2929,2931,2940],[348,411,419,423,426,428,429,430,443,2912,2924,2933],[348,411,419,423,426,428,429,430,443,2913,2914,2915],[348,411,419,423,426,428,429,430,443,2920,2940],[348,411,419,423,426,428,429,430,443,2920],[348,411,419,423,426,428,429,430,443,2911,2912],[348,411,419,423,426,428,429,430,443,2912],[348,411,419,423,426,428,429,430,443,2916],[348,411,419,423,426,428,429,430,443,2920,2925,2937,2938,2939,2940,2942],[76,348,411,419,423,426,428,429,430,443],[69,74,75,348,411,419,423,426,428,429,430,443],[198,348,411,419,423,426,428,429,430,443],[69,76,348,411,419,423,426,428,429,430,443],[333,348,411,419,423,426,428,429,430,443],[72,200,201,348,411,419,423,426,428,429,430,443],[65,348,411,419,423,426,428,429,430,443],[63,69,71,348,411,419,423,426,428,429,430,443],[348,411,419,423,426,428,429,430,443,3607,3608],[348,411,419,423,426,428,429,430,443,3607,3608,3609,3610],[348,411,419,423,426,428,429,430,443,3607,3609],[348,411,419,423,426,428,429,430,443,3607],[348,411,419,423,426,428,429,430,443,1977],[348,411,419,423,426,428,429,430,443,1659,1669,1961,1962,2103,2105,2106,2107],[348,411,419,423,426,428,429,430,443,1659,1956,1960,1966,1968,1969,2105,2108],[348,411,419,423,426,428,429,430,443,464,1659,1670,1799,1942,1944,1970,1971,1976,1977,2089,2105],[348,411,419,423,426,428,429,430,443,464,1669,1942,1945,1951,1970,1971,1972,1973,2104,2106],[348,411,419,423,426,428,429,430,443,1659,1669,1961,1962,1977,2089,2103,2107,2110,2111],[348,411,419,423,426,428,429,430,443,1659,1956,1960,1966,1968,1969,2110,2112],[348,411,419,423,426,428,429,430,443,464,1659,1670,1799,1942,1944,1970,1971,1976,1977,2089,2110],[348,411,419,423,426,428,429,430,443,464,1669,1942,1945,1951,1970,1971,1972,1973,2109,2111],[348,411,419,423,426,428,429,430,443,1659,1669,1961,1969,1973,2103],[348,411,419,423,426,428,429,430,443,1659,1956,1960,1962,1966,1968,1973],[348,411,419,423,426,428,429,430,443,464,1659,1670,1799,1942,1944,1970,1971,1973,1976,2089],[348,411,419,423,426,428,429,430,443,464,1669,1942,1945,1951,1969,1970,1971,1972,1977],[348,411,419,423,426,428,429,430,443,1660,1661,1945,2089,2098,2099,2100,2101,2102],[348,411,419,423,426,428,429,430,443,1816,1970],[348,411,419,423,426,428,429,430,443,1660,1661,1972,2089,2098,2099,2100,2101,2102],[348,411,419,423,426,428,429,430,443,1936,2089],[348,411,419,423,426,428,429,430,443,2089],[348,411,419,423,426,428,429,430,443,1978,2089],[348,411,419,423,426,428,429,430,443,1704],[348,411,419,423,426,428,429,430,443,1700,1701,1707,1708,1709,1710,1712,1713,1714,1715,1716,1717,1719,1720,1724,1729,1765,1766,1781,1782,1783,1784,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1817,1818,1819,1820,1821,1822,1823,1824,1825,1906,1907,1908,1909,1910,1911],[348,411,419,423,426,428,429,430,443,1827,1828,1829,1832,1834,1835,1836,1837,1839,1842,1843,1844,1847,1848,1849,1850,1851,1852,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1875,1877,1878,1879,1880,1881,1882,1884,1885,1886,1887,1888,1889,1890,1891,1892,1897,1898,1899,1900,1901,1902,1913,1915],[348,411,419,423,426,428,429,430,443,1946,1947,1948],[348,411,419,423,426,428,429,430,443,1664,1947,1949],[348,411,419,423,426,428,429,430,443,1669,1950],[348,411,419,423,426,428,429,430,443,1664,1947,1949,1950],[348,411,419,423,426,428,429,430,443,1953],[348,411,419,423,426,428,429,430,443,1952,1954,1955],[348,411,419,423,426,428,429,430,443,1980],[348,411,419,423,426,428,429,430,443,1659,1689,1690,1696,2089],[348,411,419,423,426,428,429,430,443,1659,1691,1695,2089],[348,411,419,423,426,428,429,430,443,1659,1694],[348,411,419,423,426,428,429,430,443,1659,1691,1921,2089],[348,411,419,423,426,428,429,430,443,1685],[348,411,419,423,426,428,429,430,443,1659,1692],[348,411,419,423,426,428,429,430,443,1659,1689,1693],[348,411,419,423,426,428,429,430,443,1659,1689,1691,1697],[348,411,419,423,426,428,429,430,443,1659,1691],[348,411,419,423,426,428,429,430,443,1659,1689,1691,1984],[348,411,419,423,426,428,429,430,443,1659,1689,1693,1695],[348,411,419,423,426,428,429,430,443,1659,1689,1692],[348,411,419,423,426,428,429,430,443,1659,1689,1692,1697,1989],[348,411,419,423,426,428,429,430,443,1697],[348,411,419,423,426,428,429,430,443,1988],[348,411,419,423,426,428,429,430,443,1659,1697,1986,1987],[348,411,419,423,426,428,429,430,443,1691,1696],[348,411,419,423,426,428,429,430,443,1921,2089],[348,411,419,423,426,428,429,430,443,1659,1700,1916,1992,2089],[348,411,419,423,426,428,429,430,443,1700],[348,411,419,423,426,428,429,430,443,1925,1944],[348,411,419,423,426,428,429,430,443,1659,1944,2089],[348,411,419,423,426,428,429,430,443,1734],[348,411,419,423,426,428,429,430,443,1659,1733],[348,411,419,423,426,428,429,430,443,1730,1731],[348,411,419,423,426,428,429,430,443,1732],[348,411,419,423,426,428,429,430,443,1659,1730],[348,411,419,423,426,428,429,430,443,1921],[348,411,419,423,426,428,429,430,443,1659,1921],[348,411,419,423,426,428,429,430,443,1736,1737,1741],[348,411,419,423,426,428,429,430,443,1659,1733,1735,1736,1737,1738,1739,1740],[348,411,419,423,426,428,429,430,443,1736],[348,411,419,423,426,428,429,430,443,1705,1996],[348,411,419,423,426,428,429,430,443,1705],[348,411,419,423,426,428,429,430,443,1705,1995],[348,411,419,423,426,428,429,430,443,1659,1662,1663,2090],[348,411,419,423,426,428,429,430,443,1659,1664,1665,1668,2089],[348,411,419,423,426,428,429,430,443,2091],[348,411,419,423,426,428,429,430,443,2090],[348,411,419,423,426,428,429,430,443,1662,2089],[348,411,419,423,426,428,429,430,443,1666,1667],[348,411,419,423,426,428,429,430,443,1664],[348,411,419,423,426,428,429,430,443,1999,2090],[348,411,419,423,426,428,429,430,443,1664,2001,2089],[348,411,419,423,426,428,429,430,443,1664,2003],[348,411,419,423,426,428,429,430,443,1664,1997,2005],[348,411,419,423,426,428,429,430,443,1664,2085],[348,411,419,423,426,428,429,430,443,1659,1664,2007],[348,411,419,423,426,428,429,430,443,2002,2009],[348,411,419,423,426,428,429,430,443,2002,2011,2090],[348,411,419,423,426,428,429,430,443,1664,2013],[348,411,419,423,426,428,429,430,443,1662],[348,411,419,423,426,428,429,430,443,1662,1997],[348,411,419,423,426,428,429,430,443,2001,2090],[348,411,419,423,426,428,429,430,443,1997,2001],[348,411,419,423,426,428,429,430,443,2001],[348,411,419,423,426,428,429,430,443,1662,1771],[348,411,419,423,426,428,429,430,443,1662,1998,2089],[348,411,419,423,426,428,429,430,443,2023,2026],[348,411,419,423,426,428,429,430,443,1662,2029],[348,411,419,423,426,428,429,430,443,1662,1700],[348,411,419,423,426,428,429,430,443,2000,2001],[348,411,419,423,426,428,429,430,443,1997,2002,2015],[348,411,419,423,426,428,429,430,443,2002,2017],[348,411,419,423,426,428,429,430,443,1664,2019],[348,411,419,423,426,428,429,430,443,1664,1771,1772],[348,411,419,423,426,428,429,430,443,1664,1998,2021,2089],[348,411,419,423,426,428,429,430,443,2002,2023,2090],[348,411,419,423,426,428,429,430,443,2024,2025],[348,411,419,423,426,428,429,430,443,1664,2083],[348,411,419,423,426,428,429,430,443,1664,2027],[348,411,419,423,426,428,429,430,443,1664,2029,2030],[348,411,419,423,426,428,429,430,443,1664,1700,2032],[348,411,419,423,426,428,429,430,443,2000,2002,2034],[348,411,419,423,426,428,429,430,443,2002,2036],[348,411,419,423,426,428,429,430,443,1659,2089,2091],[348,411,419,423,426,428,429,430,443,1659,1664,2089,2090],[348,411,419,423,426,428,429,430,443,1659,1936,2089],[348,411,419,423,426,428,429,430,443,451,460,1659,1704,1816,1935,1938,2040,2089,2091,2092,2093,2094,2095],[348,411,419,423,426,428,429,430,443,451,1659,1704,1935,1937,1938,1939,1941,2089],[348,411,419,423,426,428,429,430,443,1935],[348,411,419,423,426,428,429,430,443,1963,1964,1965],[348,411,419,423,426,428,429,430,443,1659,1935,1940],[348,411,419,423,426,428,429,430,443,1941,1957,1958,1959],[348,411,419,423,426,428,429,430,443,1942],[348,411,419,423,426,428,429,430,443,1942,2089,2096,2097],[348,411,419,423,426,428,429,430,443,1816,1936,1952,2071,2091,2092,2093,2094],[348,411,419,423,426,428,429,430,443,1936],[348,411,419,423,426,428,429,430,443,1935,2120],[348,411,419,423,426,428,429,430,443,451,460,1704,1938],[348,411,419,423,426,428,429,430,443,1952,2096],[348,411,419,423,426,428,429,430,443,451,1659],[348,411,419,423,426,428,429,430,443,1704,2028,2090],[348,411,419,423,426,428,429,430,443,1659,1704,1705,1716,1719,1724,2089],[348,411,419,423,426,428,429,430,443,1659,1974,1977,2089],[348,411,419,423,426,428,429,430,443,1975],[348,411,419,423,426,428,429,430,443,1938,1974],[348,411,419,423,426,428,429,430,443,1905,1916],[348,411,419,423,426,428,429,430,443,460,1659,1660,1661,1662,1663,1664,1668,1669,1675,1691,1692,1693,1694,1695,1696,1697,1699,1700,1701,1702,1704,1705,1706,1707,1708,1709,1710,1712,1713,1714,1715,1716,1717,1719,1720,1723,1724,1728,1729,1731,1732,1749,1765,1766,1768,1771,1774,1775,1776,1778,1779,1780,1781,1782,1783,1784,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1817,1818,1819,1820,1821,1822,1823,1824,1825,1904,1905,1906,1907,1908,1909,1910,1911,1913,1914,1916,1921,1923,1924,1925,1927,1931,1932,1933,1935,1938,1942,1944,1947,1948,1951,1952,1953,1954,1955,1962,1969,1973,1977,1978,1979,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1993,1994,1995,1996,1997,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2023,2024,2026,2027,2028,2029,2032,2033,2034,2035,2036,2037,2038,2039,2041,2042,2043,2045,2047,2052,2053,2057,2058,2060,2061,2062,2063,2064,2065,2066,2073,2082,2084,2088,2089,2090,2091,2096,2097,2098,2099,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119],[348,411,419,423,426,428,429,430,443,1921,2043,2044],[348,411,419,423,426,428,429,430,443,1732,1916],[348,411,419,423,426,428,429,430,443,1659,1977],[348,411,419,423,426,428,429,430,443,1664,1668,2089,2090],[348,411,419,423,426,428,429,430,443,1967],[348,411,419,423,426,428,429,430,443,2079,2080],[348,411,419,423,426,428,429,430,443,2079],[348,411,419,423,426,428,429,430,443,1675,1676],[348,411,419,423,426,428,429,430,443,1659,1675,1676,1916,2089],[348,411,419,423,426,428,429,430,443,1674,1916],[348,411,419,423,426,428,429,430,443,2048],[348,411,419,423,426,428,429,430,443,2049],[348,411,419,423,426,428,429,430,443,1704,1938,1979,2050,2051,2053,2089],[348,411,419,423,426,428,429,430,443,1659,1671,1916,1921],[348,411,419,423,426,428,429,430,443,1659,1725,1726,1916,1921],[348,411,419,423,426,428,429,430,443,1916],[348,411,419,423,426,428,429,430,443,1916,1921],[348,411,419,423,426,428,429,430,443,1659,1671,1727],[348,411,419,423,426,428,429,430,443,1659,1671,1673,1702,1903,1912,1916,1921],[348,411,419,423,426,428,429,430,443,1659,1671,1916],[348,411,419,423,426,428,429,430,443,1659,1664,1671,1673,1687,1696,1699,1700,1702,1724,1728,1765,1783,1794,1797,1798,1817,1888,1903,1904,1912,1914,1916,1921,1922,1923,1924,1925,1926,1927,1928,1931,1932,1933,1934,1943,2089],[348,411,419,423,426,428,429,430,443,1659,1664,1671,1673,1697,1699,1702,1725,1726,1732,1763,1903,1905,1912,1916,1917,1918,1919,1920],[348,411,419,423,426,428,429,430,443,1659,1699,1921],[348,411,419,423,426,428,429,430,443,1659,1664,1700,1763,1764],[348,411,419,423,426,428,429,430,443,1659,1781],[348,411,419,423,426,428,429,430,443,1780],[348,411,419,423,426,428,429,430,443,1659,1700],[348,411,419,423,426,428,429,430,443,1664,1700],[348,411,419,423,426,428,429,430,443,1659,1664,1673,1700,1714,1718,1724],[348,411,419,423,426,428,429,430,443,1659,1771,1787],[348,411,419,423,426,428,429,430,443,1664,1700,1704,1774,1786],[348,411,419,423,426,428,429,430,443,1704,1785],[348,411,419,423,426,428,429,430,443,1659,1700,1702,1710],[348,411,419,423,426,428,429,430,443,1659,1664,1699,1700],[348,411,419,423,426,428,429,430,443,1659,1664,1700],[348,411,419,423,426,428,429,430,443,1659,1916,1944],[348,411,419,423,426,428,429,430,443,1659,1664,1697,1698,1699,1921],[348,411,419,423,426,428,429,430,443,1659,1700,1702,1712,1713,1716,1719,1724],[348,411,419,423,426,428,429,430,443,1659,1702,1721,1722,1724],[348,411,419,423,426,428,429,430,443,1659,1664,1700,1716,1719,1721,1722,1723],[348,411,419,423,426,428,429,430,443,1673,1721],[348,411,419,423,426,428,429,430,443,1708,1712,1713,1716,1717,1719,1720],[348,411,419,423,426,428,429,430,443,1659,1664,1699,1700,1763,1799,1944,2089],[348,411,419,423,426,428,429,430,443,1659,1801],[348,411,419,423,426,428,429,430,443,1659,1664,1673,1700,1703,1706,1714,1715,1718,1724],[348,411,419,423,426,428,429,430,443,1659,1664,1700,1707,1708,1709,1712,1713,1716,1719,1724],[348,411,419,423,426,428,429,430,443,1700,1724],[348,411,419,423,426,428,429,430,443,1659,1664,1696,1699,1700,1763],[348,411,419,423,426,428,429,430,443,1659,1700,1702,1766],[348,411,419,423,426,428,429,430,443,1659,1664,1700,1763,1767,1768,1774,1777,1778,1779],[348,411,419,423,426,428,429,430,443,1659,1771,1773,2090],[348,411,419,423,426,428,429,430,443,1659,1664,1769,1770,2090],[348,411,419,423,426,428,429,430,443,1659,2090],[348,411,419,423,426,428,429,430,443,1659,1664,1775,1776,1777,2090],[348,411,419,423,426,428,429,430,443,1659,1664,1778,2090],[348,411,419,423,426,428,429,430,443,1775],[348,411,419,423,426,428,429,430,443,1659,1778,2090],[348,411,419,423,426,428,429,430,443,1775,1904,2059],[348,411,419,423,426,428,429,430,443,1673,1700,1714],[348,411,419,423,426,428,429,430,443,1659,1700,1718,1724,1944,2089],[348,411,419,423,426,428,429,430,443,1659,1699,1700,1712,1724],[348,411,419,423,426,428,429,430,443,1659,1673,1700,1714,1718,1724],[348,411,419,423,426,428,429,430,443,1659,1664,1699,1700,1763,1816],[348,411,419,423,426,428,429,430,443,1659,1702,1710,1712],[348,411,419,423,426,428,429,430,443,1659,1664,1673,1700,1702,1710,1711,1714,1718,1724,2089],[348,411,419,423,426,428,429,430,443,1659,1664,1699,1700,1728,1916,1921],[348,411,419,423,426,428,429,430,443,1659,1696,1700],[348,411,419,423,426,428,429,430,443,1659,1700,1702,1820,1823,1824],[348,411,419,423,426,428,429,430,443,1659,1700,1702,1821],[348,411,419,423,426,428,429,430,443,1700,1823],[348,411,419,423,426,428,429,430,443,1659,1700,1904,1905,1916],[348,411,419,423,426,428,429,430,443,1659,1664,1673,1700,1703,1714,1718,1724],[348,411,419,423,426,428,429,430,443,1664,1700,1778],[348,411,419,423,426,428,429,430,443,1678,1686],[348,411,419,423,426,428,429,430,443,1678,1921],[348,411,419,423,426,428,429,430,443,1678,1681],[348,411,419,423,426,428,429,430,443,1673,1678,1921],[348,411,419,423,426,428,429,430,443,1659,1671,1672,1673,1675,1677,1678,1679,1680,1682,1683,1684,1687,1688,1701,1712,1713,1724,1729,1915,1921,1944,2090],[348,411,419,423,426,428,429,430,443,1659,1916],[348,411,419,423,426,428,429,430,443,1673,1702,1903,1912,1916,1921],[348,411,419,423,426,428,429,430,443,1659,1664,1696,1700,1904,1914,1921],[348,411,419,423,426,428,429,430,443,1826],[348,411,419,423,426,428,429,430,443,1659,1664,1743,1914],[348,411,419,423,426,428,429,430,443,1659,1762,1831],[348,411,419,423,426,428,429,430,443,1659,1833,1914],[348,411,419,423,426,428,429,430,443,1659,1830,1833,1841,1914],[348,411,419,423,426,428,429,430,443,1749],[348,411,419,423,426,428,429,430,443,1914],[348,411,419,423,426,428,429,430,443,1659,1664,1697,1698,1913,1921],[348,411,419,423,426,428,429,430,443,1659,1762,1833,1838,1914],[348,411,419,423,426,428,429,430,443,1659,1762,1833,1838,1841,1914],[348,411,419,423,426,428,429,430,443,1659,1762,1838,1914],[348,411,419,423,426,428,429,430,443,1659,1762,1830,1833,1838,1841,1845,1846,1914],[348,411,419,423,426,428,429,430,443,1659,1762,1830,1838,1914],[348,411,419,423,426,428,429,430,443,1659,1762,1830,1833,1838,1914],[348,411,419,423,426,428,429,430,443,1659,1830,1914],[348,411,419,423,426,428,429,430,443,1853],[348,411,419,423,426,428,429,430,443,1659,1761,1762,1838,1914],[348,411,419,423,426,428,429,430,443,1659,1838,1914],[348,411,419,423,426,428,429,430,443,1659,1762,1830,1833,1838,1846,1914],[348,411,419,423,426,428,429,430,443,1659,1749,1762],[348,411,419,423,426,428,429,430,443,1659,1749,1751,1830],[348,411,419,423,426,428,429,430,443,1659,1748,1749,1833,1838],[348,411,419,423,426,428,429,430,443,1659,1664,1732,1742,1743,1748,1914],[348,411,419,423,426,428,429,430,443,1659,1749,1761,1762,1838],[348,411,419,423,426,428,429,430,443,1659,1762,1874],[348,411,419,423,426,428,429,430,443,1659,1755,1757,1761,1762,1833,1876,1914],[348,411,419,423,426,428,429,430,443,1659,1762,1833,1914],[348,411,419,423,426,428,429,430,443,1831],[348,411,419,423,426,428,429,430,443,1659,1748,1762,1833,1838,1914],[348,411,419,423,426,428,429,430,443,1659,1831,1883],[348,411,419,423,426,428,429,430,443,1659,1749,1838],[348,411,419,423,426,428,429,430,443,1659,1696,1914],[348,411,419,423,426,428,429,430,443,1659,1664,1673,1702,1744,1746,1749,1750,1751,1753,1755,1756,1757,1761,1762,1903,1912,1914,1921],[348,411,419,423,426,428,429,430,443,1896],[348,411,419,423,426,428,429,430,443,1659,1749,1750,1751,1762,1833],[348,411,419,423,426,428,429,430,443,1659,1762,1833,1838,1893],[348,411,419,423,426,428,429,430,443,1659,1841,1893,1895],[348,411,419,423,426,428,429,430,443,1659,1749,1762,1838],[348,411,419,423,426,428,429,430,443,1659,1671,1701,1713,1727],[348,411,419,423,426,428,429,430,443,1659,1944],[348,411,419,423,426,428,429,430,443,1664,2090],[348,411,419,423,426,428,429,430,443,2052,2089],[348,411,419,423,426,428,429,430,443,1659,1732,1904,1916,1917,1929,1930,1944,2089],[348,411,419,423,426,428,429,430,443,2064],[348,411,419,423,426,428,429,430,443,1664,2065,2090],[348,411,419,423,426,428,429,430,443,1916,1931,1944],[348,411,419,423,426,428,429,430,443,1659],[348,411,419,423,426,428,429,430,443,1659,1754,2089],[348,411,419,423,426,428,429,430,443,1659,1755,2089],[348,411,419,423,426,428,429,430,443,1659,2089],[348,411,419,423,426,428,429,430,443,1659,1753,2089],[348,411,419,423,426,428,429,430,443,1659,1894,2089],[348,411,419,423,426,428,429,430,443,1659,1840,2089],[348,411,419,423,426,428,429,430,443,1659,1760,2089],[348,411,419,423,426,428,429,430,443,1659,1750,2089],[348,411,419,423,426,428,429,430,443,1659,1747,2089],[348,411,419,423,426,428,429,430,443,1659,1752,2089],[348,411,419,423,426,428,429,430,443,1659,1742,2089],[348,411,419,423,426,428,429,430,443,1659,1756,2089],[348,411,419,423,426,428,429,430,443,1659,1751,2089],[348,411,419,423,426,428,429,430,443,1659,1758,1759,2089],[348,411,419,423,426,428,429,430,443,1659,1744,1745,2089],[348,411,419,423,426,428,429,430,443,1659,1746,2089],[348,411,419,423,426,428,429,430,443,1916,1922],[348,411,419,423,426,428,429,430,443,1659,1916,1922],[348,411,419,423,426,428,429,430,443,460,1659,1704,2089],[348,411,419,423,426,428,429,430,443,1708,1712,1713,1716,1717,1719],[348,411,419,423,426,428,429,430,443,1659,1704,2087,2090],[348,411,416,419,423,426,428,429,430,438,443,448,451,460,461,1659,1664,1669,1673,1675,1691,1692,1693,1694,1695,1696,1697,1699,1700,1701,1702,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1722,1723,1724,1727,1728,1729,1731,1732,1735,1741,1742,1743,1744,1746,1747,1748,1749,1750,1751,1753,1755,1756,1757,1760,1761,1762,1765,1766,1767,1768,1771,1774,1775,1776,1778,1779,1780,1781,1782,1783,1784,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1894,1895,1896,1897,1898,1899,1900,1901,1902,1904,1905,1906,1907,1908,1909,1910,1911,1913,1914,1915,1916,1918,1920,1921,1923,1924,1925,1927,1931,1932,1933,1935,1938,1942,1944,1952,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1993,1994,1995,1996,1997,1998,2000,2002,2004,2006,2008,2010,2012,2014,2016,2018,2020,2022,2024,2026,2028,2029,2031,2033,2035,2037,2038,2039,2040,2041,2042,2043,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2060,2061,2062,2063,2064,2065,2066,2067,2069,2072,2073,2074,2075,2076,2077,2078,2081,2082,2084,2086,2088,2090,2091,2095,2096],[348,411,419,423,426,428,429,430,443,1659,1798,2089,2090],[348,411,419,423,426,428,429,430,443,1951,1972,1977,2103],[348,411,419,423,426,428,429,430,443,1659,2117],[348,411,419,423,426,428,429,430,443,1669,2089,2107,2116],[348,411,419,423,426,428,429,430,443,1659,1704,1944,2067,2068,2069,2070,2071,2089],[348,411,419,423,426,428,429,430,443,1659,2028,2090],[348,411,419,423,426,428,429,430,443,2067],[348,411,419,423,426,428,429,430,443,2062,2089],[348,411,419,423,426,428,429,430,443,1535],[348,411,419,423,426,428,429,430,443,1537,1539,1540],[348,411,419,423,426,428,429,430,443,805,1538],[348,411,419,423,426,428,429,430,443,758],[348,411,419,423,426,428,429,430,443,760,761,762,763],[348,411,419,423,426,428,429,430,443,706,769,770],[348,411,419,423,426,428,429,430,443,478,479,481,493,517,632,643,751],[348,411,419,423,426,428,429,430,443,481,512,513,514,516,751],[348,411,419,423,426,428,429,430,443,481,649,651,653,654,656,751,753],[348,411,419,423,426,428,429,430,443,481,515,552,751],[348,411,419,423,426,428,429,430,443,479,481,492,493,499,505,510,631,632,633,642,751,753],[348,411,419,423,426,428,429,430,443,751],[348,411,419,423,426,428,429,430,443,488,494,513,533,628],[348,411,419,423,426,428,429,430,443,481],[348,411,419,423,426,428,429,430,443,474,488,494],[348,411,419,423,426,428,429,430,443,660],[348,411,419,423,426,428,429,430,443,657,658,660],[348,411,419,423,426,428,429,430,443,657,659,751],[348,411,419,423,425,426,428,429,430,443,533,730,748],[348,411,419,423,425,426,428,429,430,443,604,607,623,628,748],[348,411,419,423,425,426,428,429,430,443,576,748],[348,411,419,423,426,428,429,430,443,636],[348,411,419,423,426,428,429,430,443,635,636,637],[348,411,419,423,426,428,429,430,443,635],[345,348,411,419,423,425,426,428,429,430,443,474,481,493,499,505,511,513,517,518,531,532,599,629,630,643,751,755],[348,411,419,423,426,428,429,430,443,478,481,515,552,649,650,655,751,803],[348,411,419,423,426,428,429,430,443,515,803],[348,411,419,423,426,428,429,430,443,478,532,701,751,803],[348,411,419,423,426,428,429,430,443,803],[348,411,419,423,426,428,429,430,443,481,515,516,803],[348,411,419,423,426,428,429,430,443,652,803],[348,411,419,423,426,428,429,430,443,518,631,634,641],[339,348,411,419,423,426,428,429,430,443,706],[348,411,419,423,426,428,429,430,441,443,488,503],[348,411,419,423,426,428,429,430,443,488,503],[339,348,411,419,423,426,428,429,430,443,573],[339,348,411,419,423,426,428,429,430,443,494,503,706],[348,411,419,423,426,428,429,430,443,488,559,573,574,785,792],[348,411,419,423,426,428,429,430,443,558,786,787,788,789,791],[348,411,419,423,426,428,429,430,443,609],[348,411,419,423,426,428,429,430,443,609,610],[348,411,419,423,426,428,429,430,443,492,494,561,562],[348,411,419,423,426,428,429,430,443,494,568,569],[348,411,419,423,426,428,429,430,443,494,563,571],[348,411,419,423,426,428,429,430,443,568],[348,411,419,423,426,428,429,430,443,486,494,561,562,563,564,565,566,567,568,571],[348,411,419,423,426,428,429,430,443,494,561,568,569,570,572],[348,411,419,423,426,428,429,430,443,494,562,564,565],[348,411,419,423,426,428,429,430,443,562,564,567,569],[348,411,419,423,426,428,429,430,443,790],[348,411,419,423,426,428,429,430,443,494],[339,348,411,419,423,426,428,429,430,443,482,779],[339,348,411,419,423,426,428,429,430,443,460],[339,348,411,419,423,426,428,429,430,443,515,550],[339,348,411,419,423,426,428,429,430,443,515,643],[348,411,419,423,426,428,429,430,443,548,553],[339,348,411,419,423,426,428,429,430,443,549,757],[348,411,419,423,426,428,429,430,443,2240],[339,343,348,411,419,423,425,426,428,429,430,443,469,470,471,472,473,755,799,3506],[348,411,419,423,425,426,428,429,430,443,494],[348,411,419,423,425,426,428,429,430,443,493,498,579,596,638,639,643,698,700,751,752],[348,411,419,423,426,428,429,430,443,531,640],[348,411,419,423,426,428,429,430,443,755],[348,411,419,423,426,428,429,430,443,480],[339,348,411,419,423,426,428,429,430,443,485,488,703,719,721],[348,411,419,423,426,428,429,430,441,443,488,703,718,719,720,802],[348,411,419,423,426,428,429,430,443,712,713,714,715,716,717],[348,411,419,423,426,428,429,430,443,714],[348,411,419,423,426,428,429,430,443,718],[348,411,419,423,426,428,429,430,443,503,667,668,670],[339,348,411,419,423,426,428,429,430,443,494,661,662,663,664,669],[348,411,419,423,426,428,429,430,443,667,669],[348,411,419,423,426,428,429,430,443,665],[348,411,419,423,426,428,429,430,443,666],[339,348,411,419,423,426,428,429,430,443,503,549,757],[339,348,411,419,423,426,428,429,430,443,503,756,757],[339,348,411,419,423,426,428,429,430,443,503,757],[348,411,419,423,426,428,429,430,443,596,597],[348,411,419,423,426,428,429,430,443,597],[348,411,419,423,425,426,428,429,430,443,752,757],[348,411,419,423,426,428,429,430,443,626],[348,410,411,419,423,426,428,429,430,443,625],[348,411,419,423,426,428,429,430,443,488,494,500,502,604,617,621,623,700,703,740,741,748,752],[348,411,419,423,426,428,429,430,443,494,543,565],[348,411,419,423,426,428,429,430,443,604,615,618,623],[339,348,411,419,423,426,428,429,430,443,485,488,604,607,623,626,660,707,708,709,710,711,722,723,724,725,726,727,728,729,803],[348,411,419,423,426,428,429,430,443,485,488,513,604,611,612,613,616,617],[348,411,419,423,426,428,429,430,443,448,494,513,615,622,703,704,748],[348,411,419,423,426,428,429,430,443,619],[348,411,419,423,425,426,428,429,430,441,443,482,494,498,508,540,541,544,596,599,664,698,699,740,751,752,753,755,803],[348,411,419,423,426,428,429,430,443,485,486,488],[348,411,419,423,426,428,429,430,443,604],[348,410,411,419,423,426,428,429,430,443,513,540,541,598,599,600,601,602,603,752],[348,411,419,423,426,428,429,430,443,623],[348,410,411,419,423,426,428,429,430,443,487,488,498,502,538,604,611,612,613,614,615,618,619,620,621,622,741],[348,411,419,423,425,426,428,429,430,443,538,539,611,752,753],[348,411,419,423,426,428,429,430,443,513,541,596,599,604,700,752],[348,411,419,423,425,426,428,429,430,443,751,753],[348,411,419,423,425,426,428,429,430,443,448,748,752,753],[348,411,419,423,425,426,428,429,430,441,443,474,488,493,500,502,505,508,515,535,540,541,542,543,544,579,580,582,585,587,590,591,592,593,595,643,698,700,748,751,752,753],[348,411,419,423,425,426,428,429,430,443,448],[348,411,419,423,426,428,429,430,443,481,482,483,511,748,749,750,755,757,803],[348,411,419,423,426,428,429,430,443,478,479,751],[348,411,419,423,426,428,429,430,443,672],[348,411,419,423,425,426,428,429,430,443,448,460,490,656,660,661,662,663,664,670,671,803],[348,411,419,423,426,428,429,430,441,443,460,474,488,490,502,505,541,580,585,595,596,649,676,677,678,684,687,688,698,700,748,751],[348,411,419,423,426,428,429,430,443,505,511,518,531,541,599,751],[348,411,419,423,425,426,428,429,430,443,460,482,493,502,541,682,748,751],[348,411,419,423,426,428,429,430,443,702],[348,411,419,423,425,426,428,429,430,443,672,685,686,695],[348,411,419,423,426,428,429,430,443,748,751],[348,411,419,423,426,428,429,430,443,601,741],[348,411,419,423,426,428,429,430,443,502,540,643,757],[348,411,419,423,425,426,428,429,430,441,443,480,585,645,649,678,684,687,690,748],[348,411,419,423,425,426,428,429,430,443,518,531,649,691],[348,411,419,423,426,428,429,430,443,481,542,643,693,751,753],[348,411,419,423,425,426,428,429,430,443,460,664,751],[348,411,419,423,425,426,428,429,430,443,515,542,643,644,645,654,672,692,694,751],[345,348,411,419,423,425,426,428,429,430,443,540,697,755,757],[348,411,419,423,426,428,429,430,443,594,698],[348,411,419,423,425,426,428,429,430,441,443,488,491,493,494,500,502,508,517,518,531,541,544,580,582,592,595,596,643,676,677,678,679,681,683,698,700,748,757],[348,411,419,423,425,426,428,429,430,443,448,518,684,689,695,748],[348,411,419,423,426,428,429,430,443,521,522,523,524,525,526,527,528,529,530],[348,411,419,423,426,428,429,430,443,535,586],[348,411,419,423,426,428,429,430,443,588],[348,411,419,423,426,428,429,430,443,586],[348,411,419,423,426,428,429,430,443,588,589],[348,411,419,423,425,426,428,429,430,443,492,493,494,498,499,752],[348,411,419,423,425,426,428,429,430,441,443,480,482,500,504,540,543,544,578,698,748,753,755,757],[348,411,419,423,425,426,428,429,430,441,443,460,484,491,492,502,504,541,696,741,747,752],[348,411,419,423,426,428,429,430,443,611],[348,411,419,423,426,428,429,430,443,612],[348,411,419,423,426,428,429,430,443,494,505,740],[348,411,419,423,426,428,429,430,443,613],[348,411,419,423,426,428,429,430,443,487],[348,411,419,423,426,428,429,430,443,489,501],[348,411,419,423,425,426,428,429,430,443,489,493,500],[348,411,419,423,426,428,429,430,443,496,501],[348,411,419,423,426,428,429,430,443,497],[348,411,419,423,426,428,429,430,443,489,490],[348,411,419,423,426,428,429,430,443,489,545],[348,411,419,423,426,428,429,430,443,489],[348,411,419,423,426,428,429,430,443,491,535,584],[348,411,419,423,426,428,429,430,443,583],[348,411,419,423,426,428,429,430,443,488,490,491],[348,411,419,423,426,428,429,430,443,491,581],[348,411,419,423,426,428,429,430,443,488,490],[348,411,419,423,426,428,429,430,443,540,643],[348,411,419,423,426,428,429,430,443,740],[348,411,419,423,425,426,428,429,430,443,460,500,502,506,540,643,697,700,703,704,705,731,732,735,739,741,748,752],[348,411,419,423,426,428,429,430,443,554,557,559,560,573,574],[339,348,411,419,423,426,428,429,430,443,471,473,503,733,734],[339,348,411,419,423,426,428,429,430,443,471,473,503,733,734,738],[348,411,419,423,426,428,429,430,443,627],[348,411,419,423,426,428,429,430,443,513,534,539,540,604,605,606,607,608,610,623,624,626,629,697,700,751,753],[348,411,419,423,426,428,429,430,443,573],[348,411,419,423,425,426,428,429,430,443,578,748],[348,411,419,423,426,428,429,430,443,578],[348,411,419,423,425,426,428,429,430,443,500,546,575,577,579,697,748,755,757],[348,411,419,423,426,428,429,430,443,554,555,556,557,559,560,573,574,756],[345,348,411,419,423,425,426,428,429,430,441,443,460,489,490,502,508,540,541,544,643,695,696,698,748,751,752,755],[348,411,419,423,426,428,429,430,443,485,488,495],[348,411,419,423,426,428,429,430,443,539,541,673,676],[348,411,419,423,426,428,429,430,443,539,674,742,743,744,745,746],[348,411,419,423,425,426,428,429,430,443,535,751],[348,411,419,423,425,426,428,429,430,443],[348,411,419,423,426,428,429,430,443,538,623],[348,411,419,423,426,428,429,430,443,537],[348,411,419,423,426,428,429,430,443,539,592],[348,411,419,423,426,428,429,430,443,536,538,751],[348,411,419,423,425,426,428,429,430,443,484,539,673,674,675,748,751,752],[339,348,411,419,423,426,428,429,430,443,488,494,572],[339,348,411,419,423,426,428,429,430,443,486],[348,411,419,423,426,428,429,430,443,476,477],[339,348,411,419,423,426,428,429,430,443,482],[339,348,411,419,423,426,428,429,430,443,488,558],[339,345,348,411,419,423,426,428,429,430,443,540,544,755,757],[348,411,419,423,426,428,429,430,443,482,779,780],[339,348,411,419,423,426,428,429,430,443,553],[339,348,411,419,423,426,428,429,430,441,443,460,480,547,549,551,552,757],[348,411,419,423,426,428,429,430,443,488,515,752],[348,411,419,423,426,428,429,430,443,488,680],[339,348,411,419,423,425,426,428,429,430,441,443,478,480,553,651,755,756],[339,348,411,419,423,426,428,429,430,443,469,470,471,472,473,755,800,3506],[339,340,341,342,343,348,411,419,423,426,428,429,430,443],[348,411,419,423,426,428,429,430,443,646,647,648],[348,411,419,423,426,428,429,430,443,646],[339,343,348,411,419,423,425,426,427,428,429,430,441,443,468,469,470,471,472,473,474,480,508,513,690,718,753,754,757,800,3506],[348,411,419,423,426,428,429,430,443,765],[348,411,419,423,426,428,429,430,443,767],[348,411,419,423,426,428,429,430,443,771],[348,411,419,423,426,428,429,430,443,2241],[348,411,419,423,426,428,429,430,443,773],[348,411,419,423,426,428,429,430,443,775,776,777],[348,411,419,423,426,428,429,430,443,781],[344,348,411,419,423,426,428,429,430,443,759,764,766,768,772,774,778,782,784,794,795,797,801,802,803,804],[348,411,419,423,426,428,429,430,443,783],[348,411,419,423,426,428,429,430,443,793],[348,411,419,423,426,428,429,430,443,549],[348,411,419,423,426,428,429,430,443,796],[348,410,411,419,423,426,428,429,430,443,539,673,674,676,742,743,745,746,798,800],[348,411,419,423,426,428,429,430,443,468],[348,411,419,423,426,428,429,430,443,2335],[348,411,419,423,426,428,429,430,443,2335,2336,2342],[348,411,419,423,426,428,429,430,443,2335,2336],[348,411,419,423,426,428,429,430,443,2335,2336,2337,2338,2339,2340,2341],[348,411,419,423,426,428,429,430,443,468,1416,1417,1418],[348,411,419,423,426,428,429,430,443,448,468,1416],[348,411,419,423,426,428,429,430,443,2313],[348,411,419,423,426,428,429,430,443,2314],[348,411,419,423,426,428,429,430,443,2355,2360,2361,2369,2371,2372,2374,2377,2380,2395,2396,2399,2402,2403,2406,2410,2414,2415,2417,2418,2421,2422,2425,2428,2431,2432,2435,2436,2439,2442,2445,2447,2450,2454,2457],[339,348,411,419,423,426,428,429,430,443,2860],[348,411,419,423,426,428,429,430,443,2893],[348,411,419,423,426,428,429,430,443,2854],[348,411,419,423,426,428,429,430,443,2894],[348,411,419,423,426,428,429,430,443,2739,2835,2891,2892],[348,411,419,423,426,428,429,430,443,2854,2855,2893,2894],[339,348,411,419,423,426,428,429,430,443,2860,2895],[339,348,411,419,423,426,428,429,430,443,2855],[339,348,411,419,423,426,428,429,430,443,2895],[339,348,411,419,423,426,428,429,430,443,2863],[348,411,419,423,426,428,429,430,443,2836,2837,2838,2839,2840,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881],[348,411,419,423,426,428,429,430,443,2883,2884,2885,2886,2887,2888,2889],[348,411,419,423,426,428,429,430,443,2860],[348,411,419,423,426,428,429,430,443,2897],[348,411,419,423,426,428,429,430,443,2481,2852,2853,2858,2860,2882,2890,2895,2896,2898,2906],[348,411,419,423,426,428,429,430,443,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851],[348,411,419,423,426,428,429,430,443,2860,2893],[348,411,419,423,426,428,429,430,443,2839,2840,2852,2853,2856,2858,2891],[348,411,419,423,426,428,429,430,443,2856,2857,2859,2891],[339,348,411,419,423,426,428,429,430,443,2853,2891,2893],[348,411,419,423,426,428,429,430,443,2856,2891],[339,348,411,419,423,426,428,429,430,443,2852,2853,2882,2890],[339,348,411,419,423,426,428,429,430,443,2855,2856,2857,2891,2894],[348,411,419,423,426,428,429,430,443,2899,2900,2901,2902,2903,2904,2905],[339,348,411,419,423,426,428,429,430,443,3488],[348,411,419,423,426,428,429,430,443,3488,3489,3490,3491,3494,3495,3496,3497,3498,3499,3500,3503,3504],[348,411,419,423,426,428,429,430,443,3488],[348,411,419,423,426,428,429,430,443,3492,3493],[339,348,411,419,423,426,428,429,430,443,3485,3488],[348,411,419,423,426,428,429,430,443,3482,3483,3485],[348,411,419,423,426,428,429,430,443,3478,3481,3483,3485],[348,411,419,423,426,428,429,430,443,3482,3485],[339,348,411,419,423,426,428,429,430,443,3473,3474,3475,3478,3479,3480,3482,3483,3484,3485],[348,411,419,423,426,428,429,430,443,3475,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487],[348,411,419,423,426,428,429,430,443,3482],[348,411,419,423,426,428,429,430,443,3476,3482,3483],[348,411,419,423,426,428,429,430,443,3476,3477],[348,411,419,423,426,428,429,430,443,3481,3483,3484],[348,411,419,423,426,428,429,430,443,3481],[348,411,419,423,426,428,429,430,443,3473,3478,3481,3483,3484],[339,348,411,419,423,426,428,429,430,443,3478,3481,3482,3483],[348,411,419,423,426,428,429,430,443,3501,3502],[339,348,411,419,423,426,428,429,430,443,2952,2963,2968,2974,2975,2982,2984,2985,2987,3028,3031],[339,348,411,419,423,426,428,429,430,443,2952,2963,2968,2973,2975,2984,2988,2989,2991,2992,3028,3031],[339,348,411,419,423,426,428,429,430,443,2984,2989,3033],[339,348,411,419,423,426,428,429,430,443,2967,3031],[339,348,411,419,423,426,428,429,430,443,2951,2952,2954,2963,3031],[339,348,411,419,423,426,428,429,430,443,2952,2963,2984,3022,3031],[339,348,411,419,423,426,428,429,430,443,2952,2990,3011,3015,3031],[339,348,411,419,423,426,428,429,430,443,2975,2998,2999,3031,3072],[339,348,411,419,423,426,428,429,430,443,2952,2963,2968,2974,2975,3028,3031],[339,348,411,419,423,426,428,429,430,443,2952,2954,2989,3003,3055],[339,348,411,419,423,426,428,429,430,443,2950,2952,2954,3003],[339,348,411,419,423,426,428,429,430,443,2952,2954,2983,3003,3004,3031],[339,348,411,419,423,426,428,429,430,443,2952,2963,2966,2970,2974,2975,2999,3013,3014,3028,3031],[339,348,411,419,423,426,428,429,430,443,2956,2963,3031],[339,348,411,419,423,426,428,429,430,443,2956,2963,3028,3031],[348,411,419,423,426,428,429,430,443,2951,3031],[348,411,419,423,426,428,429,430,443,2963,3031],[339,348,411,419,423,426,428,429,430,443,3031],[339,348,411,419,423,426,428,429,430,443,2989,2999,3031],[339,348,411,419,423,426,428,429,430,443,2951,2999,3031],[339,348,411,419,423,426,428,429,430,443,2999,3031],[339,348,411,419,423,426,428,429,430,443,2964],[339,348,411,419,423,426,428,429,430,443,2952,2999,3031],[339,348,411,419,423,426,428,429,430,443,2950,2952,3031],[339,348,411,419,423,426,428,429,430,443,2951,2952,2953,3031],[339,348,411,419,423,426,428,429,430,443,2951,2952,2954,3031,3083],[339,348,411,419,423,426,428,429,430,443,2976,2977,2978],[339,348,411,419,423,426,428,429,430,443,2963,2965,2966,2977,2999,3031,3034],[348,411,419,423,426,428,429,430,443,3021,3031],[348,411,419,423,426,428,429,430,443,2963,2964,2983,3026,3028,3031],[348,411,419,423,426,428,429,430,443,2950,2951,2952,2954,2955,2956,2963,2964,2966,2974,2975,2976,2979,2983,2986,2989,2990,2999,3003,3005,3011,3013,3014,3015,3016,3023,3026,3027,3028,3031,3032,3033,3035,3036,3037,3038,3039,3040,3041,3042,3044,3046,3048,3049,3050,3051,3052,3053,3056,3057,3058,3059,3060,3061,3062,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072,3073,3074,3075,3076,3078,3079,3080,3081,3082],[339,348,411,419,423,426,428,429,430,443,2952,2968,2975,2994,2996,3031,3047],[339,348,411,419,423,426,428,429,430,443,2952,2956,2963,3004,3031,3045],[339,348,411,419,423,426,428,429,430,443,2952,2963],[339,348,411,419,423,426,428,429,430,443,2952,2956,2963,3004,3031,3043],[339,348,411,419,423,426,428,429,430,443,2952,2975,2983,2995,3004,3031],[339,348,411,419,423,426,428,429,430,443,2952,2963,2968,2973,2975,2984,3028,3031,3039,3047,3050],[339,348,411,419,423,426,428,429,430,443,2973,3031],[339,348,411,419,423,426,428,429,430,443,2988,3031],[348,411,419,423,426,428,429,430,443,2957,2962,3031],[348,411,419,423,426,428,429,430,443,2955,2956,2957,2962,3028,3031],[348,411,419,423,426,428,429,430,443,2957,2962,2967],[348,411,419,423,426,428,429,430,443,2957,2962,2998,3016,3031],[348,411,419,423,426,428,429,430,443,2957,2962,2963,2968,2969,2970,2987,2992,2993,2996,2997,3031],[348,411,419,423,426,428,429,430,443,2957,2962,2976,2979,3031],[348,411,419,423,426,428,429,430,443,2957,2962,2999,3031],[348,411,419,423,426,428,429,430,443,2957,2962,2963],[348,411,419,423,426,428,429,430,443,2957,2962],[348,411,419,423,426,428,429,430,443,2957,2962,2963,3002,3003,3005],[348,411,419,423,426,428,429,430,443,2957,2962,2963,3002,3031],[348,411,419,423,426,428,429,430,443,2957,2962,2964,2986,3031],[348,411,419,423,426,428,429,430,443,2982,2998,3021,3031],[348,411,419,423,426,428,429,430,443,2963,2968,2981,2982,2983,2998,3006,3009,3017,3021,3023,3024,3025,3027,3031],[348,411,419,423,426,428,429,430,443,2963,2968,2981,2982],[348,411,419,423,426,428,429,430,443,3021],[348,411,419,423,426,428,429,430,443,2962,2963,2968,2980,2998,2999,3000,3001,3006,3007,3008,3009,3010,3017,3018,3019,3020],[348,411,419,423,426,428,429,430,443,2957,2962,2963,2965,2966,2998,3031],[348,411,419,423,426,428,429,430,443,2968,2981,2986,2998,3031],[348,411,419,423,426,428,429,430,443,2981,2991,2998],[348,411,419,423,426,428,429,430,443,2968,2998,3031],[339,348,411,419,423,426,428,429,430,443,2966,2994,2995,2998,3031],[348,411,419,423,426,428,429,430,443,2998],[348,411,419,423,426,428,429,430,443,2981,2998],[348,411,419,423,426,428,429,430,443,2966,2968,2998,3031],[348,411,419,423,426,428,429,430,443,2984,2998,3031],[348,411,419,423,426,428,429,430,443,2999,3031],[339,348,411,419,423,426,428,429,430,443,2989,2990,3031],[348,411,419,423,426,428,429,430,443,2966,2973,2980,2982,2983,2999,3028,3031],[339,348,411,419,423,426,428,429,430,443,3051],[339,348,411,419,423,426,428,429,430,443,2998,3012,3015,3031],[339,348,411,419,423,426,428,429,430,443,2986,2990,3011,3015,3031,3058,3059,3060,3073],[339,348,411,419,423,426,428,429,430,443,3031,3044,3046,3048,3049,3051],[348,411,419,423,426,428,429,430,443,3031],[348,411,419,423,426,428,429,430,443,2956,3031],[348,411,419,423,426,428,429,430,443,2963,3031,3077],[348,411,419,423,426,428,429,430,443,2973,2981,2984,2998],[339,348,411,419,423,426,428,429,430,443,2994,3054],[339,348,411,419,423,426,428,429,430,443,2949,2950,2951,2954,2955,2956,2963,2964,2965,2968,2986,2994,3028,3029,3030,3083],[348,411,419,423,426,428,429,430,443,2957],[348,411,419,423,426,428,429,430,443,1565],[348,411,419,423,426,428,429,430,443,1560,1562,1565],[348,411,419,423,426,428,429,430,443,1561,1562],[348,411,419,423,426,428,429,430,443,1562,1565,1569],[348,411,419,423,426,428,429,430,443,1561],[348,411,419,423,426,428,429,430,443,1562,1565],[348,411,419,423,426,428,429,430,443,1560,1561,1562,1564],[348,411,419,423,426,428,429,430,443,1560,1562],[348,411,419,423,426,428,429,430,443,1561,1562,1571],[348,411,419,423,426,428,429,430,443,1588,1630],[348,411,419,423,426,428,429,430,443,1617],[348,411,419,423,426,428,429,430,443,1613,1630],[348,411,419,423,426,428,429,430,443,1612,1613,1614,1617,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638],[348,411,419,423,426,428,429,430,443,1634],[348,411,419,423,426,428,429,430,443,1614,1617,1635,1636],[348,411,419,423,426,428,429,430,443,1633,1637],[348,411,419,423,426,428,429,430,443,1612,1615,1616],[348,411,419,423,426,428,429,430,443,1615],[348,411,419,423,426,428,429,430,443,1612,1613,1614,1617,1629],[348,411,419,423,426,428,429,430,443,1618,1623,1629],[348,411,419,423,426,428,429,430,443,1629],[348,411,419,423,426,428,429,430,443,1618,1629],[348,411,419,423,426,428,429,430,443,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628],[348,411,419,423,426,428,429,430,443,448,468],[348,411,419,423,426,428,429,430,443,1585],[323,348,411,419,423,426,428,429,430,443],[302,323,324,325,348,411,419,423,426,428,429,430,443],[235,302,348,411,419,423,426,428,429,430,443],[303,304,305,306,307,348,411,419,423,426,428,429,430,443],[235,348,411,419,423,426,428,429,430,443],[308,309,310,311,348,411,419,423,426,428,429,430,443],[302,348,411,419,423,426,428,429,430,443],[293,348,411,419,423,426,428,429,430,443],[313,314,315,316,317,318,348,411,419,423,426,428,429,430,443],[235,291,302,312,319,322,348,411,419,423,426,428,429,430,443],[237,290,293,295,348,411,419,423,426,428,429,430,443],[298,299,348,411,419,423,426,428,429,430,443],[290,292,293,295,296,348,411,419,423,426,428,429,430,443],[235,237,289,348,411,419,423,426,428,429,430,443],[294,348,411,419,423,426,428,429,430,443],[235,236,289,291,292,294,296,348,411,419,423,426,428,429,430,443],[235,237,293,294,296,348,411,419,423,426,428,429,430,443],[288,348,411,419,423,426,428,429,430,443],[235,289,290,348,411,419,423,426,428,429,430,443],[293,294,348,411,419,423,426,428,429,430,443],[296,297,348,411,419,423,426,428,429,430,443],[294,296,297,348,411,419,423,426,428,429,430,443],[236,237,289,290,292,293,294,295,296,300,301,348,411,419,423,426,428,429,430,443],[207,234,348,411,419,423,426,428,429,430,443],[320,321,348,411,419,423,426,428,429,430,443],[207,258,267,278,281,348,411,419,423,426,428,429,430,443],[207,279,286,348,411,419,423,426,428,429,430,443],[207,238,239,348,411,419,423,426,428,429,430,443],[240,241,242,243,244,245,246,247,248,249,250,348,411,419,423,426,428,429,430,443],[207,238,348,411,419,423,426,428,429,430,443],[238,240,241,242,243,244,245,246,247,248,249,250,251,348,411,419,423,426,428,429,430,443],[252,253,258,279,281,283,284,287,348,411,419,423,426,428,429,430,443],[207,282,348,411,419,423,426,428,429,430,443],[207,258,281,348,411,419,423,426,428,429,430,443],[207,253,279,281,284,348,411,419,423,426,428,429,430,443],[207,282,283,348,411,419,423,426,428,429,430,443],[207,229,348,411,419,423,426,428,429,430,443],[285,348,411,419,423,426,428,429,430,443],[207,259,264,277,279,348,411,419,423,426,428,429,430,443],[207,253,258,259,264,277,279,348,411,419,423,426,428,429,430,443],[207,258,259,264,277,279,348,411,419,423,426,428,429,430,443],[260,261,262,263,265,266,267,268,269,270,271,272,273,274,275,276,278,280,348,411,419,423,426,428,429,430,443],[207,252,253,258,259,260,261,262,263,277,279,348,411,419,423,426,428,429,430,443],[259,260,261,262,263,265,266,268,269,270,271,272,273,274,275,276,277,278,280,348,411,419,423,426,428,429,430,443],[207,254,348,411,419,423,426,428,429,430,443],[255,256,281,348,411,419,423,426,428,429,430,443],[254,348,411,419,423,426,428,429,430,443],[207,252,253,281,348,411,419,423,426,428,429,430,443],[255,256,257,348,411,419,423,426,428,429,430,443],[78,204,348,411,419,423,426,428,429,430,443],[203,206,348,411,419,423,426,428,429,430,443],[348,363,366,369,370,411,419,423,426,428,429,430,443,460],[348,366,411,419,423,426,428,429,430,443,448,460],[348,366,370,411,419,423,426,428,429,430,443,460],[348,360,411,419,423,426,428,429,430,443],[348,364,411,419,423,426,428,429,430,443],[348,362,363,366,411,419,423,426,428,429,430,443,460],[348,411,419,423,426,428,429,430,432,443,457],[348,360,411,419,423,426,428,429,430,443,468],[348,362,366,411,419,423,426,428,429,430,432,443,460],[348,357,358,359,361,365,411,419,422,423,426,428,429,430,443,448,460],[348,366,375,383,411,419,423,426,428,429,430,443],[348,358,364,411,419,423,426,428,429,430,443],[348,366,392,393,411,419,423,426,428,429,430,443],[348,358,361,366,411,419,423,426,428,429,430,443,451,460,468],[348,366,411,419,423,426,428,429,430,443],[348,362,366,411,419,423,426,428,429,430,443,460],[348,357,411,419,423,426,428,429,430,443],[348,360,361,362,364,365,366,367,368,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,393,394,395,396,397,411,419,423,426,428,429,430,443],[348,366,385,388,411,419,423,426,428,429,430,443],[348,366,375,376,377,411,419,423,426,428,429,430,443],[348,364,366,376,378,411,419,423,426,428,429,430,443],[348,365,411,419,423,426,428,429,430,443],[348,358,360,366,411,419,423,426,428,429,430,443],[348,366,370,376,378,411,419,423,426,428,429,430,443],[348,370,411,419,423,426,428,429,430,443],[348,364,366,369,411,419,423,426,428,429,430,443,460],[348,358,362,366,375,411,419,423,426,428,429,430,443],[348,366,385,411,419,423,426,428,429,430,443],[348,378,411,419,423,426,428,429,430,443],[348,360,366,392,411,419,423,426,428,429,430,443,451,466,468],[348,411,419,423,426,428,429,430,443,2948],[348,411,419,423,426,428,429,430,443,2972],[348,411,419,423,426,428,429,430,443,1557],[348,411,419,422,423,425,426,427,428,429,430,432,443,448,457,460,467,468,1557,1558,1559,1566,1567,1568,1570,1572,1574,1576,1577,1587,1607,1611,1640,1641,1642,1643],[348,411,419,423,426,428,429,430,443,1557,1558,1559,1573],[348,411,419,423,426,428,429,430,443,1608,1609],[348,411,419,423,426,428,429,430,443,1603],[348,411,419,423,426,428,429,430,443,1601,1603],[348,411,419,423,426,428,429,430,443,1592,1600,1601,1602,1604,1606],[348,411,419,423,426,428,429,430,443,1590],[348,411,419,423,426,428,429,430,443,1593,1598,1603,1606],[348,411,419,423,426,428,429,430,443,1589,1606],[348,411,419,423,426,428,429,430,443,1593,1594,1597,1598,1599,1606],[348,411,419,423,426,428,429,430,443,1593,1594,1595,1597,1598,1606],[348,411,419,423,426,428,429,430,443,1590,1591,1592,1593,1594,1598,1599,1600,1602,1603,1604,1606],[348,411,419,423,426,428,429,430,443,1606],[348,411,419,423,426,428,429,430,443,1588,1590,1591,1592,1593,1594,1595,1597,1598,1599,1600,1601,1602,1603,1604,1605],[348,411,419,423,426,428,429,430,443,1588,1606],[348,411,419,423,426,428,429,430,443,1593,1595,1596,1598,1599,1606],[348,411,419,423,426,428,429,430,443,1597,1606],[348,411,419,423,426,428,429,430,443,1598,1599,1603,1606],[348,411,419,423,426,428,429,430,443,1591,1601],[348,411,419,423,426,428,429,430,443,1559],[348,411,419,423,426,428,429,430,443,1639],[348,411,419,423,426,428,429,430,443,1575],[348,411,419,423,426,428,429,430,443,1610],[348,411,419,423,426,428,429,430,443,1566,1577,1643],[348,411,419,423,426,428,429,430,443,1586],[348,411,419,423,426,428,429,430,443,1566,1643],[348,411,419,423,426,428,429,430,443,2132],[348,411,419,423,426,428,429,430,443,1556,2137,3602],[348,411,419,423,426,428,429,430,443,1546,1549,1551,1552,1645,1646,1647,1649,1650,1653,1654,2128,2129,2131,3602],[348,411,419,423,426,428,429,430,443,1649,2122,2123,3602],[348,411,419,423,426,428,429,430,443,1649,1650,1657,3602],[348,411,419,423,426,428,429,430,443,1549,1551,1649,1650,1653,3602],[348,411,419,423,426,428,429,430,443,1574],[348,411,419,423,426,428,429,430,443,1549,1556,1649,1650,1653,2124,3602],[348,411,419,423,426,428,429,430,443,1643,2135,2137],[348,411,414,419,423,426,428,429,430,443,448,1549,1551,1556,1643,1647,1649,1650,1653,1654,1657,1658,2121,2124,2127,2128,2129,2133,2134,2137,3602],[348,411,419,423,426,428,429,430,443,1574,1649,1650,1653,3602],[348,411,419,423,426,428,429,430,443,1649,2122,2123,2124,3602],[348,411,419,423,426,428,429,430,443,1574,1649,1654,1655,1656,3602],[348,411,414,419,423,426,428,429,430,443,448,1549,1551,1556,1574,1643,1647,1649,1650,1653,1654,1655,1656,1657,1658,2121,2122,2123,2124,2127,2128,2129,2133,2134,2135,2136,2137,3602],[348,411,419,423,426,428,429,430,443,1546,1549,1551,1556,1574,1647,1649,1650,1653,1654,1655,1656,1657,1658,2122,2123,2124,2127,3602,3603,3604,3605,3606,3611],[348,411,419,423,426,428,429,430,443,1549,1551,1649,1650,1653,1654,2122,2123,2124,3602,3604],[348,411,419,423,426,428,429,430,443,2120],[348,411,419,423,426,428,429,430,443,2221],[348,411,419,423,426,428,429,430,443,3570,3571,3582],[348,411,419,423,426,428,429,430,443,3572,3573],[348,411,419,423,426,428,429,430,443,3570,3571,3572,3574,3575,3580],[348,411,419,423,426,428,429,430,443,3571,3572],[348,411,419,423,426,428,429,430,443,3580],[348,411,419,423,426,428,429,430,443,3581],[348,411,419,423,426,428,429,430,443,3572],[348,411,419,423,426,428,429,430,443,3570,3571,3572,3575,3576,3577,3578,3579],[348,411,419,423,426,428,429,430,443,2212],[348,411,419,423,426,428,429,430,443,2212,2215],[348,411,419,423,426,428,429,430,443,2207,2210,2212,2213,2214,2215,2216,2217,2218,2219,2220],[348,411,419,423,426,428,429,430,443,2146,2148,2215],[348,411,419,423,426,428,429,430,443,2212,2213],[348,411,419,423,426,428,429,430,443,2147,2212,2214],[348,411,419,423,426,428,429,430,443,2148,2150,2152,2153,2154,2155],[348,411,419,423,426,428,429,430,443,2150,2152,2154,2155],[348,411,419,423,426,428,429,430,443,2150,2152,2154],[348,411,419,423,426,428,429,430,443,2147,2150,2152,2153,2155],[348,411,419,423,426,428,429,430,443,2146,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2207,2208,2209,2210,2211],[348,411,419,423,426,428,429,430,443,2146,2148,2149,2152],[348,411,419,423,426,428,429,430,443,2148,2149,2152],[348,411,419,423,426,428,429,430,443,2152,2155],[348,411,419,423,426,428,429,430,443,2146,2147,2149,2150,2151,2153,2154,2155],[348,411,419,423,426,428,429,430,443,2146,2147,2148,2152,2212],[348,411,419,423,426,428,429,430,443,2152,2153,2154,2155],[348,411,419,423,426,428,429,430,443,2231],[348,411,419,423,426,428,429,430,443,2154],[348,411,419,423,426,428,429,430,443,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206],[348,411,419,423,426,428,429,430,443,2273,2333,2344,2345,2346,2347,2348,2349],[348,411,419,423,426,428,429,430,443,2252,2273,2329],[348,411,419,423,426,428,429,430,443,2273,2330],[348,411,419,423,426,428,429,430,443,2252,2321,2328,2330,2331,2345,2350],[348,411,419,423,426,428,429,430,443,2273,2350],[348,411,419,423,426,428,429,430,443,2333,2344],[348,411,419,423,426,428,429,430,443,2252,2330,2332,2345],[348,411,419,423,426,428,429,430,443,2317,2334,2342,2343],[348,411,419,423,426,428,429,430,443,2252,2328,2331],[348,411,419,423,426,428,429,430,443,2273,2346],[348,411,419,423,426,428,429,430,443,3585],[339,348,411,419,423,426,428,429,430,443,2298,2458,3551],[339,348,411,419,423,426,428,429,430,443,2458,3551],[339,348,411,419,423,426,428,429,430,443,2353,3551],[348,411,419,423,426,428,429,430,443,2458],[339,348,411,419,423,426,428,429,430,443,2353,2458,3551],[339,348,411,419,423,426,428,429,430,443,2298,2467,3551],[339,348,411,419,423,426,428,429,430,443,2469,3551],[348,411,419,423,426,428,429,430,443,2353,2458,3551],[339,348,411,419,423,426,428,429,430,443,2298,2907,3551],[339,348,411,419,423,426,428,429,430,443,3551],[339,348,411,419,423,426,428,429,430,443,2298,2945,3551],[339,348,411,419,423,426,428,429,430,443,3083,3551],[339,348,411,419,423,426,428,429,430,443,2298,3461,3551],[339,348,411,419,423,426,428,429,430,443,2298,3463,3551],[339,348,411,419,423,426,428,429,430,443,3467,3551],[348,411,419,423,426,428,429,430,443,2353,3551],[339,348,411,419,423,426,428,429,430,443,3472,3505,3506,3551],[348,411,419,423,426,428,429,430,443,3548,3549],[339,348,411,419,423,426,428,429,430,443,802,2298,2458,3509,3551],[348,411,419,423,426,428,429,430,443,2353,2354,2459,2460,2461,2462,2463,2464,2468,2470,2471,2472,2473,2908,2909,2946,3084,3085,3086,3462,3464,3465,3466,3468,3469,3470,3471,3507,3508,3510,3511,3512,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3525,3526,3527,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3542,3544,3545,3546,3547,3550],[339,348,411,419,423,426,428,429,430,443,2298,3513,3551],[339,348,411,419,423,426,428,429,430,443,2298,3551],[339,348,411,419,423,426,428,429,430,443,2298,2353,2458,3551],[348,411,419,423,426,428,429,430,443,2298,3524,3551],[339,348,411,419,423,426,428,429,430,443,3528,3551],[348,411,419,423,426,428,429,430,443,2298,3541,3543],[348,411,419,423,426,428,429,430,443,2298,3551],[339,348,411,419,423,426,428,429,430,443,471,473,2298,3551],[339,348,411,419,423,426,428,429,430,443,2298,3541,3551],[66,68,73,77,199,202,326,348,411,419,423,426,428,429,430,435,443],[66,328,348,411,419,423,426,428,429,430,443],[66,72,331,334,348,411,419,423,426,428,429,430,443],[348,411,419,423,426,428,429,430,443,460,2138,2225]],"fileInfos":[{"version":"bcd24271a113971ba9eb71ff8cb01bc6b0f872a85c23fdbe5d93065b375933cd","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f88bedbeb09c6f5a6645cb24c7c55f1aa22d19ae96c8e6959cbd8b85a707bc6","impliedFormat":1},{"version":"7fe93b39b810eadd916be8db880dd7f0f7012a5cc6ffb62de8f62a2117fa6f1f","impliedFormat":1},{"version":"bb0074cc08b84a2374af33d8bf044b80851ccc9e719a5e202eacf40db2c31600","impliedFormat":1},{"version":"1a7daebe4f45fb03d9ec53d60008fbf9ac45a697fdc89e4ce218bc94b94f94d6","impliedFormat":1},{"version":"f94b133a3cb14a288803be545ac2683e0d0ff6661bcd37e31aaaec54fc382aed","impliedFormat":1},{"version":"f59d0650799f8782fd74cf73c19223730c6d1b9198671b1c5b3a38e1188b5953","impliedFormat":1},{"version":"8a15b4607d9a499e2dbeed9ec0d3c0d7372c850b2d5f1fb259e8f6d41d468a84","impliedFormat":1},{"version":"26e0fe14baee4e127f4365d1ae0b276f400562e45e19e35fd2d4c296684715e6","impliedFormat":1},{"version":"d6b1eba8496bdd0eed6fc8a685768fe01b2da4a0388b5fe7df558290bffcf32f","affectsGlobalScope":true,"impliedFormat":1},{"version":"7f57fc4404ff020bc45b9c620aff2b40f700b95fe31164024c453a5e3c163c54","impliedFormat":1},{"version":"eadcffda2aa84802c73938e589b9e58248d74c59cb7fcbca6474e3435ac15504","affectsGlobalScope":true,"impliedFormat":1},{"version":"105ba8ff7ba746404fe1a2e189d1d3d2e0eb29a08c18dded791af02f29fb4711","affectsGlobalScope":true,"impliedFormat":1},{"version":"00343ca5b2e3d48fa5df1db6e32ea2a59afab09590274a6cccb1dbae82e60c7c","affectsGlobalScope":true,"impliedFormat":1},{"version":"ebd9f816d4002697cb2864bea1f0b70a103124e18a8cd9645eeccc09bdf80ab4","affectsGlobalScope":true,"impliedFormat":1},{"version":"2c1afac30a01772cd2a9a298a7ce7706b5892e447bb46bdbeef720f7b5da77ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"7b0225f483e4fa685625ebe43dd584bb7973bbd84e66a6ba7bbe175ee1048b4f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c0a4b8ac6ce74679c1da2b3795296f5896e31c38e888469a8e0f99dc3305de60","affectsGlobalScope":true,"impliedFormat":1},{"version":"3084a7b5f569088e0146533a00830e206565de65cae2239509168b11434cd84f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5079c53f0f141a0698faa903e76cb41cd664e3efb01cc17a5c46ec2eb0bef42","affectsGlobalScope":true,"impliedFormat":1},{"version":"32cafbc484dea6b0ab62cf8473182bbcb23020d70845b406f80b7526f38ae862","affectsGlobalScope":true,"impliedFormat":1},{"version":"fca4cdcb6d6c5ef18a869003d02c9f0fd95df8cfaf6eb431cd3376bc034cad36","affectsGlobalScope":true,"impliedFormat":1},{"version":"b93ec88115de9a9dc1b602291b85baf825c85666bf25985cc5f698073892b467","affectsGlobalScope":true,"impliedFormat":1},{"version":"f5c06dcc3fe849fcb297c247865a161f995cc29de7aa823afdd75aaaddc1419b","affectsGlobalScope":true,"impliedFormat":1},{"version":"b77e16112127a4b169ef0b8c3a4d730edf459c5f25fe52d5e436a6919206c4d7","affectsGlobalScope":true,"impliedFormat":1},{"version":"fbffd9337146eff822c7c00acbb78b01ea7ea23987f6c961eba689349e744f8c","affectsGlobalScope":true,"impliedFormat":1},{"version":"a995c0e49b721312f74fdfb89e4ba29bd9824c770bbb4021d74d2bf560e4c6bd","affectsGlobalScope":true,"impliedFormat":1},{"version":"c7b3542146734342e440a84b213384bfa188835537ddbda50d30766f0593aff9","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce6180fa19b1cccd07ee7f7dbb9a367ac19c0ed160573e4686425060b6df7f57","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f02e2476bccb9dbe21280d6090f0df17d2f66b74711489415a8aa4df73c9675","affectsGlobalScope":true,"impliedFormat":1},{"version":"45e3ab34c1c013c8ab2dc1ba4c80c780744b13b5676800ae2e3be27ae862c40c","affectsGlobalScope":true,"impliedFormat":1},{"version":"805c86f6cca8d7702a62a844856dbaa2a3fd2abef0536e65d48732441dde5b5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e42e397f1a5a77994f0185fd1466520691456c772d06bf843e5084ceb879a0ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"f4c2b41f90c95b1c532ecc874bd3c111865793b23aebcc1c3cbbabcd5d76ffb0","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab26191cfad5b66afa11b8bf935ef1cd88fabfcb28d30b2dfa6fad877d050332","affectsGlobalScope":true,"impliedFormat":1},{"version":"2088bc26531e38fb05eedac2951480db5309f6be3fa4a08d2221abb0f5b4200d","affectsGlobalScope":true,"impliedFormat":1},{"version":"cb9d366c425fea79716a8fb3af0d78e6b22ebbab3bd64d25063b42dc9f531c1e","affectsGlobalScope":true,"impliedFormat":1},{"version":"500934a8089c26d57ebdb688fc9757389bb6207a3c8f0674d68efa900d2abb34","affectsGlobalScope":true,"impliedFormat":1},{"version":"689da16f46e647cef0d64b0def88910e818a5877ca5379ede156ca3afb780ac3","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc21cc8b6fee4f4c2440d08035b7ea3c06b3511314c8bab6bef7a92de58a2593","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ca53d13d2957003abb47922a71866ba7cb2068f8d154877c596d63c359fed25","affectsGlobalScope":true,"impliedFormat":1},{"version":"54725f8c4df3d900cb4dac84b64689ce29548da0b4e9b7c2de61d41c79293611","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5594bc3076ac29e6c1ebda77939bc4c8833de72f654b6e376862c0473199323","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f3eb332c2d73e729f3364fcc0c2b375e72a121e8157d25a82d67a138c83a95c","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f4427f9642ce8d500970e4e69d1397f64072ab73b97e476b4002a646ac743b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"48915f327cd1dea4d7bd358d9dc7732f58f9e1626a29cc0c05c8c692419d9bb7","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7bf9377723203b5a6a4b920164df22d56a43f593269ba6ae1fdc97774b68855","affectsGlobalScope":true,"impliedFormat":1},{"version":"db9709688f82c9e5f65a119c64d835f906efe5f559d08b11642d56eb85b79357","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b25b8c874acd1a4cf8444c3617e037d444d19080ac9f634b405583fd10ce1f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"37be57d7c90cf1f8112ee2636a068d8fd181289f82b744160ec56a7dc158a9f5","affectsGlobalScope":true,"impliedFormat":1},{"version":"a917a49ac94cd26b754ab84e113369a75d1a47a710661d7cd25e961cc797065f","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d3261badeb7843d157ef3e6f5d1427d0eeb0af0cf9df84a62cfd29fd47ac86e","affectsGlobalScope":true,"impliedFormat":1},{"version":"195daca651dde22f2167ac0d0a05e215308119a3100f5e6268e8317d05a92526","affectsGlobalScope":true,"impliedFormat":1},{"version":"8b11e4285cd2bb164a4dc09248bdec69e9842517db4ca47c1ba913011e44ff2f","affectsGlobalScope":true,"impliedFormat":1},{"version":"0508571a52475e245b02bc50fa1394065a0a3d05277fbf5120c3784b85651799","affectsGlobalScope":true,"impliedFormat":1},{"version":"8f9af488f510c3015af3cc8c267a9e9d96c4dd38a1fdff0e11dc5a544711415b","affectsGlobalScope":true,"impliedFormat":1},{"version":"fc611fea8d30ea72c6bbfb599c9b4d393ce22e2f5bfef2172534781e7d138104","affectsGlobalScope":true,"impliedFormat":1},{"version":"f128dae7c44d8f35ee42e0a437000a57c9f06cc04f8b4fb42eebf44954d53dc8","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ecb8e347cb6b2a8927c09b86263663289418df375f5e68e11a0ae683776978f","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ce14b81c5cc821994aa8ec1d42b220dd41b27fcc06373bce3958af7421b77d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3a048b3e9302ef9a34ef4ebb9aecfb28b66abb3bce577206a79fee559c230da","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","impliedFormat":1},{"version":"90e3d740eff78b612777fa7fa3f6bf52b4f6a22f0170e4f7ed8b563a71692e64","impliedFormat":1},{"version":"ded607207bf06c710374236e35694d6149a2f709ebb7a8d0e82c7bbc9d76d622","impliedFormat":1},{"version":"e0d39e173693cbdf07bd3190760a62a2f3e1e6256badbc367d90b900e2a957b9","impliedFormat":1},{"version":"5c664521f52ed5260b000259af06e4a47ce5c4d20f90b1fae2b67b088c00f885","impliedFormat":1},{"version":"90e3d740eff78b612777fa7fa3f6bf52b4f6a22f0170e4f7ed8b563a71692e64","impliedFormat":99},{"version":"609b856db23a2d242e539dd1b6f5d4b02f18a07103b67cfbf9f8f304ef735b30","impliedFormat":99},{"version":"151ff381ef9ff8da2da9b9663ebf657eac35c4c9a19183420c05728f31a6761d","impliedFormat":1},{"version":"0f6d2591c6dbab10e42a87df2e9cfdf1673cb4001a03f32c75ad1a327329080a","impliedFormat":1},{"version":"37ecd7aa9e464b72ca1286207dc7567bff2214cd73e9da6bf9b5d3274707e210","impliedFormat":1},{"version":"ba3cb8eac8836e194aab59cc7bc6a622d2a0d4bd4041b97550d0d1a21e45fd41","impliedFormat":1},{"version":"0cbdc76a71578cb1a06a59fbc0b42efe0a89aecbcf9924b55bccd969de595e8a","impliedFormat":1},{"version":"ac450542cbfd50a4d7bf0f3ec8aeedb9e95791ecc6f2b2b19367696bd303e8c6","impliedFormat":1},{"version":"8a190298d0ff502ad1c7294ba6b0abb3a290fc905b3a00603016a97c363a4c7a","impliedFormat":1},{"version":"3cf631a6ae0060fddf4898c816958e39f47e16570faf7bc7048c774c83cd7a7e","impliedFormat":1},{"version":"6f0cfca5ff9a0268ac5d6f4728820b33edcfcd2134714ccc28db64da2fba96ea","impliedFormat":1},{"version":"c967e03c8dbb4770f7e2f0b71b5d13593de679a41cc2b60266c4b69f1342a263","impliedFormat":1},{"version":"84cbc9f6dee75c8b5e27b17d7ecfe17abd0820a2fb2a8745f7029940860bcdec","impliedFormat":1},{"version":"cc512139c85c41ba2dc95076b1ce05786c98129bcfe875017946ba2c82607ef1","impliedFormat":1},{"version":"12bffdbf179bfe787334d1aa31393bac5b79a84d2285ad94bcf36c1cce9eed57","impliedFormat":1},{"version":"e81484fc62d5e6add90882339bb2cdba0c87b85ca4002add438d0771ce2fdfa7","impliedFormat":1},{"version":"92ebc3261b20037c4e078cd3d26bccedb719b3eec653925e103b6ced4a936c0d","impliedFormat":1},{"version":"9acc441d14a127dea0228cd2645203c3285b296f452f723f850dc2941d2b9c7e","impliedFormat":1},{"version":"a4075b7a8211620f01d7a0cffb2d31fde9a2a6a108dec4cbaa3856b6a8e8864a","impliedFormat":1},{"version":"cee9e9bf9a8f67388ee878afd5e172189421bae6625076b774d68563d036fbfd","impliedFormat":1},{"version":"9254b745aad208ce7f8e82e72698dc40573c7cb828ea9d5cdf42a42528a81665","impliedFormat":1},{"version":"7eb92baa673b920122e72e714caf84b78323758a3a214fb6383d717948143668","impliedFormat":1},{"version":"f37616d5f3b755ef9d2765218b06b933faf05cf094d18107cf4c50d81b44b6b0","impliedFormat":1},{"version":"c61e09e2a01aacd789fbcdbea4d386701422b8539ddc0285203d2a6bd0c4c1b5","impliedFormat":1},{"version":"3b78a632fd8d0490bf0eb5f8df1455e6f33028fb7c373d3d75275d06bfb6a7d9","impliedFormat":1},{"version":"d923dc7686f8a0bdabdbb0e8e61e6a95c403a3d6bc6f303af5381c9cd973ee43","impliedFormat":1},{"version":"da633553c8248c6ee21fd93a667d71ba4dcefc64f33632e3dc20ded5cbdd317c","impliedFormat":1},{"version":"050e8efc9defdf21d4c12a2ec280758c13ce66303d3e4e591d003089d99cbe4b","impliedFormat":1},{"version":"d924e653afba6a341ad72c3cbcc62a9c1206d5fcdf02db13fded64bfbca27e87","impliedFormat":1},{"version":"5d1201e776c3167527653c835035e4ad29cd79e0d6b139aa250ca74899e0741e","impliedFormat":1},{"version":"51c8cd199b881a43bf1e5aea40d361f99b0477c0071c85326ea981a48622c45b","impliedFormat":1},{"version":"ee1003cdce99e6cd28c9a9aa3f570cad400b89218b81f8f9d3b05025241d5db4","impliedFormat":1},{"version":"1fdf5c750e4164249aaa3095803330eae7cc9fb2523535811800460b98f8e7ed","impliedFormat":1},{"version":"8674e77147967c8f75aaa22923ebc836dd7620ee0cf52bbe91b89114f8d91413","impliedFormat":1},{"version":"9f4ef6fd452db4c4d5f96293732ee29c03f54755744342809dea96f63fd7227b","impliedFormat":1},{"version":"57cdb6dba0f7f107cd3ec872e52916ea2901c9a80611e7e669c2ccf3a2219f17","impliedFormat":1},{"version":"20d246417a79b06bca6fe01426258a3408068442899b990472e521eafd6ac5b4","impliedFormat":1},{"version":"c3f937028caf49d383b109a93128164de319c1a5ec3796c02da60acb580e1e9a","impliedFormat":1},{"version":"cf3849bd6f54b42c19db6327b026bdefea6c711f8a4e5b060b7e3e9d796f0f38","impliedFormat":1},{"version":"8a60ed93d81f472e270e213c5da23bdfc2a87b6616031f4d397aced25f727217","impliedFormat":1},{"version":"5f2b95921cc6b959e8ca7abc17943382f7e5fe0ea6ef36c5b8dc383def96b1f8","impliedFormat":1},{"version":"43006ce2de2caf33f0e26d937195d197e8b91af1222a1b24532daa3915446c86","impliedFormat":1},{"version":"006577276d8f3b0012b4f856662618082910ed31a71464a42753692be92e4a2a","impliedFormat":1},{"version":"58004a9240ee74db43ce3ab2343cc29473e969adcd592c6fce46939d94512d93","impliedFormat":1},{"version":"492409753b45983851b6d66272f384bcb2dfc045d48eb07e8c8998a571495e63","impliedFormat":1},{"version":"2db60104bde79eac5c47dcfa9738246190173cb76966d88e42959ca8d1ea7e27","impliedFormat":1},{"version":"1fa946b4013f86f5a90107c6cf08850edd290a11b8b400fe3a4c7c24bc800785","impliedFormat":1},{"version":"594c88e45a919f575775b6b5999b4662d583bfdde60709e92b3eb13e053008be","impliedFormat":1},{"version":"9e0b7af2247ab847874dc5ca0a92c4f28f55332b8241591bd06fafd3d184f605","impliedFormat":1},{"version":"39bff71bf16f3a020c438f5ddc1a24ab26c28dad91d324372eabbce88abaec74","impliedFormat":1},{"version":"5a395ff9e24f89cc08679e731889b2ed1bfe451ba76f16184ccef0b742589d13","impliedFormat":1},{"version":"0651a8dd2c6446154e0994391f7bdebbde389dc7ec75ac4a0f727fff5255143c","impliedFormat":1},{"version":"2088a7c3bf5a885904de841f5fa6103d8689e439a3cb3273f3bac69c1b3a3b1b","impliedFormat":1},{"version":"6dbc5313fe49ecbab3215f1cb1733d7348b392f1ca12c331c5720f4ea0036f47","impliedFormat":1},{"version":"3ed4ef1f210705e2c320e5b05787d7b6e74b7920492a76bb8712857bb22fc915","impliedFormat":1},{"version":"6fca2337de679c9c118e9005f3ee7f41725690a923bbff4ee20401e879471acd","impliedFormat":1},{"version":"58f59363f3c50919bdc19c44e68b35bb471548486ca98f6e757de252d5d1e856","impliedFormat":1},{"version":"109381191d7b0beb0de64a68ce3735fff9c91944180bfb6abfe42080b116689b","impliedFormat":1},{"version":"b04f68c5b937801cebf5264072a6f4a1f76050a75fd0830d65ae0bf0275ed1fc","impliedFormat":1},{"version":"ad42060f3e0f92a294748f19d9490a8a6a980fb40dda0fd4627991d1361862cc","impliedFormat":1},{"version":"8c00c7abd1e6e594cb9726674fdc65e4d9681d1e4c890bdbd602096e3b48f917","impliedFormat":1},{"version":"ce6b390be6cdd541f54e393b87ce72b0d1171732f9e93c59716e622a5b2e3be5","impliedFormat":1},{"version":"5aa50acb079a18441d0984acda7d3dbbc66a326fccacb20a75d836e797bc8b80","impliedFormat":1},{"version":"6735eae673357ba7f9fc7e55af3b00e1415b32d3b639c38fb936151f336a5978","impliedFormat":1},{"version":"386ff073cfe770b93867e65c26e969d672aeb42fc5506279c71a0185fd653539","impliedFormat":1},{"version":"e967582e89f2a455eafd8bf1232dd81ee207709a48c07322e996ecb0672148bb","impliedFormat":1},{"version":"25528369e718c89acd957ae0e72b1b5105b1111329d31442d8d639ee020b3fce","impliedFormat":1},{"version":"8764a0ff3269684a2c85a54acd7e90d33876927140e28880b8a4c95e8ca63bd6","impliedFormat":1},{"version":"1d381320cf1cf9990e8bdc6bf43ffe220728fae7adfe45c754a44f8535d22486","impliedFormat":1},{"version":"ea09e3f830cb4da7a144e49803ebd79ad7871e21763fd0a0072ab8fb4aee43b5","impliedFormat":1},{"version":"02cbdc4c83ba725dfb0b9a230d9514eca2769190ea7ef6e6f29816e7ad21ea98","impliedFormat":1},{"version":"8490bd3f838bacccd8496893db204d1e9a559923f5bf54154444bf95596b55df","impliedFormat":1},{"version":"f1e533f10851941ccd2ee623988b26b07aecb84a290eb56627182bc4ca96d1a8","impliedFormat":1},{"version":"5d89916c41cc7051b9c83148d704c4e5aa20343a07efd14b953d16c693eda3ee","impliedFormat":1},{"version":"06124be387e6fc43c6a5727ecb8d6f5380c52878341a2cd065dc968e203029e0","impliedFormat":1},{"version":"44c575e350e5b2c7771137b2797eb3d755b67dd286622158a3855487a6182253","impliedFormat":1},{"version":"a088d5ba9a4fa3a96bcda498268269d163348229c43187950a9b2b7503d46813","impliedFormat":1},{"version":"cf5408ade74fb2ec127a10bb3b1079a386131818bc7ac67a002c4a6c3ec81b62","impliedFormat":1},{"version":"6cf129a29ce866e432f575c5e4c90f44f2fb72d070b9c3901acdb3cbb56fa46d","impliedFormat":1},{"version":"8af2fead6dd3a9cd0471d27018dd49f65f5cc264c4604a11aba4e46b2252eb89","impliedFormat":1},{"version":"677c78ed184c32e4ff0be1e4baf0fbf1a0cccd4f41532527735a2c43edd58a87","impliedFormat":1},{"version":"70415c6e264d10d01f7438d40e1a85b815ace6598e4a73f491b33db7820e1469","impliedFormat":1},{"version":"38fa05ec45e9bddcb55c47b437330c229655e3b0325b07dd72206a10bf329a05","impliedFormat":1},{"version":"8b11a987390721ea4930dcc7aca1dec606a2cd1b03fb27d05e4c995875ee54bb","impliedFormat":1},{"version":"3b05973f4a6dc88d28c125b744dc99d2a527bdb3c567eda1b439d10ce70246f5","impliedFormat":1},{"version":"2ee3f52f480021bd7d23fe72e66ba0ec8d0a464d2295ab612d409d45a3f9d7ae","impliedFormat":1},{"version":"95098f44f9d1961d2b1d1bde703e40819923d6a933ec853834235ba76470848d","impliedFormat":1},{"version":"c56439d9bf05c500219f2db6e49cd4b418f2f9fb14043dee96b2d115276012b8","impliedFormat":1},{"version":"55fa234a04eacdf253e0b46d72f6e3bd8a044339c43547a29cf3b9f29ccd050d","impliedFormat":1},{"version":"20d246417a79b06bca6fe01426258a3408068442899b990472e521eafd6ac5b4","impliedFormat":1},{"version":"9811146d06f6b7615165f0dcd3d2aaea72adb260c8e747449b7a87c4c44f7ff1","impliedFormat":1},{"version":"b4e618b2d4422fa5fae63e999dccb69736b03ec7b0c6fd2d4dc833263d40921c","impliedFormat":1},{"version":"21a06a5d3e4f859723386772d4c481ed5b40f883ecd4ed9a8ec8bcb54a10e542","impliedFormat":1},{"version":"e7f90e75963afebd4c3c5f052703818eb0a7a689d6b2c3a499d9bcc545088095","impliedFormat":1},{"version":"5ef6b0404100d30e3b47c73021f2da740d1fa8088fda5adc741706cb3e73cf13","impliedFormat":1},{"version":"e5aab4fb9c264ecb0f8ca7cd0131b52e189dd5306bdd071802df591d9cf570ff","impliedFormat":1},{"version":"d1342658b16b92d24b961db5c1779dc03fe30194fd6fea0d15dc8e946f82d83f","impliedFormat":1},{"version":"cbd4ff12f799a44b629643edc686aeec830fbb867c69cb6609da57d205057717","impliedFormat":1},{"version":"4f4d1284bc93168a1a0b2888f528aa689828917cdc547802ab29c0d1f553be40","impliedFormat":1},{"version":"fd15b208613892273f0675f55b31c878e22a28d62d306e589867009592f67166","impliedFormat":1},{"version":"ef5bc836c5c0886cd8c9cf1cff6192f4f1e82ef1f8088c9f136586b9860051e0","impliedFormat":1},{"version":"b4db69807a3b111c3b05fa1359832c4793b507341a4d4c3736a80303e769cd91","impliedFormat":1},{"version":"001fc9e5e2a353521cc0807e759f7c5a88cc18a8389568cf94b8809c38f00cd4","impliedFormat":1},{"version":"d14cd6c9001dfa6f96660952945c344370109247764ab42b47d110fcbff678e7","impliedFormat":1},{"version":"03697b6adcb2c37314fe8bd6361912cbcb772914303f8c43c61a5caa6dd6d9b2","impliedFormat":1},{"version":"4db00e3ce9cd4d68249907352b1f6c41c687b58f088bc2c8bff1bc41800bb732","impliedFormat":1},{"version":"316b2ea3cb57f2ccf86a19c4016eebb97eb177f3d5b5dc4b3d0508439afffff0","impliedFormat":1},{"version":"71de65e470fb5a0920472a8b13d37fff8960822e34d709aee14599802c15770c","impliedFormat":1},{"version":"c0cbe98c4e104042383444c718d2ce2d0dd602e6b7d52dc3185bbdf289da1128","impliedFormat":1},{"version":"c3c8297d66976e60076da541ec418590bf26d1056980b9adfea2c14baaf2089e","impliedFormat":1},{"version":"17ec351733c9b9a5de7d0aee5f710ca792a19efc365bed93ec045b885c309fde","impliedFormat":1},{"version":"8bb061c812d97dedb8549ca46cd3b8bae3f2494ef681d9712c64c1b933801ebf","impliedFormat":1},{"version":"969ab03feed7516ece5c6c0468e6c39391ed75317dd641d5600736b131559ad6","impliedFormat":1},{"version":"54e989ecd24eec06935b7770caee22386e9b7cdc47aca29bb2be83080460db36","impliedFormat":1},{"version":"ef4529c51657c83eabdda0b7818c25b6c7d827bfd7a49f38553f7fd3deba94e3","impliedFormat":1},{"version":"89c710eef54f9726d13eb123a800285d9b5cf2eb64d98f4c3a7b0e5a162ad24f","impliedFormat":1},{"version":"a97990e77a23aea39060610aef4b4bb92154d5330ecb0b557324ba4c14a1db41","impliedFormat":1},{"version":"d2b89296b175b0a1a11ce09cc682e6f86b24d34abd1bdf8c932a82c4e99b551a","impliedFormat":1},{"version":"3c85c2b16d0a1fa45095793b90467bcef3bfeaa85b3fdc00ff1eb3c32ca97cb2","impliedFormat":1},{"version":"8cdd09ab2d9fe19d5cb3ca1dcb6c6437d6164a9de46405afe1954e533a77120e","impliedFormat":1},{"version":"b90283ab6c36fc580b06cb293629a9b37eaba24e17ff9ae2f0d874a3f3a962a1","impliedFormat":1},{"version":"c1425155d2396f10be607f43392284b6bfc98b542bb49c611eaa2038b6a72112","impliedFormat":1},{"version":"30e0e58b2b36491323f748cc938b93eba059d354abecee659ba0e9312a842a5d","impliedFormat":1},{"version":"c2d8eccfe4adada4730bbd4f2568627d5d4aeb27cfbc8d39aa974ce33e855977","impliedFormat":1},{"version":"21d0cc7ad656b0348bfd745fb598399c6f9531ffef6ff1b8996fe42c5f185f0a","impliedFormat":1},{"version":"d29d2e64870b453a96329bf0f88eccf270812fb1989e853588fd5f3b0bc94919","impliedFormat":1},{"version":"ea422c1715a51450b3bab549d86f4fd52612c37bac489c347e367e47cc26bda1","impliedFormat":1},{"version":"6eddc1432777582b4797eb53c43b9917b1ba8908a737f7823a7049620f98588b","impliedFormat":1},{"version":"79e7eb72b4d9ca2d268460d35fa7bfe01db96e93659752bd5fc5cbf5c5be8294","impliedFormat":1},{"version":"10ad4c890e509380deb83c8bec650899df9bd70ee20238f2221d6bdc36043a0e","impliedFormat":1},{"version":"1a3b837513da5afd3bb0b228dab3a089fce405344243e372672f641ededf9b48","impliedFormat":1},{"version":"901f6b020440eac80a83a7ca248ca244e2a296be6b1ed8645a884a4509e11fc7","impliedFormat":1},{"version":"e560eb93074ae2ec9986afe7dfe3ea25610c89d8b159c2e0f72362b01c4c7954","impliedFormat":1},{"version":"5b66f0e7118dcad5e4f895b4fbb6f29387ab1568761ae498fceff0ca9412375f","impliedFormat":1},{"version":"a9ad313fc7ae1024d85bf8c24f9a270c9c3214b5cc72a8649752a01ac60b9714","impliedFormat":1},{"version":"311d48fddff6512a6c60609405c8cbb355612e981ade0e7af761d68536feeb10","impliedFormat":1},{"version":"33a1caf57a6f7318c7ce2c8a8a35137bd7c064d140f324e8f47b94cd129305b5","impliedFormat":1},{"version":"cc512139c85c41ba2dc95076b1ce05786c98129bcfe875017946ba2c82607ef1","impliedFormat":1},{"version":"12bffdbf179bfe787334d1aa31393bac5b79a84d2285ad94bcf36c1cce9eed57","impliedFormat":1},{"version":"e81484fc62d5e6add90882339bb2cdba0c87b85ca4002add438d0771ce2fdfa7","impliedFormat":1},{"version":"92ebc3261b20037c4e078cd3d26bccedb719b3eec653925e103b6ced4a936c0d","impliedFormat":1},{"version":"9acc441d14a127dea0228cd2645203c3285b296f452f723f850dc2941d2b9c7e","impliedFormat":1},{"version":"a4075b7a8211620f01d7a0cffb2d31fde9a2a6a108dec4cbaa3856b6a8e8864a","impliedFormat":1},{"version":"92ebc3261b20037c4e078cd3d26bccedb719b3eec653925e103b6ced4a936c0d","impliedFormat":1},{"version":"4bcfacf07ad3f040599fdede3807254c11c27d28f740206419c2d5354a571c72","impliedFormat":1},{"version":"7eb92baa673b920122e72e714caf84b78323758a3a214fb6383d717948143668","impliedFormat":1},{"version":"92ebc3261b20037c4e078cd3d26bccedb719b3eec653925e103b6ced4a936c0d","impliedFormat":1},{"version":"f37616d5f3b755ef9d2765218b06b933faf05cf094d18107cf4c50d81b44b6b0","impliedFormat":1},{"version":"c61e09e2a01aacd789fbcdbea4d386701422b8539ddc0285203d2a6bd0c4c1b5","impliedFormat":1},{"version":"3b78a632fd8d0490bf0eb5f8df1455e6f33028fb7c373d3d75275d06bfb6a7d9","impliedFormat":1},{"version":"d923dc7686f8a0bdabdbb0e8e61e6a95c403a3d6bc6f303af5381c9cd973ee43","impliedFormat":1},{"version":"da633553c8248c6ee21fd93a667d71ba4dcefc64f33632e3dc20ded5cbdd317c","impliedFormat":1},{"version":"050e8efc9defdf21d4c12a2ec280758c13ce66303d3e4e591d003089d99cbe4b","impliedFormat":1},{"version":"d924e653afba6a341ad72c3cbcc62a9c1206d5fcdf02db13fded64bfbca27e87","impliedFormat":1},{"version":"5d1201e776c3167527653c835035e4ad29cd79e0d6b139aa250ca74899e0741e","impliedFormat":1},{"version":"2cb6713aff9ae0ff160ea7cf286806b6a4400f40aac4ae675fa3079b0e60a9c3","impliedFormat":1},{"version":"35e08a4f4dd14289e57a3233276cecaa592ce04f6d7449ed1d3229ba0e76a2e1","impliedFormat":1},{"version":"1fdf5c750e4164249aaa3095803330eae7cc9fb2523535811800460b98f8e7ed","impliedFormat":1},{"version":"8674e77147967c8f75aaa22923ebc836dd7620ee0cf52bbe91b89114f8d91413","impliedFormat":1},{"version":"92ebc3261b20037c4e078cd3d26bccedb719b3eec653925e103b6ced4a936c0d","impliedFormat":1},{"version":"9f4ef6fd452db4c4d5f96293732ee29c03f54755744342809dea96f63fd7227b","impliedFormat":1},{"version":"57cdb6dba0f7f107cd3ec872e52916ea2901c9a80611e7e669c2ccf3a2219f17","impliedFormat":1},{"version":"20d246417a79b06bca6fe01426258a3408068442899b990472e521eafd6ac5b4","impliedFormat":1},{"version":"c3f937028caf49d383b109a93128164de319c1a5ec3796c02da60acb580e1e9a","impliedFormat":1},{"version":"cf3849bd6f54b42c19db6327b026bdefea6c711f8a4e5b060b7e3e9d796f0f38","impliedFormat":1},{"version":"8a60ed93d81f472e270e213c5da23bdfc2a87b6616031f4d397aced25f727217","impliedFormat":1},{"version":"5f2b95921cc6b959e8ca7abc17943382f7e5fe0ea6ef36c5b8dc383def96b1f8","impliedFormat":1},{"version":"43006ce2de2caf33f0e26d937195d197e8b91af1222a1b24532daa3915446c86","impliedFormat":1},{"version":"006577276d8f3b0012b4f856662618082910ed31a71464a42753692be92e4a2a","impliedFormat":1},{"version":"58004a9240ee74db43ce3ab2343cc29473e969adcd592c6fce46939d94512d93","impliedFormat":1},{"version":"492409753b45983851b6d66272f384bcb2dfc045d48eb07e8c8998a571495e63","impliedFormat":1},{"version":"2db60104bde79eac5c47dcfa9738246190173cb76966d88e42959ca8d1ea7e27","impliedFormat":1},{"version":"1fa946b4013f86f5a90107c6cf08850edd290a11b8b400fe3a4c7c24bc800785","impliedFormat":1},{"version":"2105f9dfb4de768168ca5234b185aa508f4a9e9ecdd937400e05fb52734e49c5","impliedFormat":1},{"version":"9e0b7af2247ab847874dc5ca0a92c4f28f55332b8241591bd06fafd3d184f605","impliedFormat":1},{"version":"39bff71bf16f3a020c438f5ddc1a24ab26c28dad91d324372eabbce88abaec74","impliedFormat":1},{"version":"5a395ff9e24f89cc08679e731889b2ed1bfe451ba76f16184ccef0b742589d13","impliedFormat":1},{"version":"0651a8dd2c6446154e0994391f7bdebbde389dc7ec75ac4a0f727fff5255143c","impliedFormat":1},{"version":"2088a7c3bf5a885904de841f5fa6103d8689e439a3cb3273f3bac69c1b3a3b1b","impliedFormat":1},{"version":"6dbc5313fe49ecbab3215f1cb1733d7348b392f1ca12c331c5720f4ea0036f47","impliedFormat":1},{"version":"3ed4ef1f210705e2c320e5b05787d7b6e74b7920492a76bb8712857bb22fc915","impliedFormat":1},{"version":"6fca2337de679c9c118e9005f3ee7f41725690a923bbff4ee20401e879471acd","impliedFormat":1},{"version":"58f59363f3c50919bdc19c44e68b35bb471548486ca98f6e757de252d5d1e856","impliedFormat":1},{"version":"109381191d7b0beb0de64a68ce3735fff9c91944180bfb6abfe42080b116689b","impliedFormat":1},{"version":"b04f68c5b937801cebf5264072a6f4a1f76050a75fd0830d65ae0bf0275ed1fc","impliedFormat":1},{"version":"ad42060f3e0f92a294748f19d9490a8a6a980fb40dda0fd4627991d1361862cc","impliedFormat":1},{"version":"8c00c7abd1e6e594cb9726674fdc65e4d9681d1e4c890bdbd602096e3b48f917","impliedFormat":1},{"version":"ce6b390be6cdd541f54e393b87ce72b0d1171732f9e93c59716e622a5b2e3be5","impliedFormat":1},{"version":"5aa50acb079a18441d0984acda7d3dbbc66a326fccacb20a75d836e797bc8b80","impliedFormat":1},{"version":"6735eae673357ba7f9fc7e55af3b00e1415b32d3b639c38fb936151f336a5978","impliedFormat":1},{"version":"386ff073cfe770b93867e65c26e969d672aeb42fc5506279c71a0185fd653539","impliedFormat":1},{"version":"e967582e89f2a455eafd8bf1232dd81ee207709a48c07322e996ecb0672148bb","impliedFormat":1},{"version":"25528369e718c89acd957ae0e72b1b5105b1111329d31442d8d639ee020b3fce","impliedFormat":1},{"version":"8764a0ff3269684a2c85a54acd7e90d33876927140e28880b8a4c95e8ca63bd6","impliedFormat":1},{"version":"e4ff6f622aea4c2bd44136810e979cd2b8ae41fb94b8d72246a1a449a0146266","impliedFormat":1},{"version":"ea09e3f830cb4da7a144e49803ebd79ad7871e21763fd0a0072ab8fb4aee43b5","impliedFormat":1},{"version":"02cbdc4c83ba725dfb0b9a230d9514eca2769190ea7ef6e6f29816e7ad21ea98","impliedFormat":1},{"version":"228eca402015a3ac3ee5b0726de796244ab2b4db866c2294983b8027ade23338","impliedFormat":1},{"version":"f1e533f10851941ccd2ee623988b26b07aecb84a290eb56627182bc4ca96d1a8","impliedFormat":1},{"version":"5d89916c41cc7051b9c83148d704c4e5aa20343a07efd14b953d16c693eda3ee","impliedFormat":1},{"version":"06124be387e6fc43c6a5727ecb8d6f5380c52878341a2cd065dc968e203029e0","impliedFormat":1},{"version":"44c575e350e5b2c7771137b2797eb3d755b67dd286622158a3855487a6182253","impliedFormat":1},{"version":"a088d5ba9a4fa3a96bcda498268269d163348229c43187950a9b2b7503d46813","impliedFormat":1},{"version":"cf5408ade74fb2ec127a10bb3b1079a386131818bc7ac67a002c4a6c3ec81b62","impliedFormat":1},{"version":"6cf129a29ce866e432f575c5e4c90f44f2fb72d070b9c3901acdb3cbb56fa46d","impliedFormat":1},{"version":"8af2fead6dd3a9cd0471d27018dd49f65f5cc264c4604a11aba4e46b2252eb89","impliedFormat":1},{"version":"677c78ed184c32e4ff0be1e4baf0fbf1a0cccd4f41532527735a2c43edd58a87","impliedFormat":1},{"version":"70415c6e264d10d01f7438d40e1a85b815ace6598e4a73f491b33db7820e1469","impliedFormat":1},{"version":"38fa05ec45e9bddcb55c47b437330c229655e3b0325b07dd72206a10bf329a05","impliedFormat":1},{"version":"8b11a987390721ea4930dcc7aca1dec606a2cd1b03fb27d05e4c995875ee54bb","impliedFormat":1},{"version":"3b05973f4a6dc88d28c125b744dc99d2a527bdb3c567eda1b439d10ce70246f5","impliedFormat":1},{"version":"2ee3f52f480021bd7d23fe72e66ba0ec8d0a464d2295ab612d409d45a3f9d7ae","impliedFormat":1},{"version":"06e13dc31517e5123765206ad170f0625b8a1a1321f702598a0563a9ac7d68c3","impliedFormat":1},{"version":"c56439d9bf05c500219f2db6e49cd4b418f2f9fb14043dee96b2d115276012b8","impliedFormat":1},{"version":"55fa234a04eacdf253e0b46d72f6e3bd8a044339c43547a29cf3b9f29ccd050d","impliedFormat":1},{"version":"9811146d06f6b7615165f0dcd3d2aaea72adb260c8e747449b7a87c4c44f7ff1","impliedFormat":1},{"version":"b4e618b2d4422fa5fae63e999dccb69736b03ec7b0c6fd2d4dc833263d40921c","impliedFormat":1},{"version":"21a06a5d3e4f859723386772d4c481ed5b40f883ecd4ed9a8ec8bcb54a10e542","impliedFormat":1},{"version":"55f4ba9c75263294a97f3d253bf295ae94fd519f544eda4af3cc12b19bc75a66","impliedFormat":1},{"version":"5ef6b0404100d30e3b47c73021f2da740d1fa8088fda5adc741706cb3e73cf13","impliedFormat":1},{"version":"24081c38e738a14e6d002c166ba297a9656cd8b18475b36bc7c99bb55c7d5cca","impliedFormat":1},{"version":"d1342658b16b92d24b961db5c1779dc03fe30194fd6fea0d15dc8e946f82d83f","impliedFormat":1},{"version":"cbd4ff12f799a44b629643edc686aeec830fbb867c69cb6609da57d205057717","impliedFormat":1},{"version":"4f4d1284bc93168a1a0b2888f528aa689828917cdc547802ab29c0d1f553be40","impliedFormat":1},{"version":"fd15b208613892273f0675f55b31c878e22a28d62d306e589867009592f67166","impliedFormat":1},{"version":"ef5bc836c5c0886cd8c9cf1cff6192f4f1e82ef1f8088c9f136586b9860051e0","impliedFormat":1},{"version":"7fccf3bf47055503c751dac14156f9ea815a8c46c96c2e1ddf6b3b586694fc7f","impliedFormat":1},{"version":"001fc9e5e2a353521cc0807e759f7c5a88cc18a8389568cf94b8809c38f00cd4","impliedFormat":1},{"version":"d14cd6c9001dfa6f96660952945c344370109247764ab42b47d110fcbff678e7","impliedFormat":1},{"version":"282c7f230b9d2fda119b5b4a9567fae09ea09ea1bbacaa2085ef622d217979d8","impliedFormat":1},{"version":"4db00e3ce9cd4d68249907352b1f6c41c687b58f088bc2c8bff1bc41800bb732","impliedFormat":1},{"version":"316b2ea3cb57f2ccf86a19c4016eebb97eb177f3d5b5dc4b3d0508439afffff0","impliedFormat":1},{"version":"71de65e470fb5a0920472a8b13d37fff8960822e34d709aee14599802c15770c","impliedFormat":1},{"version":"c0cbe98c4e104042383444c718d2ce2d0dd602e6b7d52dc3185bbdf289da1128","impliedFormat":1},{"version":"c3c8297d66976e60076da541ec418590bf26d1056980b9adfea2c14baaf2089e","impliedFormat":1},{"version":"17ec351733c9b9a5de7d0aee5f710ca792a19efc365bed93ec045b885c309fde","impliedFormat":1},{"version":"8bb061c812d97dedb8549ca46cd3b8bae3f2494ef681d9712c64c1b933801ebf","impliedFormat":1},{"version":"969ab03feed7516ece5c6c0468e6c39391ed75317dd641d5600736b131559ad6","impliedFormat":1},{"version":"54e989ecd24eec06935b7770caee22386e9b7cdc47aca29bb2be83080460db36","impliedFormat":1},{"version":"ef4529c51657c83eabdda0b7818c25b6c7d827bfd7a49f38553f7fd3deba94e3","impliedFormat":1},{"version":"89c710eef54f9726d13eb123a800285d9b5cf2eb64d98f4c3a7b0e5a162ad24f","impliedFormat":1},{"version":"a97990e77a23aea39060610aef4b4bb92154d5330ecb0b557324ba4c14a1db41","impliedFormat":1},{"version":"d2b89296b175b0a1a11ce09cc682e6f86b24d34abd1bdf8c932a82c4e99b551a","impliedFormat":1},{"version":"3c85c2b16d0a1fa45095793b90467bcef3bfeaa85b3fdc00ff1eb3c32ca97cb2","impliedFormat":1},{"version":"8cdd09ab2d9fe19d5cb3ca1dcb6c6437d6164a9de46405afe1954e533a77120e","impliedFormat":1},{"version":"b90283ab6c36fc580b06cb293629a9b37eaba24e17ff9ae2f0d874a3f3a962a1","impliedFormat":1},{"version":"c1425155d2396f10be607f43392284b6bfc98b542bb49c611eaa2038b6a72112","impliedFormat":1},{"version":"30e0e58b2b36491323f748cc938b93eba059d354abecee659ba0e9312a842a5d","impliedFormat":1},{"version":"c2d8eccfe4adada4730bbd4f2568627d5d4aeb27cfbc8d39aa974ce33e855977","impliedFormat":1},{"version":"21d0cc7ad656b0348bfd745fb598399c6f9531ffef6ff1b8996fe42c5f185f0a","impliedFormat":1},{"version":"d29d2e64870b453a96329bf0f88eccf270812fb1989e853588fd5f3b0bc94919","impliedFormat":1},{"version":"b5bbf77bea59350deb48316308ae673afa70a77ffc86edc1e707af94a4b2a1d2","impliedFormat":1},{"version":"6eddc1432777582b4797eb53c43b9917b1ba8908a737f7823a7049620f98588b","impliedFormat":1},{"version":"79e7eb72b4d9ca2d268460d35fa7bfe01db96e93659752bd5fc5cbf5c5be8294","impliedFormat":1},{"version":"10ad4c890e509380deb83c8bec650899df9bd70ee20238f2221d6bdc36043a0e","impliedFormat":1},{"version":"1a3b837513da5afd3bb0b228dab3a089fce405344243e372672f641ededf9b48","impliedFormat":1},{"version":"901f6b020440eac80a83a7ca248ca244e2a296be6b1ed8645a884a4509e11fc7","impliedFormat":1},{"version":"bde8d307f9b1b9d561b8a5af91ae8bae5fd1c6b3f11bc6187e1bb9c69ef12f79","impliedFormat":1},{"version":"c9db3c8d3edbeff1cd14acdfadb2d6b1d09518094d11c76fc7b0cac9852d328e","impliedFormat":1},{"version":"4ed143bfe3cf662bcb6a105588fa92e858ab471f27b5e5627cdcca8e8fe0846f","impliedFormat":1},"0faa8ac0a53f2f7bb28776a14b905851c3dc1895125dc6035ff7dbe99612e4bf",{"version":"b6c7c1db51d3db13ebe1d2a4c31a5fe7ff6017e2be4fa260ed82edbb6f70d96b","impliedFormat":1},"c90a0cc490fd04137126ea2d141a005091a480a5437629cdff381759cdce8a8d",{"version":"3cf631a6ae0060fddf4898c816958e39f47e16570faf7bc7048c774c83cd7a7e","impliedFormat":1},{"version":"af680b00766564359764eef4baee376e63bbc8314bb2cb6c3c86ddab57b86791","impliedFormat":1},{"version":"3cf631a6ae0060fddf4898c816958e39f47e16570faf7bc7048c774c83cd7a7e","impliedFormat":1},{"version":"336fa29abdd376178c897437f87a37c2697b9f48aa2847ddc676dbee984da9fd","impliedFormat":1},{"version":"c9734261912272d273de227f3ab615bbf2059489d57958d93c76f1247c27cd4b","impliedFormat":1},"34e1919a031706e261fa170cff8a45783a4f5fecbf10c6744ffffadb162ec11c",{"version":"e1cca1872ba900e1fdf257ec25f87dd9eb6b4bc30466fb7ad2af8d88fef5af5c","signature":"58b819bd009dd1ba5feb0479ca0ee152337a2f0ff5f16ba64c591e6901c6e99d"},{"version":"7e29f41b158de217f94cb9676bf9cbd0cd9b5a46e1985141ed36e075c52bf6ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac51dd7d31333793807a6abaa5ae168512b6131bd41d9c5b98477fc3b7800f9f","impliedFormat":1},{"version":"dc0a7f107690ee5cd8afc8dbf05c4df78085471ce16bdd9881642ec738bc81fe","impliedFormat":1},{"version":"acd8fd5090ac73902278889c38336ff3f48af6ba03aa665eb34a75e7ba1dccc4","impliedFormat":1},{"version":"d6258883868fb2680d2ca96bc8b1352cab69874581493e6d52680c5ffecdb6cc","impliedFormat":1},{"version":"1b61d259de5350f8b1e5db06290d31eaebebc6baafd5f79d314b5af9256d7153","impliedFormat":1},{"version":"f258e3960f324a956fc76a3d3d9e964fff2244ff5859dcc6ce5951e5413ca826","impliedFormat":1},{"version":"643f7232d07bf75e15bd8f658f664d6183a0efaca5eb84b48201c7671a266979","impliedFormat":1},{"version":"21da358700a3893281ce0c517a7a30cbd46be020d9f0c3f2834d0a8ad1f5fc75","impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"0ccdaa19852d25ecd84eec365c3bfa16e7859cadecf6e9ca6d0dbbbee439743f","affectsGlobalScope":true,"impliedFormat":1},{"version":"438b41419b1df9f1fbe33b5e1b18f5853432be205991d1b19f5b7f351675541e","affectsGlobalScope":true,"impliedFormat":1},{"version":"096116f8fedc1765d5bd6ef360c257b4a9048e5415054b3bf3c41b07f8951b0b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5e01375c9e124a83b52ee4b3244ed1a4d214a6cfb54ac73e164a823a4a7860a","affectsGlobalScope":true,"impliedFormat":1},{"version":"f90ae2bbce1505e67f2f6502392e318f5714bae82d2d969185c4a6cecc8af2fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b58e207b93a8f1c88bbf2a95ddc686ac83962b13830fe8ad3f404ffc7051fb4","affectsGlobalScope":true,"impliedFormat":1},{"version":"1fefabcb2b06736a66d2904074d56268753654805e829989a46a0161cd8412c5","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"c18a99f01eb788d849ad032b31cafd49de0b19e083fe775370834c5675d7df8e","affectsGlobalScope":true,"impliedFormat":1},{"version":"5247874c2a23b9a62d178ae84f2db6a1d54e6c9a2e7e057e178cc5eea13757fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"156a859e21ef3244d13afeeba4e49760a6afa035c149dda52f0c45ea8903b338","impliedFormat":1},{"version":"10ec5e82144dfac6f04fa5d1d6c11763b3e4dbbac6d99101427219ab3e2ae887","impliedFormat":1},{"version":"615754924717c0b1e293e083b83503c0a872717ad5aa60ed7f1a699eb1b4ea5c","impliedFormat":1},{"version":"074de5b2fdead0165a2757e3aaef20f27a6347b1c36adea27d51456795b37682","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"24371e69a38fc33e268d4a8716dbcda430d6c2c414a99ff9669239c4b8f40dea","impliedFormat":1},{"version":"ccab02f3920fc75c01174c47fcf67882a11daf16baf9e81701d0a94636e94556","impliedFormat":1},{"version":"3e11fce78ad8c0e1d1db4ba5f0652285509be3acdd519529bc8fcef85f7dafd9","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"9c32412007b5662fd34a8eb04292fb5314ec370d7016d1c2fb8aa193c807fe22","impliedFormat":1},{"version":"7fd1b31fd35876b0aa650811c25ec2c97a3c6387e5473eb18004bed86cdd76b6","impliedFormat":1},{"version":"4d327f7d72ad0918275cea3eee49a6a8dc8114ae1d5b7f3f5d0774de75f7439a","impliedFormat":1},{"version":"6ebe8ebb8659aaa9d1acbf3710d7dae3e923e97610238b9511c25dc39023a166","impliedFormat":1},{"version":"e85d7f8068f6a26710bff0cc8c0fc5e47f71089c3780fbede05857331d2ddec9","impliedFormat":1},{"version":"7befaf0e76b5671be1d47b77fcc65f2b0aad91cc26529df1904f4a7c46d216e9","impliedFormat":1},{"version":"0a60a292b89ca7218b8616f78e5bbd1c96b87e048849469cccb4355e98af959a","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"40cd35c95e9cf22cfa5bd84e96408b6fcbca55295f4ff822390abb11afbc3dca","impliedFormat":1},{"version":"b1616b8959bf557feb16369c6124a97a0e74ed6f49d1df73bb4b9ddf68acf3f3","impliedFormat":1},{"version":"5b03a034c72146b61573aab280f295b015b9168470f2df05f6080a2122f9b4df","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"249b9cab7f5d628b71308c7d9bb0a808b50b091e640ba3ed6e2d0516f4a8d91d","impliedFormat":1},{"version":"80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e","impliedFormat":1},{"version":"f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"8aee8b6d4f9f62cf3776cda1305fb18763e2aade7e13cea5bbe699112df85214","impliedFormat":1},{"version":"c63b9ada8c72f95aac5db92aea07e5e87ec810353cdf63b2d78f49a58662cf6c","impliedFormat":1},{"version":"1cc2a09e1a61a5222d4174ab358a9f9de5e906afe79dbf7363d871a7edda3955","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"b64d4d1c5f877f9c666e98e833f0205edb9384acc46e98a1fef344f64d6aba44","impliedFormat":1},{"version":"adf27937dba6af9f08a68c5b1d3fce0ca7d4b960c57e6d6c844e7d1a8e53adae","impliedFormat":1},{"version":"12950411eeab8563b349cb7959543d92d8d02c289ed893d78499a19becb5a8cc","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"c9381908473a1c92cb8c516b184e75f4d226dad95c3a85a5af35f670064d9a2f","impliedFormat":1},{"version":"c3f5289820990ab66b70c7fb5b63cb674001009ff84b13de40619619a9c8175f","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3275d55fac10b799c9546804126239baf020d220136163f763b55a74e50e750","affectsGlobalScope":true,"impliedFormat":1},{"version":"fa68a0a3b7cb32c00e39ee3cd31f8f15b80cac97dce51b6ee7fc14a1e8deb30b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1cf059eaf468efcc649f8cf6075d3cb98e9a35a0fe9c44419ec3d2f5428d7123","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c36e755bced82df7fb6ce8169265d0a7bb046ab4e2cb6d0da0cb72b22033e89","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"7a93de4ff8a63bafe62ba86b89af1df0ccb5e40bb85b0c67d6bbcfdcf96bf3d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"90e85f9bc549dfe2b5749b45fe734144e96cd5d04b38eae244028794e142a77e","affectsGlobalScope":true,"impliedFormat":1},{"version":"e0a5deeb610b2a50a6350bd23df6490036a1773a8a71d70f2f9549ab009e67ee","affectsGlobalScope":true,"impliedFormat":1},{"version":"3fad5618174d74a34ee006406d4eb37e8d07dd62eb1315dbf52f48d31a337547","impliedFormat":1},{"version":"7e49f52a159435fc8df4de9dc377ef5860732ca2dc9efec1640531d3cf5da7a3","impliedFormat":1},{"version":"dd4bde4bdc2e5394aed6855e98cf135dfdf5dd6468cad842e03116d31bbcc9bc","impliedFormat":1},{"version":"4d4e879009a84a47c05350b8dca823036ba3a29a3038efed1be76c9f81e45edf","affectsGlobalScope":true,"impliedFormat":1},{"version":"8b50a819485ffe0d237bf0d131e92178d14d11e2aa873d73615a9ec578b341f5","impliedFormat":1},{"version":"9ba13b47cb450a438e3076c4a3f6afb9dc85e17eae50f26d4b2d72c0688c9251","impliedFormat":1},{"version":"b64cd4401633ea4ecadfd700ddc8323a13b63b106ac7127c1d2726f32424622c","impliedFormat":1},{"version":"37c6e5fe5715814412b43cc9b50b24c67a63c4e04e753e0d1305970d65417a60","impliedFormat":1},{"version":"1d024184fb57c58c5c91823f9d10b4915a4867b7934e89115fd0d861a9df27c8","impliedFormat":1},{"version":"ee0e4946247f842c6dd483cbb60a5e6b484fee07996e3a7bc7343dfb68a04c5d","impliedFormat":1},{"version":"ef051f42b7e0ef5ca04552f54c4552eac84099d64b6c5ad0ef4033574b6035b8","impliedFormat":1},{"version":"853a43154f1d01b0173d9cbd74063507ece57170bad7a3b68f3fa1229ad0a92f","impliedFormat":1},{"version":"56231e3c39a031bfb0afb797690b20ed4537670c93c0318b72d5180833d98b72","impliedFormat":1},{"version":"5cc7c39031bfd8b00ad58f32143d59eb6ffc24f5d41a20931269011dccd36c5e","impliedFormat":1},{"version":"12d602a8fe4c2f2ba4f7804f5eda8ba07e0c83bf5cf0cda8baffa2e9967bfb77","affectsGlobalScope":true,"impliedFormat":1},{"version":"a856ab781967b62b288dfd85b860bef0e62f005ed4b1b8fa25c53ce17856acaf","impliedFormat":1},{"version":"cc25940cfb27aa538e60d465f98bb5068d4d7d33131861ace43f04fe6947d68f","impliedFormat":1},{"version":"8db46b61a690f15b245cf16270db044dc047dce9f93b103a59f50262f677ea1f","impliedFormat":1},{"version":"01ff95aa1443e3f7248974e5a771f513cb2ac158c8898f470a1792f817bee497","impliedFormat":1},{"version":"757227c8b345c57d76f7f0e3bbad7a91ffca23f1b2547cbed9e10025816c9cb7","impliedFormat":1},{"version":"959d0327c96dd9bb5521f3ed6af0c435996504cc8dd46baa8e12cb3b3518cef1","impliedFormat":1},{"version":"e1c1a0b4d1ead0de9eca52203aeb1f771f21e6238d6fcd15aa56ac2a02f1b7bf","impliedFormat":1},{"version":"101f482fd48cb4c7c0468dcc6d62c843d842977aea6235644b1edd05e81fbf22","impliedFormat":1},{"version":"266bee0a41e9c3ba335583e21e9277ae03822402cf5e8e1d99f5196853613b98","affectsGlobalScope":true,"impliedFormat":1},{"version":"386606f8a297988535cb1401959041cfa7f59d54b8a9ed09738e65c98684c976","impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"3ef397f12387eff17f550bc484ea7c27d21d43816bbe609d495107f44b97e933","impliedFormat":1},{"version":"1023282e2ba810bc07905d3668349fbd37a26411f0c8f94a70ef3c05fe523fcf","impliedFormat":1},{"version":"b214ebcf76c51b115453f69729ee8aa7b7f8eccdae2a922b568a45c2d7ff52f7","impliedFormat":1},{"version":"429c9cdfa7d126255779efd7e6d9057ced2d69c81859bbab32073bad52e9ba76","impliedFormat":1},{"version":"e236b5eba291f51bdf32c231673e6cab81b5410850e61f51a7a524dddadc0f95","impliedFormat":1},{"version":"ce8653341224f8b45ff46d2a06f2cacb96f841f768a886c9d8dd8ec0878b11bd","affectsGlobalScope":true,"impliedFormat":1},{"version":"7f2c62938251b45715fd2a9887060ec4fbc8724727029d1cbce373747252bdd7","impliedFormat":1},{"version":"e3ace08b6bbd84655d41e244677b474fd995923ffef7149ddb68af8848b60b05","impliedFormat":1},{"version":"132580b0e86c48fab152bab850fc57a4b74fe915c8958d2ccb052b809a44b61c","impliedFormat":1},{"version":"90a278f5fab7557e69e97056c0841adf269c42697194f0bd5c5e69152637d4b3","impliedFormat":1},{"version":"69c9a5a9392e8564bd81116e1ed93b13205201fb44cb35a7fde8c9f9e21c4b23","impliedFormat":1},{"version":"5f8fc37f8434691ffac1bfd8fc2634647da2c0e84253ab5d2dd19a7718915b35","impliedFormat":1},{"version":"5981c2340fd8b076cae8efbae818d42c11ffc615994cb060b1cd390795f1be2b","impliedFormat":1},{"version":"f263485c9ca90df9fe7bb3a906db9701997dc6cae86ace1f8106ac8d2f7f677b","impliedFormat":1},{"version":"1edcf2f36fc332615846bde6dcc71a8fe526065505bc5e3dcfd65a14becdf698","affectsGlobalScope":true,"impliedFormat":1},{"version":"0250da3eb85c99624f974e77ef355cdf86f43980251bc371475c2b397ba55bcd","impliedFormat":1},{"version":"f1c93e046fb3d9b7f8249629f4b63dc068dd839b824dd0aa39a5e68476dc9420","impliedFormat":1},{"version":"3d3a5f27ffbc06c885dd4d5f9ee20de61faf877fe2c3a7051c4825903d9a7fdc","impliedFormat":1},{"version":"12806f9f085598ef930edaf2467a5fa1789a878fba077cd27e85dc5851e11834","impliedFormat":1},{"version":"1dbca38aa4b0db1f4f9e6edacc2780af7e028b733d2a98dd3598cd235ca0c97d","impliedFormat":1},{"version":"a43fe41c33d0a192a0ecaf9b92e87bef3709c9972e6d53c42c49251ccb962d69","impliedFormat":1},{"version":"a177959203c017fad3ecc4f3d96c8757a840957a4959a3ae00dab9d35961ca6c","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fc727ccf9b36e257ff982ea0badeffbfc2c151802f741bddff00c6af3b784cf","impliedFormat":1},{"version":"19143c930aef7ccf248549f3e78992f2f1049118ec5d4622e95025057d8e392b","impliedFormat":1},{"version":"4844a4c9b4b1e812b257676ed8a80b3f3be0e29bf05e742cc2ea9c3c6865e6c6","impliedFormat":1},{"version":"064878a60367e0407c42fb7ba02a2ea4d83257357dc20088e549bd4d89433e9c","impliedFormat":1},{"version":"cca8917838a876e2d7016c9b6af57cbf11fdf903c5fdd8e613fa31840b2957bf","impliedFormat":1},{"version":"d91ae55e4282c22b9c21bc26bd3ef637d3fe132507b10529ae68bf76f5de785b","impliedFormat":1},{"version":"b484ec11ba00e3a2235562a41898d55372ccabe607986c6fa4f4aba72093749f","impliedFormat":1},{"version":"7e8a671604329e178bb479c8f387715ebd40a091fc4a7552a0a75c2f3a21c65c","impliedFormat":1},{"version":"41ef7992c555671a8fe54db302788adefa191ded810a50329b79d20a6772d14c","impliedFormat":1},{"version":"041a7781b9127ab568d2cdcce62c58fdea7c7407f40b8c50045d7866a2727130","impliedFormat":1},{"version":"4c5e90ddbcd177ad3f2ffc909ae217c87820f1e968f6959e4b6ba38a8cec935e","impliedFormat":1},{"version":"b70dd9a44e1ac42f030bb12e7d79117eac7cb74170d72d381a1e7913320af23a","impliedFormat":1},{"version":"55cdbeebe76a1fa18bbd7e7bf73350a2173926bd3085bb050cf5a5397025ee4e","impliedFormat":1},{"version":"2beff543f6e9a9701df88daeee3cdd70a34b4a1c11cb4c734472195a5cb2af54","impliedFormat":1},{"version":"2e07abf27aa06353d46f4448c0bbac73431f6065eef7113128a5cd804d0c384d","impliedFormat":1},{"version":"be1cc4d94ea60cbe567bc29ed479d42587bf1e6cba490f123d329976b0fe4ee5","impliedFormat":1},{"version":"42bc0e1a903408137c3df2b06dfd7e402cdab5bbfa5fcfb871b22ebfdb30bd0b","impliedFormat":1},{"version":"9894dafe342b976d251aac58e616ac6df8db91fb9d98934ff9dd103e9e82578f","impliedFormat":1},{"version":"413df52d4ea14472c2fa5bee62f7a40abd1eb49be0b9722ee01ee4e52e63beb2","impliedFormat":1},{"version":"db6d2d9daad8a6d83f281af12ce4355a20b9a3e71b82b9f57cddcca0a8964a96","impliedFormat":1},{"version":"446a50749b24d14deac6f8843e057a6355dd6437d1fac4f9e5ce4a5071f34bff","impliedFormat":1},{"version":"182e9fcbe08ac7c012e0a6e2b5798b4352470be29a64fdc114d23c2bab7d5106","impliedFormat":1},{"version":"2f4e6b4d39426a1b85ecf4bdeb9dddbf4d9b3397d95d8555d46f925c9519ec7d","impliedFormat":1},{"version":"78a2869ad0cbf3f9045dda08c0d4562b7e1b2bfe07b19e0db072f5c3c56e9584","impliedFormat":1},{"version":"89d5d28d4f57e000b836ac273079be1b75710e28ce14750d081fb420d37e2ca5","impliedFormat":1},{"version":"fd4e24ccff3966390600d7f5d6aa1fed5a512e92ada735ea5fbc933d313ad3d3","impliedFormat":1},{"version":"b7cddfe1aa6b86b5fad3c9ccb30d05b3ccb165aebbf112f48d2d8a5f69dd98b1","impliedFormat":1},{"version":"a86f82d646a739041d6702101afa82dcb935c416dd93cbca7fd754fd0282ce1f","impliedFormat":1},{"version":"ad0d1d75d129b1c80f911be438d6b61bfa8703930a8ff2be2f0e1f8a91841c64","impliedFormat":1},{"version":"bd2c7ada3dee03653d3f601011d30072194bc3970cd93208f9588fbdc0c69347","impliedFormat":1},{"version":"e480da45d32313e7174b265674da504f075f59ef326852f0c5a5d863b438ae85","impliedFormat":1},{"version":"ad54850f61fcf5d014e11be80d2f46fea9265cfa7e77456da876f7833ef81769","impliedFormat":1},{"version":"6f7c9e8bd2b5b6a080b07080065f94900bd3c7e5ebbd3047bc33fcce2fab1dd8","impliedFormat":1},{"version":"3e7efde639c6a6c3edb9847b3f61e308bf7a69685b92f665048c45132f51c218","impliedFormat":1},{"version":"df45ca1176e6ac211eae7ddf51336dc075c5314bc5c253651bae639defd5eec5","impliedFormat":1},{"version":"8a0e762ceb20c7e72504feef83d709468a70af4abccb304f32d6b9bac1129b2c","impliedFormat":1},{"version":"da5950ee2a90721df6f3fba45f5d05308f7e4c35835392215dd2cd404505e2de","impliedFormat":1},{"version":"ce75b1aebb33d510ff28af960a9221410a3eaf7f18fc5f21f9404075fba77256","impliedFormat":1},{"version":"f42d5fed19610d485c646a0c430e768115567d078c7fc855c57b0c578b3d6cd3","impliedFormat":1},{"version":"ee8df1cb8d0faaca4013a1b442e99130769ce06f438d18d510fed95890067563","impliedFormat":1},{"version":"d5630f2ad9b4541e5ce891648121022f9412ecdca1820baa1f0104f70fd7eff7","impliedFormat":1},{"version":"4d15375ab13497104bc8fe56fdef2b5fd6853f29255737d23a33fa306ff7fd69","impliedFormat":1},{"version":"2cd3fc1d0d6a1e85baffd2d4f50f5efb192b5446eef567e97c94765402f0aad4","impliedFormat":1},{"version":"e4cbf2f1e89ecccaddd2c045e600ae41b732295953fb06247c7dcbc2d281ed30","impliedFormat":1},{"version":"27bbdb7509a5bb564020321fc5485764d0db3230a10d2336ae5ce2c1d401b0e7","impliedFormat":1},{"version":"8c1697d90c394a6fd955b98eae01238eff628e129b987a68aea10f898a48e7da","impliedFormat":1},{"version":"7580e62139cb2b44a0270c8d01abcbfcba2819a02514a527342447fa69b34ef1","impliedFormat":1},{"version":"42c169fb8c2d42f4f668c624a9a11e719d5d07dacbebb63cbcf7ef365b0a75b3","impliedFormat":1},{"version":"f374cb24e93e7798c4d9e83ff872fa52d2cdb36306392b840a6ddf46cb925cb6","impliedFormat":1},{"version":"d10d63718e1646c2279e3b33831f82c60e31f622b2b7020f1196409ca4c09242","impliedFormat":1},{"version":"106c6025f1d99fd468fd8bf6e5bda724e11e5905a4076c5d29790b6c3745e50c","impliedFormat":1},{"version":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","impliedFormat":1},{"version":"148679c6d0f449210a96e7d2e562d589e56fcde87f843a92808b3ff103f1a774","impliedFormat":1},{"version":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","impliedFormat":1},{"version":"02436d7e9ead85e09a2f8e27d5f47d9464bced31738dec138ca735390815c9f0","impliedFormat":1},{"version":"f8d5ff8eafd37499f2b6a98659dd9b45a321de186b8db6b6142faed0fea3de77","impliedFormat":1},{"version":"c86fe861cf1b4c46a0fb7d74dffe596cf679a2e5e8b1456881313170f092e3fa","impliedFormat":1},{"version":"a22dd55aa4d39906252000ab8e8a1b83b195eef7f4274eb51e457c1f11cf6580","impliedFormat":1},{"version":"540cc83ab772a2c6bc509fe1354f314825b5dba3669efdfbe4693ecd3048e34f","impliedFormat":1},{"version":"121b0696021ab885c570bbeb331be8ad82c6efe2f3b93a6e63874901bebc13e3","impliedFormat":1},{"version":"612d9da66bb046a9c1e2e8d026245ded881fc4b9f98cbfae714415d57ee0ae0b","impliedFormat":1},{"version":"32c2ad9494dad5d11b0564a619fee18f388db6c1e9e2cd3c360b3122549691eb","impliedFormat":1},{"version":"6c301d40aec56a74ec7bd7324e31a728dadf9bfba3e96def02938d3d973534ec","impliedFormat":1},{"version":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","impliedFormat":1},{"version":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","impliedFormat":1},{"version":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":1},{"version":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":1},{"version":"aa14cee20aa0db79f8df101fc027d929aec10feb5b8a8da3b9af3895d05b7ba2","impliedFormat":1},{"version":"493c700ac3bd317177b2eb913805c87fe60d4e8af4fb39c41f04ba81fae7e170","impliedFormat":1},{"version":"aeb554d876c6b8c818da2e118d8b11e1e559adbe6bf606cc9a611c1b6c09f670","impliedFormat":1},{"version":"acf5a2ac47b59ca07afa9abbd2b31d001bf7448b041927befae2ea5b1951d9f9","impliedFormat":1},{"version":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":1},{"version":"d71291eff1e19d8762a908ba947e891af44749f3a2cbc5bd2ec4b72f72ea795f","impliedFormat":1},{"version":"c0480e03db4b816dff2682b347c95f2177699525c54e7e6f6aa8ded890b76be7","impliedFormat":1},{"version":"25a5f6fd3a2243c859eddc99ab5fba11d970af2fe7a5df9c32b7668f76f97b01","impliedFormat":1},{"version":"8d207e1f9d2c30d6f77dfa693f3827c3fbf0d89240297e10bdfe1041d433df68","impliedFormat":1},{"version":"b620391fe8060cf9bedc176a4d01366e6574d7a71e0ac0ab344a4e76576fcbb8","impliedFormat":1},{"version":"6ac6715916fa75a1f7ebdfeacac09513b4d904b667d827b7535e84ff59679aff","impliedFormat":1},{"version":"2652448ac55a2010a1f71dd141f828b682298d39728f9871e1cdf8696ef443fd","impliedFormat":1},{"version":"d682336018141807fb602709e2d95a192828fcb8d5ba06dda3833a8ea98f69e3","impliedFormat":1},{"version":"6124e973eab8c52cabf3c07575204efc1784aca6b0a30c79eb85fe240a857efa","impliedFormat":1},{"version":"0d891735a21edc75df51f3eb995e18149e119d1ce22fd40db2b260c5960b914e","impliedFormat":1},{"version":"3b414b99a73171e1c4b7b7714e26b87d6c5cb03d200352da5342ab4088a54c85","impliedFormat":1},{"version":"4fbd3116e00ed3a6410499924b6403cc9367fdca303e34838129b328058ede40","impliedFormat":1},{"version":"9c82171d836c47486074e4ca8e059735bf97b205e70b196535b5efd40cbe1bc5","impliedFormat":1},{"version":"8c70ddc0c22d85e56011d49fddfaae3405eb53d47b59327b9dd589e82df672e7","impliedFormat":1},{"version":"2f9c89cbb29d362290531b48880a4024f258c6033aaeb7e59fbc62db26819650","impliedFormat":1},{"version":"a365c4d3bed3be4e4e20793c999c51f5cd7e6792322f14650949d827fbcd170f","impliedFormat":1},{"version":"c5426dbfc1cf90532f66965a7aa8c1136a78d4d0f96d8180ecbfc11d7722f1a5","impliedFormat":1},{"version":"65a15fc47900787c0bd18b603afb98d33ede930bed1798fc984d5ebb78b26cf9","impliedFormat":1},{"version":"9d202701f6e0744adb6314d03d2eb8fc994798fc83d91b691b75b07626a69801","impliedFormat":1},{"version":"de9d2df7663e64e3a91bf495f315a7577e23ba088f2949d5ce9ec96f44fba37d","impliedFormat":1},{"version":"c7af78a2ea7cb1cd009cfb5bdb48cd0b03dad3b54f6da7aab615c2e9e9d570c5","impliedFormat":1},{"version":"1ee45496b5f8bdee6f7abc233355898e5bf9bd51255db65f5ff7ede617ca0027","impliedFormat":1},{"version":"273782b8454e78f6a8b30d2cfbf6860499c930595095fcc1689637115f0eddda","affectsGlobalScope":true,"impliedFormat":1},{"version":"3fbdd025f9d4d820414417eeb4107ffa0078d454a033b506e22d3a23bc3d9c41","affectsGlobalScope":true,"impliedFormat":1},{"version":"dba114fb6a32b355a9cfc26ca2276834d72fe0e94cd2c3494005547025015369","impliedFormat":1},{"version":"a8f8e6ab2fa07b45251f403548b78eaf2022f3c2254df3dc186cb2671fe4996d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fa6c12a7c0f6b84d512f200690bfc74819e99efae69e4c95c4cd30f6884c526e","impliedFormat":1},{"version":"f1c32f9ce9c497da4dc215c3bc84b722ea02497d35f9134db3bb40a8d918b92b","impliedFormat":1},{"version":"b73c319af2cc3ef8f6421308a250f328836531ea3761823b4cabbd133047aefa","affectsGlobalScope":true,"impliedFormat":1},{"version":"e433b0337b8106909e7953015e8fa3f2d30797cea27141d1c5b135365bb975a6","impliedFormat":1},{"version":"9f9bb6755a8ce32d656ffa4763a8144aa4f274d6b69b59d7c32811031467216e","impliedFormat":1},{"version":"5c32bdfbd2d65e8fffbb9fbda04d7165e9181b08dad61154961852366deb7540","impliedFormat":1},{"version":"ddff7fc6edbdc5163a09e22bf8df7bef75f75369ebd7ecea95ba55c4386e2441","impliedFormat":1},{"version":"0c05e9842ec4f8b7bfebfd3ca61604bb8c914ba8da9b5337c4f25da427a005f2","impliedFormat":1},{"version":"faed7a5153215dbd6ebe76dfdcc0af0cfe760f7362bed43284be544308b114cf","impliedFormat":1},{"version":"7029e566b8df176f703fb59fd437a38670c7a0e02c58b2d66dfb5b2e2b2defdb","impliedFormat":1},{"version":"7f2aa4d4989a82530aaac3f72b3dceca90e9c25bee0b1a327e8a08a1262435ad","impliedFormat":1},{"version":"d96b39301d0ded3f1a27b47759676a33a02f6f5049bfcbde81e533fd10f50dcb","impliedFormat":1},{"version":"e9f147ecca73d9346a4c073432843c159ccbe50bdcb678a78f6da10eae2cecf4","impliedFormat":1},{"version":"de061f7d72bd65c06fc1419f841dfdcb29a8e22fe6fa527d1e6eb20b897d4de0","impliedFormat":1},{"version":"663beafc2446079574570cba86e9b15f986f908ddb1b01274509970126fee945","impliedFormat":1},{"version":"a3102887d5058bf4cb5b37fa6964c09e9527c42053b3b5c642b89878620748de","impliedFormat":1},{"version":"0aaaa1727edd29673d85c9b26d7ca4d54e5407a48586903c51b48b7f7d196f61","impliedFormat":1},{"version":"d35bca0b261bff02635758c48e8ab99c61c420d0dfabbcf467e847171d876b7d","impliedFormat":1},{"version":"3bc12c40d90c342ff88a3d876996c555ed5cbee5fe8c3308a240b321f401ee46","impliedFormat":1},{"version":"ba130768aae855a5477e9e148e5c879548e6e7ccbcc56fd1934c8a18ea5b7569","impliedFormat":1},{"version":"2e4f37ffe8862b14d8e24ae8763daaa8340c0df0b859d9a9733def0eee7562d9","impliedFormat":1},{"version":"d38530db0601215d6d767f280e3a3c54b2a83b709e8d9001acb6f61c67e965fc","impliedFormat":1},{"version":"6ac6715916fa75a1f7ebdfeacac09513b4d904b667d827b7535e84ff59679aff","impliedFormat":1},{"version":"b499af2054a037a162b3b72cd886f48bbf32a3502c865c6e29fac7d2ab3ce0b5","impliedFormat":1},{"version":"b83cb14474fa60c5f3ec660146b97d122f0735627f80d82dd03e8caa39b4388c","impliedFormat":1},{"version":"d87f90d2df7b638204d81d6c57e1f2a8cc9317c45ca331c691c375649aa9255c","impliedFormat":1},{"version":"7274fbffbd7c9589d8d0ffba68157237afd5cecff1e99881ea3399127e60572f","impliedFormat":1},{"version":"b73cbf0a72c8800cf8f96a9acfe94f3ad32ca71342a8908b8ae484d61113f647","impliedFormat":1},{"version":"bae6dd176832f6423966647382c0d7ba9e63f8c167522f09a982f086cd4e8b23","impliedFormat":1},{"version":"20865ac316b8893c1a0cc383ccfc1801443fbcc2a7255be166cf90d03fac88c9","impliedFormat":1},{"version":"c9958eb32126a3843deedda8c22fb97024aa5d6dd588b90af2d7f2bfac540f23","impliedFormat":1},{"version":"461d0ad8ae5f2ff981778af912ba71b37a8426a33301daa00f21c6ccb27f8156","impliedFormat":1},{"version":"e927c2c13c4eaf0a7f17e6022eee8519eb29ef42c4c13a31e81a611ab8c95577","impliedFormat":1},{"version":"fcafff163ca5e66d3b87126e756e1b6dfa8c526aa9cd2a2b0a9da837d81bbd72","impliedFormat":1},{"version":"70246ad95ad8a22bdfe806cb5d383a26c0c6e58e7207ab9c431f1cb175aca657","impliedFormat":1},{"version":"f00f3aa5d64ff46e600648b55a79dcd1333458f7a10da2ed594d9f0a44b76d0b","impliedFormat":1},{"version":"772d8d5eb158b6c92412c03228bd9902ccb1457d7a705b8129814a5d1a6308fc","impliedFormat":1},{"version":"802e797bcab5663b2c9f63f51bdf67eff7c41bc64c0fd65e6da3e7941359e2f7","impliedFormat":1},{"version":"b01bd582a6e41457bc56e6f0f9de4cb17f33f5f3843a7cf8210ac9c18472fb0f","impliedFormat":1},{"version":"8b4327413e5af38cd8cb97c59f48c3c866015d5d642f28518e3a891c469f240e","impliedFormat":1},{"version":"4cceef18d7f088e797a463e90b7a9dad10c6bc667724b7686e3e740ae00122be","impliedFormat":1},{"version":"7ee86fbb3754388e004de0ef9e6505485ddfb3be7640783d6d015711c03d302d","impliedFormat":1},{"version":"cc1954b539604b1e562319119ac7e888172208b32ca873f9a357a92c826bd046","impliedFormat":1},{"version":"a67b87d0281c97dfc1197ef28dfe397fc2c865ccd41f7e32b53f647184cc7307","impliedFormat":1},{"version":"771ffb773f1ddd562492a6b9aaca648192ac3f056f0e1d997678ff97dbb6bf9b","impliedFormat":1},{"version":"43e96a3d5d1411ab40ba2f61d6a3192e58177bcf3b133a80ad2a16591611726d","impliedFormat":1},{"version":"232f70c0cf2b432f3a6e56a8dc3417103eb162292a9fd376d51a3a9ea5fbbf6f","impliedFormat":1},{"version":"bb8f2dbc03533abca2066ce4655c119bff353dd4514375beb93c08590c03e023","impliedFormat":1},{"version":"706dd95827e7ebaabda91d5db2b755233e0952d98570e9c032b0f066a15c1177","affectsGlobalScope":true,"impliedFormat":1},{"version":"0b103e9abfe82d14c0ad06a55d9f91d6747154ef7cacc73cf27ecad2bfb3afcf","impliedFormat":1},{"version":"990b8fad2327b77e6920cc792af320e8867e68f02ce849b12c0a6ab9a1aebb09","impliedFormat":1},{"version":"5eb8cd1cb0c9143d74a8190b577c522720878c31aef67d866fcd29973f83e955","impliedFormat":1},{"version":"120599fd965257b1f4d0ff794bc696162832d9d8467224f4665f713a3119078b","impliedFormat":1},{"version":"43ba4f2fa8c698f5c304d21a3ef596741e8e85a810b7c1f9b692653791d8d97a","impliedFormat":1},{"version":"5433f33b0a20300cca35d2f229a7fc20b0e8477c44be2affeb21cb464af60c76","impliedFormat":1},{"version":"db036c56f79186da50af66511d37d9fe77fa6793381927292d17f81f787bb195","impliedFormat":1},{"version":"a6805fcafed712aea7759f8bc731014f9d22738c1d6ef9d43b8091d1d48346d5","impliedFormat":1},{"version":"c49469a5349b3cc1965710b5b0f98ed6c028686aa8450bcb3796728873eb923e","impliedFormat":1},{"version":"4a889f2c763edb4d55cb624257272ac10d04a1cad2ed2948b10ed4a7fda2a428","impliedFormat":1},{"version":"7bb79aa2fead87d9d56294ef71e056487e848d7b550c9a367523ee5416c44cfa","impliedFormat":1},{"version":"d88ea80a6447d7391f52352ec97e56b52ebec934a4a4af6e2464cfd8b39c3ba8","impliedFormat":1},{"version":"142617b3cdf902b69c6464c9fbd942b60ab3e733ca18c032b19e0f7e2adbefe8","impliedFormat":1},{"version":"0b603555f1881f87256ffd6344d3e3ed6d466c2e701eabf381f28be8c2125892","impliedFormat":1},{"version":"897e4f7662488e3ecc79e743bdd3b78f13bdb69a97851afa5b440c4211e32ea9","impliedFormat":1},{"version":"e2e1c6d3b2d93add5200bd7bc1a8cccb4e446836b2111ece45db8683a2c765de","impliedFormat":1},{"version":"251b03d5cd243854ce870d9a9a39f491faf69898c5d6b5eee28cc7649c57417b","impliedFormat":1},{"version":"27ff4196654e6373c9af16b6165120e2dd2169f9ad6abb5c935af5abd8c7938c","impliedFormat":1},{"version":"2c4de79f406d137390608e8c0a44fba2ff8e00bacfcae7c9d1781fef10e9440d","impliedFormat":1},{"version":"07ba23a10465791be5d22deaf5ef7de7658774ddff53721e5ea17fedea1bc721","impliedFormat":1},{"version":"dca8c645c5afeb03b1ecedbf16323f33e7d0afaa6256c8e047e6e38087a97f53","impliedFormat":1},{"version":"775f181bd4a533d6f8b5e55ec1d9f1624559720ae8a70e9432258da26b38d27c","impliedFormat":1},{"version":"796273b2edc72e78a04e86d7c58ae94d370ab93a0ddf40b1aa85a37a1c29ecd7","impliedFormat":1},{"version":"5df15a69187d737d6d8d066e189ae4f97e41f4d53712a46b2710ff9f8563ec9f","impliedFormat":1},{"version":"0659e6650e6c528420733abc2cdc36474ef14cc8d64ef3c6fee794d71c69cc2e","impliedFormat":1},{"version":"6ac6715916fa75a1f7ebdfeacac09513b4d904b667d827b7535e84ff59679aff","impliedFormat":1},{"version":"622694a8522b46f6310c2a9b5d2530dde1e2854cb5829354e6d1ff8f371cf469","impliedFormat":1},{"version":"cd8ce8d68567f62dd580b3c3c37777ac3f5b81944c7417f5ea83030eab533385","impliedFormat":1},{"version":"e374d1eaa05b7dc38580062942ac8351ce79cbe11f6dbce4946a582a5680582d","impliedFormat":1},{"version":"9e2739b32f741859263fdba0244c194ca8e96da49b430377930b8f721d77c000","impliedFormat":1},{"version":"a9e6c0ff3f8186fccd05752cf75fc94e147c02645087ac6de5cc16403323d870","impliedFormat":1},{"version":"49af4b52f0d4d2304c5f2c6fe5fab3e153e0acc38830d0202821b877c097dd02","impliedFormat":1},{"version":"49c346823ba6d4b12278c12c977fb3a31c06b9ca719015978cb145eb86da1c61","impliedFormat":1},{"version":"bfac6e50eaa7e73bb66b7e052c38fdc8ccfc8dbde2777648642af33cf349f7f1","impliedFormat":1},{"version":"92f7c1a4da7fbfd67a2228d1687d5c2e1faa0ba865a94d3550a3941d7527a45d","impliedFormat":1},{"version":"f53b120213a9289d9a26f5af90c4c686dd71d91487a0aa5451a38366c70dc64b","impliedFormat":1},{"version":"e68b8e5a1df7c1be2bc105141456ecba70215806e1c28bfbc5c12bfce4be6e68","impliedFormat":1},{"version":"511c8f02329808d47d00b859c532ae9115590048b17325a946c74dac48428650","impliedFormat":1},{"version":"57d67b72e06059adc5e9454de26bbfe567d412b962a501d263c75c2db430f40e","impliedFormat":1},{"version":"b5f9e66625783eefcbe3d2da074b2e7ba2066d61ce3fc6ef4f22805ad946cab4","impliedFormat":1},{"version":"e37115962d284b9f7a37c2bdd2add50f88365dde41f5e0ff591ffc48a8ec7575","impliedFormat":1},{"version":"6459054aabb306821a043e02b89d54da508e3a6966601a41e71c166e4ea1474f","impliedFormat":1},{"version":"bb37588926aba35c9283fe8d46ebf4e79ffe976343105f5c6d45f282793352b2","impliedFormat":1},{"version":"f89488602bec98a142072fae7ea5ba99431a569ff580c64b7be39896474799d8","impliedFormat":1},{"version":"bbbc47961f39a57df103cf4ca3bb8f8732b4b6678a18225a0aa76d59c466956c","impliedFormat":1},{"version":"2e6114a7dd6feeef85b2c80120fdbfb59a5529c0dcc5bfa8447b6996c97a69f5","impliedFormat":1},{"version":"2ffb043dc5163458e473b7010859f86e01dc4edffcae0a93d885d028b426a546","impliedFormat":1},{"version":"c8f004e6036aa1c764ad4ec543cf89a5c1893a9535c80ef3f2b653e370de45e6","impliedFormat":1},{"version":"dd80b1e600d00f5c6a6ba23f455b84a7db121219e68f89f10552c54ba46e4dc9","impliedFormat":1},{"version":"b064c36f35de7387d71c599bfcf28875849a1dbc733e82bd26cae3d1cd060521","impliedFormat":1},{"version":"05c7280d72f3ed26f346cbe7cbbbb002fb7f15739197cbbee6ab3fd1a6cb9347","impliedFormat":1},{"version":"8de9fe97fa9e00ec00666fa77ab6e91b35d25af8ca75dabcb01e14ad3299b150","impliedFormat":1},{"version":"04b7b2e0832dfd3c31e81df3975e8d8fda28e7ff999b0aa2932608a8f6661d5c","impliedFormat":1},{"version":"ca2d34c6ed5cbd3070b8b6f32f42ae54adcc6499c1e4b99f0a5798b3f27cc653","impliedFormat":1},{"version":"9ec68995e66dd6b9dac834bf5ae85fde802714ea2e82151a5d1d53ef01b463ef","impliedFormat":1},{"version":"5c4d626b4902f2ef8a1cc146d761d276cef988016dc674e3b98fbad70e64bc9f","impliedFormat":1},{"version":"fdfaa0aad899524962e2955287b5b991ffe3be50f64e02eb60c933ca44644a94","impliedFormat":1},{"version":"53c972a0f9bc3a4ec70fff7314123ea8cfcf75b3703046f767d2dc1eea87b2fb","impliedFormat":1},{"version":"f974e4a06953682a2c15d5bd5114c0284d5abf8bc0fe4da25cb9159427b70072","impliedFormat":1},{"version":"50256e9c31318487f3752b7ac12ff365c8949953e04568009c8705db802776fb","impliedFormat":1},{"version":"7d73b24e7bf31dfb8a931ca6c4245f6bb0814dfae17e4b60c9e194a631fe5f7b","impliedFormat":1},{"version":"d130c5f73768de51402351d5dc7d1b36eaec980ca697846e53156e4ea9911476","impliedFormat":1},{"version":"413586add0cfe7369b64979d4ec2ed56c3f771c0667fbde1bf1f10063ede0b08","impliedFormat":1},{"version":"06472528e998d152375ad3bd8ebcb69ff4694fd8d2effaf60a9d9f25a37a097a","impliedFormat":1},{"version":"7303b45138d2511035056a5901a1490ebdcbf055cbb1276f8629c5121cbe733e","impliedFormat":1},{"version":"27f874cd5327507eeff699a74567f60c1215b94509f4308633a7b01922471ed2","impliedFormat":1},{"version":"a401617604fa1f6ce437b81689563dfdc377069e4c58465dbd8d16069aede0a5","impliedFormat":1},{"version":"2c6cf04bc525caf6546e859e8ef10bfb9573837ec0bc5ec7b53a7b1b8ca72781","impliedFormat":1},{"version":"8695dec09ad439b0ceef3776ea68a232e381135b516878f0901ed2ea114fd0fe","impliedFormat":1},{"version":"304b44b1e97dd4c94697c3313df89a578dca4930a104454c99863f1784a54357","impliedFormat":1},{"version":"0a437ae178f999b46b6153d79095b60c42c996bc0458c04955f1c996dc68b971","impliedFormat":1},{"version":"74b2a5e5197bd0f2e0077a1ea7c07455bbea67b87b0869d9786d55104006784f","impliedFormat":1},{"version":"4a7baeb6325920044f66c0f8e5e6f1f52e06e6d87588d837bdf44feb6f35c664","impliedFormat":1},{"version":"87cc05fe13108f02e12da7e3efd8e360fef78d96a0c9e11408ea1b1b9fb3e03d","impliedFormat":1},{"version":"1abbf67c218d23c2ce76887caac2df6c7dab3d97ba2b65348432b876f510002a","impliedFormat":1},{"version":"1a82deef4c1d39f6882f28d275cad4c01f907b9b39be9cbc472fcf2cf051e05b","impliedFormat":1},{"version":"4b20fcf10a5413680e39f5666464859fc56b1003e7dfe2405ced82371ebd49b6","impliedFormat":1},{"version":"c06ef3b2569b1c1ad99fcd7fe5fba8d466e2619da5375dfa940a94e0feea899b","impliedFormat":1},{"version":"f7d628893c9fa52ba3ab01bcb5e79191636c4331ee5667ecc6373cbccff8ae12","impliedFormat":1},{"version":"1d879125d1ec570bf04bc1f362fdbe0cb538315c7ac4bcfcdf0c1e9670846aa6","impliedFormat":1},{"version":"8bd496cf710d4873d15e4891a5dbf945673e3321ca74cf75187e347fd5ed295e","impliedFormat":1},{"version":"a6dba407fc287f1e25454e75028c91bbc00675f2d1c4e8b3edcc36c08611a486","impliedFormat":1},{"version":"d663134457d8d669ae0df34eabd57028bddc04fc444c4bc04bc5215afc91e1f4","impliedFormat":1},{"version":"e91f7b1344577a02f051b9b471f33044fef8334a76dc9e1de003d17595a5219b","impliedFormat":1},{"version":"c0723195c85e19656d6b5b9fdb81d3f3403c1ae4679e722c6ea058c516b38d12","impliedFormat":1},{"version":"186eea74805194f04e41038fc5eca653788b9dedbab7c2d7d17e10139622dd92","impliedFormat":1},{"version":"71d9eb4c4e99456b78ae182fb20a5dfc20eb1667f091dbb9335b3c017dd1c783","impliedFormat":1},{"version":"cfa846a7b7847a1d973605fbb8c91f47f3a0f0643c18ac05c47077ebc72e71c7","impliedFormat":1},{"version":"1594da19968752a22b2ac48c2d0e60575700e745c577a8a4a676b841238ad5bb","impliedFormat":1},{"version":"e0cee12109e0a10a4c3d6769fcc7644b7c1ea7f52365bea51728f5af29f8a137","impliedFormat":1},{"version":"7d4254b4c6c67a29d5e7f65e67d72540480ac2cfb041ca484847f5ae70480b62","impliedFormat":1},{"version":"3536968defef8a75514f547ead5e2e9c1e984820290ec9b00c5fdfb6ef786535","impliedFormat":1},{"version":"d83773870080c30a230e322ce13a9c6f3398e8dacea4ea8a83e26370f3bac23e","impliedFormat":1},{"version":"dcfeaf98d66314fec29a9076c4290e45d0b196a65827becc19138e9c7b855f37","impliedFormat":1},{"version":"6849fe9210fe4946d5f085bfed36758f33dc6ae15a751338d178dd4daa017c46","impliedFormat":1},{"version":"888cda0fa66d7f74e985a3f7b1af1f64b8ff03eb3d5e80d051c3cbdeb7f32ab7","impliedFormat":1},{"version":"60681e13f3545be5e9477acb752b741eae6eaf4cc01658a25ec05bff8b82a2ef","impliedFormat":1},{"version":"ffae4e1e06aa848a1e4bcef162cd1c48e5909b26223515981310af9c036bdfc7","impliedFormat":1},{"version":"a57b1802794433adec9ff3fed12aa79d671faed86c49b09e02e1ac41b4f1d33a","impliedFormat":1},{"version":"34e16eb7c31768a11a08aebcfb3d70d7b8f0b016197e98d8419e566ceae6d6c8","impliedFormat":1},{"version":"f94ec1f7e4b709d26960306c9082a7a1b728a6e13089346aa48ba57c74cbf47e","impliedFormat":1},{"version":"9a11cb4033405e96c247cd5aa29790212aaffdd127869e8a5219103f0b389fd5","impliedFormat":1},{"version":"01479d9d5a5dda16d529b91811375187f61a06e74be294a35ecce77e0b9e8d6c","impliedFormat":1},{"version":"aff5213585cb72e94054dfe17250ff315f3569b3919d1ef1ad235f37c4ee894e","impliedFormat":1},{"version":"fb2ea35e1be6388d722d7725e2b49c697d34d9c890c3b96758faaeb86d35cef8","impliedFormat":1},{"version":"ce0df82a9ae6f914ba08409d4d883983cc08e6d59eb2df02d8e4d68309e7848b","impliedFormat":1},{"version":"1a4dc28334a926d90ba6a2d811ba0ff6c22775fcc13679521f034c124269fd40","impliedFormat":1},{"version":"f05315ff85714f0b87cc0b54bcd3dde2716e5a6b99aedcc19cad02bf2403e08c","impliedFormat":1},{"version":"5fad3b31fc17a5bc58095118a8b160f5260964787c52e7eb51e3d4fcf5d4a6f0","impliedFormat":1},{"version":"72105519d0390262cf0abe84cf41c926ade0ff475d35eb21307b2f94de985778","impliedFormat":1},{"version":"456006a6975b26c0a1785feddae165f6d307e2d601ffde27e21fc4a790e448a4","impliedFormat":1},{"version":"c857e0aae3f5f444abd791ec81206020fbcc1223e187316677e026d1c1d6fe08","impliedFormat":1},{"version":"ccf6dd45b708fb74ba9ed0f2478d4eb9195c9dfef0ff83a6092fa3cf2ff53b4f","impliedFormat":1},{"version":"1fe0d18b111e1145a7e7601855bccd4ca20f24e3b9a5aba6bb1fa9d1a7059170","impliedFormat":1},{"version":"5632c3c26d420c063eebe64c45b1248b9492a67bf44f1d0c57e9dc8f6cf449bb","impliedFormat":1},{"version":"0df5aa619ab12993a39ea6dae062ee46eadbb4d738916460e636ada52bced75b","impliedFormat":1},{"version":"8fca3039857709484e5893c05c1f9126ab7451fa6c29e19bb8c2411a2e937345","impliedFormat":1},{"version":"35069c2c417bd7443ae7c7cafd1de02f665bf015479fec998985ffbbf500628c","impliedFormat":1},{"version":"10ab7be91f87ebe8916b62cf28af2e45b5601fc7b0e311adf838f912c6b31dd8","impliedFormat":1},{"version":"bc636fbc08e0979ceb7eb0731a33000283d77a33b62e1f71ee65be50394e40ba","impliedFormat":1},{"version":"7e0b7f91c5ab6e33f511efc640d36e6f933510b11be24f98836a20a2dc914c2d","impliedFormat":1},{"version":"045b752f44bf9bbdcaffd882424ab0e15cb8d11fa94e1448942e338c8ef19fba","impliedFormat":1},{"version":"2894c56cad581928bb37607810af011764a2f511f575d28c9f4af0f2ef02d1ab","impliedFormat":1},{"version":"0a72186f94215d020cb386f7dca81d7495ab6c17066eb07d0f44a5bf33c1b21a","impliedFormat":1},{"version":"75bbd3be047d539988a0ff0b56384ef7a6a25f3b676ad96bee547d44c31622a7","impliedFormat":1},{"version":"42960001a776b089ade681ab5cfddc936e0afb0615133ec1841f3dee89d3e1bf","impliedFormat":1},{"version":"0aedb02516baf3e66b2c1db9fef50666d6ed257edac0f866ea32f1aa05aa474f","impliedFormat":1},{"version":"da47712b394d944328245482603bc6f416d3949b67c9392279caab595076b510","affectsGlobalScope":true,"impliedFormat":1},{"version":"37d0071d8f0a06dc55c2c5e0ec3391affd4fd107c53410bf358196ec0bf3923f","impliedFormat":1},{"version":"b213dad76ca37fd552274c9499056e1c0d9c1bd38a55bb7f68b22ba6b84c3ad7","impliedFormat":1},{"version":"56ccb49443bfb72e5952f7012f0de1a8679f9f75fc93a5c1ac0bafb28725fc5f","impliedFormat":1},{"version":"20fa37b636fdcc1746ea0738f733d0aed17890d1cd7cb1b2f37010222c23f13e","impliedFormat":1},{"version":"d90b9f1520366d713a73bd30c5a9eb0040d0fb6076aff370796bc776fd705943","impliedFormat":1},{"version":"bc03c3c352f689e38c0ddd50c39b1e65d59273991bfc8858a9e3c0ebb79c023b","impliedFormat":1},{"version":"19df3488557c2fc9b4d8f0bac0fd20fb59aa19dec67c81f93813951a81a867f8","affectsGlobalScope":true,"impliedFormat":1},{"version":"b25350193e103ae90423c5418ddb0ad1168dc9c393c9295ef34980b990030617","affectsGlobalScope":true,"impliedFormat":1},{"version":"bef86adb77316505c6b471da1d9b8c9e428867c2566270e8894d4d773a1c4dc2","impliedFormat":1},{"version":"5a49adaef698b7ad7e6127949fa1b0bbd3d46b7cbd11c54e392a4dcdd51f5190","impliedFormat":1},{"version":"96171c03c2e7f314d66d38acd581f9667439845865b7f85da8df598ff9617476","impliedFormat":1},{"version":"27be6622e2922a1b412eb057faa854831b95db9db5035c3f6d4b677b902ab3b7","impliedFormat":1},{"version":"5c634644d45a1b6bc7b05e71e05e52ec04f3d73d9ac85d5927f647a5f965181a","impliedFormat":1},{"version":"2489bf04d77dc025ba67f49f1a56eb24b9db477d5ff88123d887e163ed1776aa","impliedFormat":1},{"version":"63a7595a5015e65262557f883463f934904959da563b4f788306f699411e9bac","impliedFormat":1},{"version":"4ba137d6553965703b6b55fd2000b4e07ba365f8caeb0359162ad7247f9707a6","impliedFormat":1},{"version":"0b77b819b5417775fccb20c678293cf614c054a5b1a65421a5b933a9124ba998","impliedFormat":1},{"version":"e1f6076688a95bd82deaac740fccbe3cdea0d8a22057cccc9c5bce4398bdd33b","impliedFormat":1},{"version":"9252d498a77517aab5d8d4b5eb9d71e4b225bbc7123df9713e08181de63180f6","impliedFormat":1},{"version":"b1f1d57fde8247599731b24a733395c880a6561ec0c882efaaf20d7df968c5af","impliedFormat":1},{"version":"c8dadeff90ccc638d88a989c1139fd6a1329a5b39c2a7cbef1811c83ffe40903","impliedFormat":1},{"version":"35e6379c3f7cb27b111ad4c1aa69538fd8e788ab737b8ff7596a1b40e96f4f90","impliedFormat":1},{"version":"1fffe726740f9787f15b532e1dc870af3cd964dbe29e191e76121aa3dd8693f2","impliedFormat":1},{"version":"5a3ea721d03a361ccbdd7390ccd75f6e84cbca3a3f01f4b331ecc9af31890c49","impliedFormat":1},{"version":"e7dfaee4af38d45b1cab8a1ee0b3bc1f85ddcf64545ed391d675d78ae6526274","affectsGlobalScope":true,"impliedFormat":1},{"version":"98e2b197bf7fe7800f89c87825e2556d66474869845e97ad9c2b36f347c43539","impliedFormat":1},{"version":"af48e58339188d5737b608d41411a9c054685413d8ae88b8c1d0d9bfabdf6e7e","impliedFormat":1},{"version":"616775f16134fa9d01fc677ad3f76e68c051a056c22ab552c64cc281a9686790","impliedFormat":1},{"version":"65c24a8baa2cca1de069a0ba9fba82a173690f52d7e2d0f1f7542d59d5eb4db0","impliedFormat":1},{"version":"f9fe6af238339a0e5f7563acee3178f51db37f32a2e7c09f85273098cee7ec49","impliedFormat":1},{"version":"1de8c302fd35220d8f29dea378a4ae45199dc8ff83ca9923aca1400f2b28848a","impliedFormat":1},{"version":"77e71242e71ebf8528c5802993697878f0533db8f2299b4d36aa015bae08a79c","impliedFormat":1},{"version":"98a787be42bd92f8c2a37d7df5f13e5992da0d967fab794adbb7ee18370f9849","impliedFormat":1},{"version":"332248ee37cca52903572e66c11bef755ccc6e235835e63d3c3e60ddda3e9b93","impliedFormat":1},{"version":"94e8cc88ae2ef3d920bb3bdc369f48436db123aa2dc07f683309ad8c9968a1e1","impliedFormat":1},{"version":"4545c1a1ceca170d5d83452dd7c4994644c35cf676a671412601689d9a62da35","impliedFormat":1},{"version":"320f4091e33548b554d2214ce5fc31c96631b513dffa806e2e3a60766c8c49d9","impliedFormat":1},{"version":"a2d648d333cf67b9aeac5d81a1a379d563a8ffa91ddd61c6179f68de724260ff","impliedFormat":1},{"version":"d90d5f524de38889d1e1dbc2aeef00060d779f8688c02766ddb9ca195e4a713d","impliedFormat":1},{"version":"07ed3ddab975995eea41b22f3010506fb9f5fb301d04820b07d7a1aee5477d7c","impliedFormat":1},{"version":"969d8b0965849f4bae7cab0ba90bd1e1220e95999c2c6f01117fa7500901c017","impliedFormat":1},{"version":"6ec840ee5e2bc103f557fe38b1d585ee250540468713d7634ee066de372bf332","impliedFormat":1},{"version":"b0309e1eda99a9e76f87c18992d9c3689b0938266242835dd4611f2b69efe456","impliedFormat":1},{"version":"47699512e6d8bebf7be488182427189f999affe3addc1c87c882d36b7f2d0b0e","impliedFormat":1},{"version":"6ceb10ca57943be87ff9debe978f4ab73593c0c85ee802c051a93fc96aaf7a20","impliedFormat":1},{"version":"1de3ffe0cc28a9fe2ac761ece075826836b5a02f340b412510a59ba1d41a505a","impliedFormat":1},{"version":"e46d6cc08d243d8d0d83986f609d830991f00450fb234f5b2f861648c42dc0d8","impliedFormat":1},{"version":"1c0a98de1323051010ce5b958ad47bc1c007f7921973123c999300e2b7b0ecc0","impliedFormat":1},{"version":"ff863d17c6c659440f7c5c536e4db7762d8c2565547b2608f36b798a743606ca","impliedFormat":1},{"version":"5412ad0043cd60d1f1406fc12cb4fb987e9a734decbdd4db6f6acf71791e36fe","impliedFormat":1},{"version":"ad036a85efcd9e5b4f7dd5c1a7362c8478f9a3b6c3554654ca24a29aa850a9c5","impliedFormat":1},{"version":"fedebeae32c5cdd1a85b4e0504a01996e4a8adf3dfa72876920d3dd6e42978e7","impliedFormat":1},{"version":"e297c0a524edee7677939122f90027bfbe5f2698939d9a85728e5044b39c7124","impliedFormat":1},{"version":"cdf21eee8007e339b1b9945abf4a7b44930b1d695cc528459e68a3adc39a622e","impliedFormat":1},{"version":"bc9ee0192f056b3d5527bcd78dc3f9e527a9ba2bdc0a2c296fbc9027147df4b2","impliedFormat":1},{"version":"b62381cae176db34f003cc6172ee8f3e0122014889d66391aa73698105cf4934","impliedFormat":1},{"version":"1d9c0a9a6df4e8f29dc84c25c5aa0bb1da5456ebede7a03e03df08bb8b27bae6","impliedFormat":1},{"version":"84380af21da938a567c65ef95aefb5354f676368ee1a1cbb4cae81604a4c7d17","impliedFormat":1},{"version":"1af3e1f2a5d1332e136f8b0b95c0e6c0a02aaabd5092b36b64f3042a03debf28","impliedFormat":1},{"version":"30d8da250766efa99490fc02801047c2c6d72dd0da1bba6581c7e80d1d8842a4","impliedFormat":1},{"version":"03566202f5553bd2d9de22dfab0c61aa163cabb64f0223c08431fb3fc8f70280","impliedFormat":1},{"version":"41eb514d9ce0a6e87957f08a4b7af70d93f87637f37dee706e2d92a6601c25a9","impliedFormat":1},{"version":"e7765aa8bcb74a38b3230d212b4547686eb9796621ffb4367a104451c3f9614f","impliedFormat":1},{"version":"1de80059b8078ea5749941c9f863aa970b4735bdbb003be4925c853a8b6b4450","impliedFormat":1},{"version":"1d079c37fa53e3c21ed3fa214a27507bda9991f2a41458705b19ed8c2b61173d","impliedFormat":1},{"version":"5bf5c7a44e779790d1eb54c234b668b15e34affa95e78eada73e5757f61ed76a","impliedFormat":1},{"version":"5835a6e0d7cd2738e56b671af0e561e7c1b4fb77751383672f4b009f4e161d70","impliedFormat":1},{"version":"4b7f74b772140395e7af67c4841be1ab867c11b3b82a51b1aeb692822b76c872","impliedFormat":1},{"version":"7bd01f0f28cd3aeb2046274d85208e245965f6f2948edf4f7b2057bcf9f22ccc","impliedFormat":99},{"version":"d2f2cf2b8cc92bea913cda4a076e0f790b23a21e84f989d12f0116a7fe3906e0","impliedFormat":99},{"version":"6de125ea94866c736c6d58d68eb15272cf7d1020a5b459fea1c660027eca9a90","affectsGlobalScope":true,"impliedFormat":1},{"version":"f5b20bc288ee49989c95b20847fc93b96bf61cc0845598897a6a53a967dd7d07","affectsGlobalScope":true,"impliedFormat":1},{"version":"064ac1c2ac4b2867c2ceaa74bbdce0cb6a4c16e7c31a6497097159c18f74aa7c","impliedFormat":1},{"version":"3dc14e1ab45e497e5d5e4295271d54ff689aeae00b4277979fdd10fa563540ae","impliedFormat":1},{"version":"d3b315763d91265d6b0e7e7fa93cfdb8a80ce7cdd2d9f55ba0f37a22db00bdb8","impliedFormat":1},{"version":"b789bf89eb19c777ed1e956dbad0925ca795701552d22e68fd130a032008b9f9","impliedFormat":1},"7b550dda9686c16f36a17bf9051d5dbf31e98555b30d114ac49fc49a1e712651",{"version":"86b102e60a4d4c285c07c64769e4aaa93307284cc88917d9424420609f489400","impliedFormat":1},{"version":"26340d098786f276f40e5406480b1787ce58afce404f13b7e0f645cc1113e7b2","impliedFormat":1},{"version":"e76f888e1511e2b699b9d10bb972a4e34a2ffd5d1fb0f6ec08e2e50804ee2970","impliedFormat":1},{"version":"9db0e2142e4b3a896af68ff9e973bd941e03ff6f25e0033353dc5e3af9d648c6","impliedFormat":1},{"version":"7a3f38519a1807335b26c3557dd7600e11355aef6af0f4e2bf03d8b74ec7b0ca","impliedFormat":1},{"version":"c8ec757be6c03d17766ebce65802bd41703c7501f395be6f2d3283442fbe37f3","impliedFormat":1},{"version":"fd6d64a541a847e5ae59f78103cc0e6a856bd86819453c8a47704c5eaf557d04","impliedFormat":1},{"version":"5b1d18741093b1a8de17f6a4fc5bca378957f782d71b6a14b4d8d713718c82cc","impliedFormat":1},{"version":"a4e6b39ed57ead478c84677b2c90769b9fe096912320f7c7f65774e550d0ad9e","impliedFormat":1},{"version":"c6253a9320428ee8f8ec66246157de38533682b870bcbe259c634b905e00c06c","impliedFormat":1},{"version":"f1aeccd71b66219f5e0071732e7d836043b37f658e61d05c3a646e0244f73e7e","impliedFormat":1},{"version":"e8935dc2e290becf8a37c6880341700e83687cbd74f565cbd9cfc91232ff8cc6","impliedFormat":1},{"version":"f22a4854da501581589462ab8ab67d1ffe7d40a1eef961f12cf50f04f024773d","impliedFormat":1},{"version":"cf840ecf6d5e70ac184ed2db77b76ddcc90a2671a10e445009dcf46bbf2d3b62","impliedFormat":1},{"version":"e0c33120f2909ec13da5623c940351896b7599c151b36652a59d582ac4a60228","impliedFormat":1},{"version":"8109063db4edb419af0fe70241bd2f8b09f0c2e4a2cf9bca0482e3150c8a2c7a","impliedFormat":1},{"version":"2a4315b8b6710449f9c6d6edc89cfbb92656b506041892b378c6c8fc3b7aa400","impliedFormat":1},{"version":"6db826c2ef889c0215fb881f80a42b776b03e61f1e8d19e0397af1cee2aa75c2","impliedFormat":1},{"version":"d49a2811b9782d2bbb51f3828dbff29a266d0375422ffd2008290f8a8dbcefb0","impliedFormat":1},{"version":"7d194ef85fc529c41556658bb2132d059b901cf2d784669a2de5142665841e1e","impliedFormat":1},{"version":"758462bfdd5286521a86b89657bc1b22495f39507560a7c4859fd5321b90873a","impliedFormat":1},{"version":"666a19079e45916f373b3aee42f3016692109bda253e3aa533628c7984626969","impliedFormat":1},{"version":"e96782e7f451e6d44eaaf3f4f5a52442ee21911740d5c758e78149aa7ee00c07","impliedFormat":1},{"version":"6f4577c261a33c7cda23c31ebe96abfb752b84875107d887fb45b689aaab591f","impliedFormat":1},{"version":"6985210d8335a62d0e45b74dbcb11e75b0d879afe3657e685e5a50e38d11ead2","impliedFormat":1},{"version":"a6fa56092df29c5c213a06ce91840f242dd3d6233d7b21e90aa91b7727892cf4","impliedFormat":1},{"version":"a3ac5c28c6638c006c8c08a3970e54717f556424dea72b48c780c3a7654dc8c3","impliedFormat":1},{"version":"bc47cdc983e9e53cf6b0a9afc8a7ed5870f305e26a1c8c2cde7b9b5f7e7c17c9","impliedFormat":1},{"version":"7c26c9292ffe1e6cd500ca7c2a9b05c60cd4f14cc448c9a1dbbce0115aa224cf","impliedFormat":1},{"version":"beb5edf34b7c9201bb35f3c9c123035d0f72d80f251285e9e01b8d002dc0df75","impliedFormat":1},{"version":"52124f927dfdf1e5da9071c34c3d9a324788ba08925368a149e5213546dccfd4","impliedFormat":1},{"version":"d01fa7e8b57175358ee691e2b29be1bd716c72f4460e0ce0f8e1583e205738cc","impliedFormat":1},{"version":"e552130d7d49731d16365b4d0b52bc3490c280e946b702403648e3c4d4ebfa3b","impliedFormat":1},{"version":"af7ddd1cc6649a936fe4ccd4cbab19be4e6f200891b21a85a8a83184645b2c97","impliedFormat":1},{"version":"9ad6c4be6e417e58362cb18f2c6a07cc9f3ee14fb178afb0ad92354ab369a94c","impliedFormat":1},{"version":"7dcf8d015bc99e7e456a9e33d069bb5653f57fe19fe8375536705bff5e370393","impliedFormat":1},{"version":"4b3c3eecbd6a202196657da67f8d63fb300b1f4cfc3120609c28e59fc8b4427e","impliedFormat":1},{"version":"0c5c15c6fa329c0c3020d2b9bfd4626a372baedb0f943c5f8b5731fab802da4e","impliedFormat":1},{"version":"810ea75f2be951600569b38299a57fdf6013721fc9e40d8588b12d3bde57adf2","impliedFormat":1},{"version":"5573ca9fa776eff37bfa901e839ddf063ad2e876831a124cd0ff6e2b7b105ade","impliedFormat":1},{"version":"6a1e9ca07648a8ef6dbb611e1e93923c2155d91e2be3f31984f74c0098e1cda2","impliedFormat":1},{"version":"c03f6401f9fc9bd9038c1127377cbef25697116a3b95c0f28ec296076cd0fed5","impliedFormat":1},{"version":"6a786d3e7f5f9d50ac5c774f440cbbe974e6c66e4a953648af3c0ad463178223","impliedFormat":1},{"version":"e4a86483f52f3d08dfe69c231a051b6c1044e79e7193f80b52bccd11d7f252f0","impliedFormat":1},{"version":"89f00e35a09d867885264b24039e4e390e9a616c2b1ba73aead49f0645170167","impliedFormat":1},{"version":"96ff9deaf52b679a21490b2375b6023f21f01c5daa415112862c3c886f6d0632","impliedFormat":1},{"version":"3fc69c9224905fdfb62fec652d796673504444402e84efd48882297c5602ad8f","impliedFormat":1},{"version":"b6e0277eb6f7f764a3ea00b9b3c650b5ebb69aae6849c322b5b627e5f926a216","impliedFormat":1},{"version":"41682402ed20d243a756012f952c399fcb60870acd17652521a4298fd4507343","impliedFormat":1},{"version":"4aa132e059dacfc51cdc33fa4f807abde80bbd0b1fdcdac488d23305a03ab379","impliedFormat":1},{"version":"c19f9770b4e1d05c70ff519c80307622c6919ff9250a6beb8549285366fdb553","impliedFormat":1},{"version":"325060545391e0ee693b2a972b374a55c9abf18eff6277ad42e7a29b9022e5a2","impliedFormat":1},{"version":"0f0f3c13ce0a8d041422919e0089910bf5e7def9bbcdcf0d4d10311a2b2787d7","impliedFormat":1},{"version":"3ac5d50f1f1c95405eb72a4230b1bc83cc743474a78e336669200479c03b414e","impliedFormat":1},{"version":"3da0e146b6d7bbf26ccb2556bd84946d3ccd51aeea0f5d2db7f31ffea41fc9b6","impliedFormat":1},{"version":"eb65e93c3597e597892b805275aa60c7158734d58c4407c9c2d384e08eca3739","impliedFormat":1},{"version":"e54d57f1e648299fcb77ede901ffef62b6fd47c28659fb6e06009f64b134b2dd","impliedFormat":1},{"version":"d176cf2c1237243105e40bd06bee14acb9bbda3fd7a9e3f0d7770084e4326158","impliedFormat":1},{"version":"7150b7b4375cc347daa65b2abde328bafb9fe3e0f11843ff560458be69a2327f","impliedFormat":1},{"version":"7126c1da2df14d50e69a6028c0152c431530a00ce0fec1b5785ddc434666e4d3","impliedFormat":1},{"version":"202095d68ca89dc725f1ba44b3b576ea7f82870fbe06233984adca309b288698","impliedFormat":1},{"version":"5c5b20707f157894a4cf7339560fe1caa0717ca5a39c97fc7ed29103926bf345","impliedFormat":1},{"version":"68aafaf52b5490e853da2c167e5077e9404e511c5ce7773c43ebabdc26f890f2","impliedFormat":1},{"version":"f38fb1c0a48829df6832411a4907bbf8dd82ed71390ce4893fdf6f1f0e5dd08a","impliedFormat":1},{"version":"a89c6aca351cab815887f5af8f59c9aa311e15d5ac21cb41dd4a8291dce8cee7","impliedFormat":1},{"version":"3444353044f5e04f9283a4d9690898626ee34d0e4568774e8dfd8cbb205b2166","impliedFormat":1},{"version":"d628db9a48397700abeebb7526da22a4a6624745b0dc83be9aba85cbace3180f","impliedFormat":1},{"version":"c70d66e2188d5e934baa895db1e014e240671db256b8b4567aefbae171599ba8","impliedFormat":1},{"version":"d619dd4fd8e1a72f2d447c26b9d054c6e0cac0f5d11347d50229759fe0b051e3","impliedFormat":1},{"version":"aa370a6fc6d9ff67202409250764237a38b81cc04df31890cb553ade8848d5be","impliedFormat":1},{"version":"0dd7804b4fd9c5479c0350c764e7b234a6fc50841e9e9d37e6925f19b1986d61","impliedFormat":1},{"version":"8832f6dfbcf8ef36a4fdc8c464824b60d80e915495cd19e08be6f22862901883","impliedFormat":1},{"version":"6daa06e5a06bd24095d6de71a47c92ef0a6a1bf5b32ddc9f2b933f35d054c857","impliedFormat":1},{"version":"ad73c95ccffc1439d04520958a1f41e3ceab8399424d1311c6d1c8603da4fe55","impliedFormat":1},{"version":"1544f5696c2da2fb3657cea416de05f911df8b309b2ba95279af570d1368a4dd","impliedFormat":1},{"version":"1be9d12a91cd95a91ef1b793dbc11b70ca80ab66238a900e51286ca0fb2fea6c","impliedFormat":1},{"version":"7fc6c82eae4a0a3e0425b85c8d4e89f7a558cc9481a6945d6e1c53b41c249e67","impliedFormat":1},{"version":"4258d8fb8279d064ca8b8c02adb9493ce546d90419ba4632ae58eb14a7cb7fb6","impliedFormat":1},{"version":"1dfc02f19f27692bd4b6cc234935d15a32c60a93f34830726450ff15e7fc8d50","impliedFormat":1},{"version":"f987703c9e27a121cb01ea02a4a8333f84b10ac9d0e506cecaf82676bd8ea719","impliedFormat":1},{"version":"40e925cb2f28b2cee51ac61834975fcb61142ca2b730cbf81c87b8d5aa111c48","impliedFormat":1},{"version":"8876ab57fb4b272ca5059a6e229cb1798dfe20566d1a631914e7b2e5364c5529","impliedFormat":1},{"version":"354b770772cb211687d6dc95a11020f8fffae477ace16c236ce63b714d27719c","impliedFormat":1},{"version":"9712400fef20f493586708a85c291ac9bdd6f0d29c05b2b401cb92208f2710e9","impliedFormat":1},{"version":"601331538f73dbbbdf865d5508dffcf172d3a345fa2731b2a327b7d9b37e9813","impliedFormat":1},{"version":"3ffa083da88679f94bce7234c673fcbd67c0001b0856c9b760042b2e1add5f08","impliedFormat":1},{"version":"c61bec1d381d3a94537e8ac67c7d894aa96e2a9641e7b6c6ec7b24254c7336b1","impliedFormat":1},{"version":"4c6f94efb7f9d4f34d9e7a2151d80e2b79963a30bac07352cb4e2a610b93c463","impliedFormat":1},{"version":"f197a72c55d3d0019c92c2eff78b2f3aab143d023f0831aaf06b4a528ac734b8","impliedFormat":1},{"version":"fb888c5a5956550e39e7bcaaf1fe5aad043593df897f00f37cdba580393003f7","impliedFormat":1},{"version":"174834865f27ee63be116cf7252c67b42f1144343efccf96ddc38b3254ffdd60","impliedFormat":1},{"version":"57fa785e9330221c0cc17ea880842469cac556df892b88bde5b84210427275ca","impliedFormat":1},{"version":"654d87dabe3bde9a6dc185b0e592728dfd5dcb250c09390e05dea27bc0cf6e05","impliedFormat":1},{"version":"bf8d985fc022d631ca8e07c313aa8257aab72843600965edf8b71bbaf790816e","impliedFormat":1},{"version":"22632341762a793e74d850c68e363cb44a49190514eb8a602dec805f0022de11","impliedFormat":1},{"version":"469f145eafac81b725762804e5115079e925432a1cee7ca6474afb1eaeae957f","impliedFormat":1},{"version":"d8d80cee8a0304e13a1e10c82c59e6c58601e1795a962c15ff8a70005036a65e","impliedFormat":1},{"version":"6a37d31e829363e42d2c9ea33992e5f72d7132cbe69d3999ebb0ec276a3f220d","impliedFormat":1},{"version":"bad1a84baedfd6e34353db65f9e8dcf62c1dab6974bb7e7cbf3175b71181e68c","impliedFormat":1},{"version":"06c9ff76d57f08ee25dcb3d17da952c32645de6578753b1eadf7bcf38c865482","impliedFormat":1},{"version":"ace0b3104b38c72d3b419ef63e9cf2cc67c6e8d74c4c2c0766805b0304f90493","impliedFormat":1},{"version":"dfbbd2888718ed9322cb11ffa93dfa112ae04b9049e7a88ea90bb191eceaedc6","impliedFormat":1},{"version":"5a3d42d4cde9d8f72910df5f64eb479b7e6ceac3541ecba6e599fbd3d0682f4f","impliedFormat":1},{"version":"fa4b2b13eaedb94b33fac8b8aec5176d7d2060bd1d953a651c187fd1f75e94e5","impliedFormat":1},{"version":"88536d645d9532b2def693ae1d73507d99bcca5d474df07351ae0ad3805e40dc","impliedFormat":1},{"version":"b22ce67d8165eb963e4562d04e8f2d2b14eeb2a1149d39147a3be9f8ef083ac3","impliedFormat":1},{"version":"18662f19cd845e75735447045b2239c481a184cf1053f95803cf2b7386dabf46","impliedFormat":1},{"version":"b3e0e511a59924e0d89df3d6b36c8faf157ddfc5aacc2a1b28cd6b6259b2f505","impliedFormat":1},{"version":"e523455e1d8b4e6e19da3493e696206d69d50643307e22f90e1325a3d49c2b94","impliedFormat":1},{"version":"b802f1d72349bd6ba037341a710a09add8679b859ea08ae14aa9e21d4972e2cd","impliedFormat":1},{"version":"f822c6938a5610cf468f265fbde1d47f7128dffb9996bdb181dde826c7e5af15","impliedFormat":1},{"version":"d68f20525ae9abe3a085826a692bcfecd5ff5342adef9f559cce686ca41b6f45","impliedFormat":1},{"version":"c6e45ae278e661a4228e2a94339d0b4b9af462ee9720ed6f784b3a77337286ad","impliedFormat":1},{"version":"12d5a54442b46359ffb1df0134bc4c6d8480e951cf1078e1c449e0e36550f512","impliedFormat":1},{"version":"ab608346618d26d52776b98bf0cb4617d30f8cec7dff6f503cdb3dd462701942","impliedFormat":1},{"version":"bbf86228e87839ea81a8bac74f54885255ed9d1c510465fadca55a7a6a3283ae","impliedFormat":1},{"version":"df71667fe8e6b3276ea5fe16a7457a9d18a3a3b30e0766d259bb8029de2a4ec8","impliedFormat":1},{"version":"b34ed5ec21dac2e66e304775b46334bf6fb481f450783a309e53f75c24dbc765","impliedFormat":1},{"version":"71fe886db8cb12e11376512b6efdabb8cd96e4c2f4ad8ded5f56f69e8b4ae26b","impliedFormat":1},{"version":"78b0a989532cb9b1016dea7b266d61a9ff5df7588e21f546bf142bbadcab4b3f","impliedFormat":1},{"version":"e5383048a7261fbc6d6a92a813f71b5dbce2c9888d8488de9dcb937290ad3fea","impliedFormat":1},{"version":"cbf296365f5dda152e06d25d3a1a602ca6dfb88985b539e5b7c22582af21f080","impliedFormat":1},{"version":"5082bf4dc0bdd52c9986f74b60bcd7175d7ae725c47e52bbcdd9052b6d0bcc89","impliedFormat":1},{"version":"cc842002527d85469442ac0bb86ca87f8b06638c3dd302113f0dd1e2246d85ff","impliedFormat":1},{"version":"6db13dcb7310850962f428a68909212d10168a9f69b2126c05468c4cc3bd6678","impliedFormat":1},{"version":"a4257472201f865c9e110646cd23183bc5e9646067ab5a4c7a299ef61472e1e7","impliedFormat":1},{"version":"f67c33db397851720be7dd5486dcd0440186fd62e3f9bc8df992249a86bba18a","impliedFormat":1},{"version":"e8193b31aef5ac0ded76bdbdb2492e46a712c562c7f117be5394dfb655a87918","impliedFormat":1},{"version":"44ed745d493f40340bef9e6c5602214f62165aabc49ae9ca1f1d9be848ec994b","impliedFormat":1},{"version":"366a02de58af1cd7cd081e97fdc6a64d44a741120e470712f98f5cdbc2558ea3","impliedFormat":1},{"version":"d69da5ed404cad095d48aa5b3bf0108424c998680f1d37fbc59e9bff745b30c6","impliedFormat":1},{"version":"260c761225625eba7408a265f77b1e199e9beae4725c722bf0f2952c2ef68081","impliedFormat":1},{"version":"14b4e105e6ba5fcf378fe97f7be956d95d3ae9c3f21f65833d20050a679955a5","impliedFormat":1},{"version":"c7b2399d36ef76eba067eeebec5725406778b85e515a3b7cee34f38775ba0e95","impliedFormat":1},{"version":"15c897dd57fb04b36874c52eaa0be98045ddb5c94d752f1a2390af1eb69d5ba4","impliedFormat":1},{"version":"d9d617d0fe71ce20bc73ce139aba0973581729f8965a335538ffe70eaa8ec091","impliedFormat":1},{"version":"a8ffecbac87229515fa19630409bbd78bf2c2abc2f83ca38f11d281b4c0db40d","impliedFormat":1},{"version":"eab8a32518514b5898c3219e1ecf132b6492d8214ab3f895b0112ea15266eb62","impliedFormat":1},{"version":"f1539a941db422140ba02fed80db5f03f2efe4d6c9edc7473302b7df3f9e3035","impliedFormat":1},{"version":"bc747047f10b1f0228452f2ba0e77d641aeeb80104251bd6fe597893180208bd","impliedFormat":1},{"version":"f74b2243dab7450133a50670682ffc90ab67059ee7ce31dbed7834519af1459f","impliedFormat":1},{"version":"5e05c2323e1a66d6e4e160749e5b41ff5816c3c042098f42a502bbca254ba2b9","impliedFormat":1},{"version":"d3d08060421f4c5c6ee366aae6de7ffe373188b61048a741e15d84c85f526e8d","impliedFormat":1},{"version":"fdc7c80234f3514e6684ba92d76eb8a3f7f421d7afed8c8c5a4e38ac5c09dece","impliedFormat":1},{"version":"80257cd2ece1777d51e36c904699c4cfc7ed056b6a762e486ba8bc411a8da37d","impliedFormat":1},{"version":"9655c91910ec260a52fee8610afedba17e6625748c26a8a232e5388b77c8987c","impliedFormat":1},{"version":"1a71a1dcf26e837062ed2a2df7fab181bb533059256769c009c21d6650c569b4","impliedFormat":1},{"version":"fbbd919af21d33ad0cfad0ed21455bed47dce7f2a58402dfa4e8276c45a2afda","impliedFormat":1},{"version":"e025b2d167fd6852a49f674b08f3590186b29ad1606030417bca9fb893710927","impliedFormat":1},{"version":"6ba01c5f3fbefad3c5fc491091f5be9efdb24b40e520f71571e027f404620f99","impliedFormat":1},{"version":"88287b61d5b7b1196d92e47c3748d094ab50a37ace67207f9a4cde73ed33d713","impliedFormat":1},{"version":"1455d4cc7e25a7a9abb85df11fa9545b64da27647f0b5d615816895b58d08ba8","impliedFormat":1},{"version":"fec0e7056aea3e3ceed3f02ac0591d5c45589e19ebd517b9a1cf342678be5721","impliedFormat":1},{"version":"7394d433c1f3307951f6e0a247fc645ef3760d9cec4a38a9fab68765dde74796","impliedFormat":1},{"version":"d6c7209dff6b430c2f8730281dcf06b1a738f60d9b9968fdefa282ace986da92","impliedFormat":1},{"version":"5dcf68b529709161444768647090f94d19dd50310cd937f3732865d83164dc2f","impliedFormat":1},{"version":"18396073ffbf1a38413587d6c962f5acdf9a6cfb671daae7703ead038cd84426","impliedFormat":1},{"version":"edab1807a237e21867a9ee7a64308fd6d37f75fabb228805873ecd7a39d3b2a1","impliedFormat":1},{"version":"d2f25b7bf88a2031886183815236d9d05a5b2d32d5cc74636090445c7f6e9626","impliedFormat":1},{"version":"39d261215d131f301eeeb0ed9c97e959dc0fa9b6be37691b2ab20714c1f505f6","impliedFormat":1},{"version":"e04315c35ea65210b1e680548210358f11ce3eea601b2cd449ceef8d36f9243e","impliedFormat":1},{"version":"c9b781a244b97e7031245fe35be8fca013ea16098b7a554634f4d12a85d33b35","impliedFormat":1},{"version":"f59869ad0db7e49bfd5021fec738031bcd4386623ada5666cf80facc0357c700","impliedFormat":1},{"version":"76439253e23d96777dde88a1a8fc86a0d364b5406f642f14f6cf4a3d91bd3575","impliedFormat":1},{"version":"e16c9ed120424bb53ad690047f8b96e49623943e42901428445b776ccaff3975","impliedFormat":1},{"version":"c16b36187b90962c7c50228305257490d519768f4f117bbcea79c11eafc89540","impliedFormat":1},{"version":"debdc7421eaed9084f90c4149f094bb832bf3f833ae5f084cdb7596428cf1512","impliedFormat":1},{"version":"7c5c1fbc3746048910537b16f0244c772a2e1b5764ccbee64ca44c224aca0958","impliedFormat":1},{"version":"54097f6c2cf04a44a8928b82a96b11c8e6b14f2c39262f223b69b325d3fa8aa4","impliedFormat":1},{"version":"c91142cf2edcfa66df568dd16dae1dd2e1d2b23b3c68c0ef0dc6aa7290b3e824","impliedFormat":1},{"version":"7258729034dd466294076442c084ca2794e5bf6a18881696b11f9befcdd1146e","impliedFormat":1},{"version":"68d9cd14aed809c49cedde16011dc9a0e243bfc526e7140b254c27f90f2620d2","impliedFormat":1},{"version":"2877ff863af41e84f20c108409c6c69b06a61bad3e07a6ac2279455282db866b","impliedFormat":1},{"version":"21dc554aaf7291955838936f07a8d78dbfe08585d63ff707f66b4e03aabcd4fb","impliedFormat":1},{"version":"0e8341398f41f27df2cf714c4306706d2d50f30ce8961f351d99b4b124d9a65b","impliedFormat":1},{"version":"1ab3b857ad816e17897010a7abaf69a873219e8cf495350701b5688d97562696","impliedFormat":1},{"version":"00edee5f99654b9387949790be7db3713365fd7a6a681419d7b5bd65b2ad84b2","impliedFormat":1},{"version":"3b268a41864c0ad19b51a7400ab96e4635bb97ee087431ec50c095e3cdd55254","impliedFormat":1},{"version":"4e0cd765b1da5dcedde856a357f2301e88bd0e7bd96f0fcf518cda918b99063e","impliedFormat":1},{"version":"4ac2c2dada287d88fb886e6e846026d531b8921e25c84de8882b6822b28e6db8","impliedFormat":1},{"version":"baeb5b10d303c1a423431fbb13227a9a7697e68ee3c26988d602a3fb21d52cdd","impliedFormat":1},{"version":"cd48b06477e85c7542dcfe483b40f25bc92d4eb35fbb18d8669d647d354f9dca","impliedFormat":1},{"version":"32afc6399293b6f02842c4d4adba5bae6bab865bba3c68bfb10df06f11132e96","impliedFormat":1},{"version":"bd87a5ca2da958ed091a2790078a4113795999df57855bbc715b0653f79cc297","impliedFormat":1},{"version":"a3c1beee2c7c8b30a8968ff9a7ea7fcc7ab9af665df1e1d50e36e51f57bec4ea","impliedFormat":1},{"version":"1929f416abeeb29d80dc448d6d3c145125b023c1d988b30eea1df6fa5c9df8a2","impliedFormat":1},{"version":"061c489268c2c1050fea2bda080d9f342f2a5b4562e20ef86698c0a65c2e26a7","impliedFormat":1},{"version":"f3e7892784b7d862ec0a3534c7c87048b9c1ec30aed3cd6255f817b528b38691","impliedFormat":1},{"version":"d5faadcd0a2133574e4f6f19400dbb2474fc35e158832f0f14bf26b220290e7e","impliedFormat":1},{"version":"2aff3c969f006ea2fa84da1525ac184a84fe2e4eda593cee8847f764555141a3","impliedFormat":1},{"version":"69792d8faea92295395ad1b8c98adc90dde979c7e4cfa98e2c617fe5eaa6400a","impliedFormat":1},{"version":"a044eb1be8fc48a259a7f988c44bd23eaceb6dc65a84782f32e9db77c22793d0","impliedFormat":1},{"version":"0b815def1afe22980cbde6c2fc814b80c70d85a3c162901c193529e68212ac62","impliedFormat":1},{"version":"a2ac1778dbcd36c5660067e2bb53cb9642dd1bab0fc1b3eea20c3b5e704abdb7","impliedFormat":1},{"version":"c43ec0afd07a8c933fbc3228333a40ec653d6feae74561e0409c1a6838cd1bc3","impliedFormat":1},{"version":"c6b58be9ad789430aff7533750701d1bf7de69743c97443ad0eb2e34ac021aea","impliedFormat":1},{"version":"94044fa21380382135c76eb7de8dc50348f37b2ae87d97b9bd726adfead28c66","impliedFormat":1},{"version":"7cf8b7e877a162bbde841e7aa46d2e8ea477cef7b51fd3c575646bdcd52040ad","impliedFormat":1},{"version":"04c1f616c16ab14f485f00b8a9061edb49a7cb48d3dfdf24a9c257ae25df2023","impliedFormat":1},{"version":"791e53f4962819a309432e2f1a863e68d9de8193567371495c573b121d69b315","impliedFormat":1},{"version":"85de5c3f7ad942fbb268b84d4e4ca916495f9b3e497171736e6361d3bf54f486","impliedFormat":1},{"version":"edade900693968f37006614c76b04573ac5f6c01c1adda98b8584f51956ea534","impliedFormat":1},{"version":"7f3b0ddd51e4fb9af38d5db58657724e497510110a13d80efc788ec2b57bba49","impliedFormat":1},{"version":"1a416fa77716007ce5f2388e651974032ce6dd16f542942847ea899c24d9a84f","impliedFormat":1},{"version":"63c9d377adf66f0eac304ba29b7e8bb5ccab3b523ec1912bf41bbf12cad46b06","impliedFormat":1},{"version":"13876cb9c05af8df22376541ade85c77c568469dfe6ca2dfa100c3269b5d391a","impliedFormat":1},{"version":"017524481107a062d0d25510ee37db024c4007f9718c1e8ebfc462e1f3e6546b","impliedFormat":1},{"version":"098eef14e558f01293630398a08a566e832c8e8d6b749c135ff193f35df6c66b","impliedFormat":1},{"version":"d6e5c561fa71c7917382bf802b810ab4d36f22d6b881ec9501bfb67b6ef46134","impliedFormat":1},{"version":"bd350e8341e83735bb5095e40f32b8da0ca87f238823b0f24a6b692fb2c0c44e","impliedFormat":1},{"version":"ae396ddebb22bbeeff4fc82310c6d2d03533e863062133fea2a53b536978d679","impliedFormat":1},{"version":"3875f9986470e60b87dcf03d4891d6590193dbd11063228bc8ce1629692af82d","impliedFormat":1},{"version":"e0b648fa6bdfa8e24ee2e77d1a544d50f39539d339e05285d4641618cc85162e","impliedFormat":1},{"version":"84e3c6e1cbe8fcb78e6d9cc4fdc5c53cf9717120cf5825c004b6cbb2b3522b55","impliedFormat":1},{"version":"095af94d1b06f8c7099240174c5221128e7b4e89be1e82966bfd288dac95f7f6","impliedFormat":1},{"version":"e0c650c644fa032243b09c0c419111757dbe65a2410c57cf5166fcfe8ec9a306","impliedFormat":1},{"version":"b069fcfcdeaf8cca75c459c2dba1145dbcd59a60e0dc7bb6cc8147d8601ddffe","impliedFormat":1},{"version":"6a50e3d12e9ca5aef267205c603ef4dde26423b37949f01e2e9500392fe6ae05","impliedFormat":1},{"version":"72101dd1dc549e97baaa3160d929d367705179a8df778a6901271a6904f35c43","impliedFormat":1},{"version":"0ddab6fa84c76be6c82c49495d00b628610fbb3f99b8f944402e6fe477d00fea","impliedFormat":1},{"version":"87ffb583e8fd953410f260c6b78bb4032ae7fb62c68e491de345e0edcf034f93","impliedFormat":1},{"version":"0d6270734265d9a41da4f90599712df8dfc456f1546607445f6dcf44ebb02614","impliedFormat":1},{"version":"9d3d231354842cd61e4f4eac8741783a55259f6d3a16591d1a1bbc85c22fce2b","impliedFormat":1},{"version":"95444e8d407f2b3e4e45125a721f8733feb8f554f9d307a769bba7c8373cc4bb","impliedFormat":1},{"version":"230105e3edca4a5665c315579482e210d581970eb11b5b4fd8fa48d0a83cca43","impliedFormat":1},{"version":"c0f23f635c51467286dce569148edac352722f8dcee352aaa82d439173ff5057","impliedFormat":1},{"version":"6baeccb6230b970d58e53d42384931509f234a464a32c4d3cdb0acbf9be23c82","impliedFormat":1},{"version":"1ef785aef442f3e9ddead57ec31b53cec07e2d607df99593734153bd2841ba1e","impliedFormat":1},{"version":"b8b323fe01d85e735ecd0a1811752ddc8d48260dfc04f3864c375e1e2c6ee8b4","impliedFormat":1},{"version":"b49d558ac56d28e458a34f2b3c3d4e56ac91db0850589ced007ac6bfcfcf8710","impliedFormat":1},{"version":"fd9a664a1fe1ae10aff56e7706931b2ac9104e71881cee7df344ddb7c6328a60","impliedFormat":1},{"version":"64867671065ec6dcc7b79a1a389108b5acec4757b118c9d06449cd1482b53969","impliedFormat":1},{"version":"1165bc45f052eef16394f0b5f6135dfc87232ce059d0d8e1c377d6cdbf4bb096","impliedFormat":1},{"version":"40bb47052bd734754cf558994b34db7c805140acf5224799610575259584cf6b","impliedFormat":1},{"version":"d41ce4340adfc1c9be5e54aa66c9bb264030c39905afb3bd0de6e3aca9f80ef0","impliedFormat":1},{"version":"504c70f7c7a74957faa966846ab8630007406e01605add199bc751a2f1833a09","impliedFormat":1},{"version":"3875f9986470e60b87dcf03d4891d6590193dbd11063228bc8ce1629692af82d","impliedFormat":1},{"version":"fe2a0ad4ed323c9bca9a362fc89fe9e0467cc7fbe2134461451cbbc7fb6639d8","impliedFormat":1},{"version":"be52e44d8af0edf60a0e7e3ed295d482f0ced53ca28459cb059ee85a50acc981","impliedFormat":1},{"version":"6c8cb6ec476b004f11b74a8b527f6a000b519cba22eef677381ce6cfbac5f403","impliedFormat":1},{"version":"bcafe8f67e8c4739d76d1a5c57a5437d9a39acae339d594f362d006e5c646441","impliedFormat":1},{"version":"837ab7516e5d6b9fc4cbffbcd76af945f17a32b37703e6b43739fb2447e0c269","impliedFormat":1},{"version":"220a0608983530eb57c83ebb27b7679b588fdfcae74a03f6baf6f023c313f99a","impliedFormat":1},{"version":"d66a1e8d093d2fdfca0a8cd3abda133485b96f105444d9328b143706de6f0e6c","impliedFormat":1},{"version":"576e197b88932ee86f3e772061f828ca718d27c040d078425cd30bc9d0e2f873","impliedFormat":1},{"version":"37f1c5a1745c3e14d51864c3bc11db3db6f387381308dad4070285c312e045d1","impliedFormat":1},{"version":"c36036b85f3c2addf406b3ff0c064e97b3f37eceafd3c39c68aa2a406b71b9c0","impliedFormat":1},{"version":"785dea0c5263f2b923d501f6dc21b949beb165ec2096b61c4d3e5f87e3782948","impliedFormat":1},{"version":"95fded989f52b498fcb5bd877f78791b2cc073d1235f5854496c601dc6c4896f","impliedFormat":1},{"version":"07ce493ec6947a668e1759beacb3bae93a969c599890f8b2dbacef7c4c42a7b5","impliedFormat":1},{"version":"5ba9e3014bd661db8fbc2bcd4678cdbb3811623af5e46c6202bc612f84e140ef","impliedFormat":1},{"version":"e687191bddc59e11508784cb14253f0ca8033331b7b2dec142cd1920dfb55bff","impliedFormat":1},{"version":"f98e2d059aaf3588be83385ecfaefb1ab5101a6a1ce48505e7232a9a11b5a127","impliedFormat":1},{"version":"8c1586a4a59ccb1c74ba32a776462128fd83eeac7e4df2681659592c958b7435","impliedFormat":1},{"version":"1f3e8a0e346b23658e83ee6d20727a0fc9876faa5a1f227c94f5612fc8bf9035","impliedFormat":1},{"version":"5dfcedc428d68e115c5ad7a03e86def522d2f878accd4d4782a9a9c1158de0d8","impliedFormat":1},{"version":"283f3b773da04e3a20e1cdccff5d2427ee465a1aeac754f5516ad1d59f543198","impliedFormat":1},{"version":"8426ee0766091376cf487d0365429d31cd737885e93007c4a93e2e7cc6790944","impliedFormat":1},{"version":"38140bb660a84513cd18e3dd73bfad35d982fcef94dc73f7625366e5cc7013cf","impliedFormat":1},{"version":"ab831387fd4452274967bcaff49d331200ecb98df23362225e5e350cbea8cd06","impliedFormat":1},{"version":"520e75f608cc7ea36d80d639d70ca09d7c6467247bf80eda487ba4d3dc656826","impliedFormat":1},{"version":"4b4e0b1c3ed5e3ea3e34e528c314884c26aa4da525dba04af41e8fb0afe10c52","impliedFormat":1},{"version":"5b06394e29458c6ce0ec2807a86cd8e0a415b969c4ab9f89339ea8a40fa8c1a0","impliedFormat":1},{"version":"a34593c0e757a33d655847418977cda8b2792e3b3432d6ef2a43a86fda6d0aa9","impliedFormat":1},{"version":"2df5cd8f15e09493249cd8d4234650bd0ab97984e53ddcf35d5ffd19a9c8d95c","impliedFormat":1},{"version":"fff5b5e7ca461b67b296c20c538752054eb08db3249bab80d1e260d22f6e2b8b","impliedFormat":1},{"version":"d230d62ae7c13e5a0e57ca31b03cfd35f5d6de5847e78a66446dffb737715c3b","impliedFormat":1},{"version":"7b3697570705e34a3882a4d1640d0f21d30767f6a4bc6d3f150c476e30e9f13a","impliedFormat":1},{"version":"4b88891e51db60664191a05ad498d1eff56475ae22945e401e61db54e6ea566f","impliedFormat":1},{"version":"26deefe79febba4c64b6af45206dd6ed74211b33e65b7ea3c6f5f4a777cf1cc3","impliedFormat":1},{"version":"33cba11a791c2f78cafb27b652767dbbece2591def167e94ce76b394c79e210b","impliedFormat":1},{"version":"12cb10a3c721e920afa28d045844ae42ef8c8b2ec5033669c40186aa6ba5addc","impliedFormat":1},{"version":"25217da56dbbd1a612b1523049cc8a6598da81b444ef6db05ecdcba7badb1cf8","impliedFormat":1},{"version":"f91e1ddab3cda5e19360ab53bc12239a102a4251fd48ebca0c8206c8a8a8df4a","impliedFormat":1},{"version":"b9d1f1ee0f4b92e6414f54ab4fdbc31c0d7d424cd07a50f4aaca0f2307ddd297","impliedFormat":1},{"version":"2f3f9a5cb4821452db29e2c5222e2aef6c4e9b8c2389ae4f2000efa13aece39d","impliedFormat":1},{"version":"c1556feb26d8ffe99af0c2c411efa0c15347f21fec0786c746a394a7b3f0f38b","impliedFormat":1},{"version":"fba44e215687bab53ebc3f5f06d86abafbcad900c2f30c4aa7b757a1e2c83eee","impliedFormat":1},{"version":"f4f4f2ac2c85a3592545acc11005f548131ab71f3bb665f22effe4a012b92e46","impliedFormat":1},{"version":"ce4ebd3b64bb7a809edaedd16af649d74d512935dfecb9ed2890f184c6d80421","impliedFormat":1},{"version":"2c531237450cdfbff4008f8a9a8e220dd156a599177cf9681a9c0e1102ede5f0","impliedFormat":1},{"version":"318f242e400269593e2ef9d58cbc16ce0f28753b2e0133ab2f14c20cecf5627d","impliedFormat":1},{"version":"18f7051506429cc0f768e5b6d5b6fbcf84ee6061a13d17ba1a87b6c422fff87f","impliedFormat":1},{"version":"e97e14f2b6261619b8ce730d289dc833eed70fea2f56e8f78aaae65e439e219b","impliedFormat":1},{"version":"20f8c1a3437002fd73283c608cbdb974c2350959c63566d7283299e6240726d6","impliedFormat":1},{"version":"290f92f979e202318c10c533f72b08177073c2a8dde0a3457ab4ea3187bae64e","impliedFormat":1},{"version":"1dfdd8086c7ceebff179d82d25f4abdc784b18fd5d4db9ea68107d54a9019da7","impliedFormat":1},{"version":"b257fc5fdd1bb2e39c21d2f4b91d9ff01d05ec22ffbc90338bdca320305c0051","impliedFormat":1},{"version":"32599f2b9d584c7e08e53ae572aa8ae54cc6ba52becc170f8592ee412a751a1c","impliedFormat":1},{"version":"e315e50add364d5c866c4ef710b66bd82f8233725a663b285573bfd4ab24db2d","impliedFormat":1},{"version":"c8b0cfe8430c466b1b91494845a56748fe28d6038f4307679463e9e232e9e292","impliedFormat":1},{"version":"78ef6ddda03845628cfb3b3830dff308c6e97452e71428217172b3af9bcf8fb5","impliedFormat":1},{"version":"ce24f76047dd08da4c27b6331fdc1cb6fc28904f405cc2f8eb3003a478d20337","impliedFormat":1},{"version":"206daaf25cbbf28e00cc0d929dcb9a768cbcebf47928e8d44464de47e4bc2524","impliedFormat":1},{"version":"daf84df325239641e025bd0c22e990927d34f257678f29025815f41daea2fcfc","impliedFormat":1},{"version":"a8fc80002fb13049fa71f7cf40fe7de037b8fe0318fc554c56d2757ce37b173e","impliedFormat":1},{"version":"5be8bec899bb9720067b20859ee1aa4cd77a311e8e56eb7042a1e1e7fe492adb","impliedFormat":1},{"version":"b543f702122a4af3f63fe53675b270b470befdedbfded945f3c042edf8d2468a","impliedFormat":1},{"version":"cb14f61770a3b2021e43a05eb15afc1353883f8a611916a6fe5fab6313f29a87","impliedFormat":1},{"version":"6d00fb60c7e85d0285844c3246acdbd61dcf96b4b9e91d4eda9442cf9d5c557d","impliedFormat":1},{"version":"ec060450f2ba4c6eaa51be759b0fa61ba7485b7bbde4ac6bc9c01d47c39007c4","impliedFormat":1},{"version":"b832e38135a24b4eafb5050a0e459d5621d97d1598e3eb2b098869352d71b5c2","impliedFormat":1},{"version":"3f26ffc1b39a916e73b20ee984a52b130f66ae7d7329c56781dc829f2863a52a","impliedFormat":1},{"version":"97fadc416269ebbbe3aa92ee5f19db8f6b310f364be0bbf10d52262ce12f6d2a","impliedFormat":1},{"version":"94498580225a27fb8fec1e834fb2a974916916c46fb39d12615a64484f412c68","impliedFormat":1},{"version":"6d29d5b80d237cb622cf45ab8ff6b6876b61a4797455c72c56d4dd5df5c12960","impliedFormat":1},{"version":"110c30dea76a18ea1c8d1f980601db2b3300571ad00ec025b26858f7b45ebee7","impliedFormat":1},{"version":"769b47b13af06bdc5ac041b559690da8223a519d42508944b4c98eb6cc0ec934","impliedFormat":1},{"version":"bf2319665c8c69517cf89377765d2d3af231cf559cf1080aa37ff15015e9a4eb","impliedFormat":1},{"version":"b8cef6e390e7911fbee7f4246eab425cd1f3e626684472521dccbfb38118d1ca","impliedFormat":1},{"version":"5ab43a0a068a9039237aed0a5093c9554baeed727177f3657e3de762119bb96a","impliedFormat":1},{"version":"67220d0e0f450914033987a55f80e310fc3523c029377dd79d6cfd6c77f1b06f","impliedFormat":1},{"version":"a57f2bdc227a3f0b293b50b782e05f9530300f4694593efa1b663ef018f232ba","impliedFormat":1},{"version":"45ea575b839cbb9fa26936e7ce454a858e6d49ae556b29ba035960ee45a32876","impliedFormat":1},{"version":"d19eced46b92ea366f8ea66f6b6e02bc3abbae65d28437d87a8c22486530f4b7","impliedFormat":1},{"version":"69f537de6387ebfd4e5e17ef5edcaf3ed967b9b2ca316938348bda0e2b907586","impliedFormat":1},{"version":"3880a0278c1c935e06b49300ffc091fd722f82f018a71f0d0b9fd302a1a44252","impliedFormat":1},{"version":"fa3d90c8a0b0bc27a28d95104412cf3deb43bc6e97c5851887e7c643408aab65","impliedFormat":1},{"version":"f9b21b02be2c9170361809c9023304e63e3f2de7040a660da04a3e85ace807a2","impliedFormat":1},{"version":"01aee7686162f433bbb88354416ae684d9db1607a51886804e5826e063c9ffdc","impliedFormat":1},{"version":"62d3ef6a4ba6bdec0083533d0e794841370bdc6db39a7494cd0671e6cb707859","impliedFormat":1},{"version":"8609aa95007ff71195d12c68dc405f22bbb9b87ac954d2faf33f5e162de09466","impliedFormat":1},{"version":"829e988fd6fce09a6b43f2e8d406b88c3a77829bcb4636a1fc9f1c2d2cf1a292","impliedFormat":1},{"version":"4a7936ceb36333420c0819c07b0909e8507f15689387c18b51dc308c8eca5972","impliedFormat":1},{"version":"13e88c78bb476b3bbafe9e917d58fbfc5fdaf2ffc1f8781e29583c3ec4c475c0","impliedFormat":1},{"version":"550df32299fca9250a7c3969cf43e695ef25ece8ef9ea67320ddf25d0f44870e","impliedFormat":1},{"version":"39248e5c8d993cf56705b739f649c97afcadee7ffdb4cd658ddf8809887751f8","impliedFormat":1},{"version":"a4943f4a4f51f45d60ea63373218bbdafc72eaeae888e0e33ec794673ad23d47","impliedFormat":1},{"version":"a801e2946b1bac807ef023b8d590dbf04c022e36b49afea9d3bd872a26b7336b","impliedFormat":1},{"version":"9e8bab0289b06b455ed18cfde794ed1eef4cf350ccd00e6a63907f8303754d5f","impliedFormat":1},{"version":"e9f662d3776b1c5b725747596bf4df2b9319131044927e73ab77a6ff44f091bb","impliedFormat":1},{"version":"d0f5db2bc91d8f845db76baff5fa6f62292ecbfc167b78ec5ff75da5bfd5ba3e","impliedFormat":1},{"version":"53c2531013baef4e1aa0e5ab5d34fd0f63fee313a3b7d0a54a0deb4121078c18","impliedFormat":1},{"version":"718d63c433fdd03909cf1e489aec287f000c431cf6f5b090a862605c3f0f7830","impliedFormat":1},{"version":"ab9fddfef297dbf96d74b5295f9c83da745054404f1f82f872b5d18f7405ecec","impliedFormat":1},{"version":"3875f9986470e60b87dcf03d4891d6590193dbd11063228bc8ce1629692af82d","impliedFormat":1},{"version":"a4e9e0d92dcad2cb387a5f1bdffe621569052f2d80186e11973aa7080260d296","impliedFormat":1},{"version":"f6380cc36fc3efc70084d288d0a05d0a2e09da012ee3853f9d62431e7216f129","impliedFormat":1},{"version":"497c3e541b4acf6c5d5ba75b03569cfe5fe25c8a87e6c87f1af98da6a3e7b918","impliedFormat":1},{"version":"d9429b81edf2fb2abf1e81e9c2e92615f596ed3166673d9b69b84c369b15fdc0","impliedFormat":1},{"version":"7e22943ae4e474854ca0695ab750a8026f55bb94278331fda02a4fb42efce063","impliedFormat":1},{"version":"7da9ff3d9a7e62ddca6393a23e67296ab88f2fcb94ee5f7fb977fa8e478852ac","impliedFormat":1},{"version":"e1b45cc21ea200308cbc8abae2fb0cfd014cb5b0e1d1643bcc50afa5959b6d83","impliedFormat":1},{"version":"c9740b0ce7533ce6ba21a7d424e38d2736acdddeab2b1a814c00396e62cc2f10","impliedFormat":1},{"version":"b3c1f6a3fdbb04c6b244de6d5772ffdd9e962a2faea1440e410049c13e874b87","impliedFormat":1},{"version":"dcaa872d9b52b9409979170734bdfd38f846c32114d05b70640fd05140b171bb","impliedFormat":1},{"version":"6c434d20da381fcd2e8b924a3ec9b8653cf8bed8e0da648e91f4c984bd2a5a91","impliedFormat":1},{"version":"992419d044caf6b14946fa7b9463819ab2eeb7af7c04919cc2087ce354c92266","impliedFormat":1},{"version":"fa9815e9ce1330289a5c0192e2e91eb6178c0caa83c19fe0c6a9f67013fe795c","impliedFormat":1},{"version":"06384a1a73fcf4524952ecd0d6b63171c5d41dd23573907a91ef0a687ddb4a8c","impliedFormat":1},{"version":"34b1594ecf1c84bcc7a04d9f583afa6345a6fea27a52cf2685f802629219de45","impliedFormat":1},{"version":"d82c9ca830d7b94b7530a2c5819064d8255b93dfeddc5b2ebb8a09316f002c89","impliedFormat":1},{"version":"7e046b9634add57e512412a7881efbc14d44d1c65eadd35432412aa564537975","impliedFormat":1},{"version":"aac9079b9e2b5180036f27ab37cb3cf4fd19955be48ccc82eab3f092ee3d4026","impliedFormat":1},{"version":"3d9c38933bc69e0a885da20f019de441a3b5433ce041ba5b9d3a541db4b568cb","impliedFormat":1},{"version":"606aa2b74372221b0f79ca8ae3568629f444cc454aa59b032e4cb602308dec94","impliedFormat":1},{"version":"50474eaea72bfda85cc37ae6cd29f0556965c0849495d96c8c04c940ef3d2f44","impliedFormat":1},{"version":"b4874382f863cf7dc82b3d15aed1e1372ac3fede462065d5bfc8510c0d8f7b19","impliedFormat":1},{"version":"df10b4f781871afb72b2d648d497671190b16b679bf7533b744cc10b3c6bf7ea","impliedFormat":1},{"version":"1fdc28754c77e852c92087c789a1461aa6eed19c335dc92ce6b16a188e7ba305","impliedFormat":1},{"version":"a656dab1d502d4ddc845b66d8735c484bfebbf0b1eda5fb29729222675759884","impliedFormat":1},{"version":"465a79505258d251068dc0047a67a3605dd26e6b15e9ad2cec297442cbb58820","impliedFormat":1},{"version":"ddae22d9329db28ce3d80a2a53f99eaed66959c1c9cd719c9b744e5470579d2f","impliedFormat":1},{"version":"d0e25feadef054c6fc6a7f55ccc3b27b7216142106b9ff50f5e7b19d85c62ca7","impliedFormat":1},{"version":"111214009193320cacbae104e8281f6cb37788b52a6a84d259f9822c8c71f6ca","impliedFormat":1},{"version":"01c8e2c8984c96b9b48be20ee396bd3689a3a3e6add8d50fe8229a7d4e62ff45","impliedFormat":1},{"version":"a4a0800b592e533897b4967b00fb00f7cd48af9714d300767cc231271aa100af","impliedFormat":1},{"version":"20aa818c3e16e40586f2fa26327ea17242c8873fe3412a69ec68846017219314","impliedFormat":1},{"version":"f498532f53d54f831851990cb4bcd96063d73e302906fa07e2df24aa5935c7d1","impliedFormat":1},{"version":"5fd19dfde8de7a0b91df6a9bbdc44b648fd1f245cae9e8b8cf210d83ee06f106","impliedFormat":1},{"version":"3b8d6638c32e63ea0679eb26d1eb78534f4cc02c27b80f1c0a19f348774f5571","impliedFormat":1},{"version":"ce0da52e69bc3d82a7b5bc40da6baad08d3790de13ad35e89148a88055b46809","impliedFormat":1},{"version":"9e01233da81bfed887f8d9a70d1a26bf11b8ddff165806cc586c84980bf8fc24","impliedFormat":1},{"version":"214a6afbab8b285fc97eb3cece36cae65ea2fca3cbd0c017a96159b14050d202","impliedFormat":1},{"version":"14beeca2944b75b229c0549e0996dc4b7863e07257e0d359d63a7be49a6b86a4","impliedFormat":1},{"version":"f7bb9adb1daa749208b47d1313a46837e4d27687f85a3af7777fc1c9b3dc06b1","impliedFormat":1},{"version":"c549fe2f52101ffe47f58107c702af7cdcd42da8c80afd79f707d1c5d77d4b6e","impliedFormat":1},{"version":"3966ea9e1c1a5f6e636606785999734988e135541b79adc6b5d00abdc0f4bf05","impliedFormat":1},{"version":"0b60b69c957adb27f990fbc27ea4ac1064249400262d7c4c1b0a1687506b3406","impliedFormat":1},{"version":"12c26e5d1befc0ded725cee4c2316f276013e6f2eb545966562ae9a0c1931357","impliedFormat":1},{"version":"27b247363f1376c12310f73ebac6debcde009c0b95b65a8207e4fa90e132b30a","impliedFormat":1},{"version":"05bd302e2249da923048c09dc684d1d74cb205551a87f22fb8badc09ec532a08","impliedFormat":1},{"version":"fe930ec064571ab3b698b13bddf60a29abf9d2f36d51ab1ca0083b087b061f3a","impliedFormat":1},{"version":"6b85c4198e4b62b0056d55135ad95909adf1b95c9a86cdbed2c0f4cc1a902d53","impliedFormat":1},{"version":"5b0a37625653b878a2dea8a2bd3606b08afd4c5435c602123f93d0abcee7278b","impliedFormat":1},{"version":"3960170989120c4776de46353f760dc83e625356120c9f4ec551a100bfad304b","impliedFormat":1},{"version":"5d2c3510e9435b1425701545b7256f54ea50f04d90ccefbb1c59630437574f27","impliedFormat":1},{"version":"6de61e2bd3f74ca8431d013bdee0667ad140f6c33e86ef0bffc3eecd0a177c0e","impliedFormat":1},{"version":"2da6a88db7c63476444b4f86836a181afc665a27a76216e2573228e31945aa20","impliedFormat":1},{"version":"4e1a7d04c48095bf58b4d412d2032026e31f0924eb4c1094366fbb74e4d9ad3d","impliedFormat":1},{"version":"0f67da0334f5cfe857d3a691d77b1b77969b19680ca17a4d5257fb2ee7d1cdc2","impliedFormat":1},{"version":"be1df6dd59c2cb384f8c6d67637ec39c4bba868eb132d890999704c2b891a53f","impliedFormat":1},{"version":"2b809c20f0f23d1b7e136cbb1f20dbb04ac781e2bb53059938b183e42a1a37d6","impliedFormat":1},{"version":"aa9a80428c275bcce3ef886f726084ad858678cdd8fbad418c044f449c8eb42c","impliedFormat":1},{"version":"09a7b3e963e5fc1cd24cce8eb15f52bfd45890f398afeff8aea4e67031458719","impliedFormat":1},{"version":"4990ff30f9b1f09013cc502acacf9986f161df8ec94220c997a674da29a12d34","impliedFormat":1},{"version":"29eb3afed89c7362edc4c490a7ce5437079a5d7cab7f56b2728fb503e266c6ca","impliedFormat":1},{"version":"cb01a788fc87e8359538284b34f2dd160798ac47417b356acd9c42c83e9a6e9e","impliedFormat":1},{"version":"901716549627e07fb0e37968cfba8bab25df470d409376e19ea69ef06409dd3e","impliedFormat":1},{"version":"a1e8ec7e9901514002cebcf3b0eba3c9e5b6a043d4507d3c0e0f11917d570d95","impliedFormat":1},{"version":"07ea97f8e11cedfb35f22c5cab2f7aacd8721df7a9052fb577f9ba400932933b","impliedFormat":1},{"version":"89d38c7653de0c74c3752f77ef50472e158fd37304c58dca3ec3ab0e03ec40e7","impliedFormat":1},{"version":"dbfa8af0021ddb4ddebe1b279b46e5bccf05f473c178041b3b859b1d535dd1e5","impliedFormat":1},{"version":"7ab2721483b53d5551175e29a383283242704c217695378e2462c16de44aff1a","impliedFormat":1},{"version":"bcd53fb10140012c84d7440fcf5e124643bb1b7898909d6220f1308bd8a94e7d","impliedFormat":1},{"version":"15c662fe6ce3e8d1bf0d44191296e37420e0823a81958f2c79618890282c0a59","impliedFormat":1},{"version":"1538a8a715f841d0a130b6542c72aea01d55d6aa515910dfef356185acf3b252","impliedFormat":1},{"version":"68eeb3d2d97a86a2c037e1268f059220899861172e426b656740effd93f63a45","impliedFormat":1},{"version":"f521ab6dd9c7d1bffed41fc69f1c7f763743ed4bbc07a4ccae664e65c84711ee","impliedFormat":1},{"version":"0d65250cfc0a084baa749f9d00d0d772fb4ddcac6e0542ca33b61da515b65ddc","impliedFormat":1},{"version":"675e5ac3410a9a186dd746e7b2b5612fa77c49f534283876ffc0c58257da2be7","impliedFormat":1},{"version":"49eef7670ddfc0397cfd1e86d6bcff7deecf476efb30e48d1312856f0dc4943d","impliedFormat":1},{"version":"cc8d1de1eae048fb318267cc9ddd5a86643c46be09baa20881ab33163ca9653b","impliedFormat":1},{"version":"d6025465105bae03153679b3241805998316f492a6a449f14cd8b92489c2a6a9","impliedFormat":1},{"version":"63de4f4c8ff404aa52beaa2f71c9e508d9e9b3250b2824d0393c9dcfee8ab8d6","impliedFormat":1},{"version":"27b33e3a7a19563752b13d0973039240b549ede107009dc02866e12c5dd2273e","impliedFormat":1},{"version":"48609767cd72c5b4714dc76f3ab7bfe1c54c245d4fea5bb5122b631d9a8ae963","impliedFormat":1},{"version":"a7f590406204026bf49d737edb9d605bb181d0675e5894a6b80714bbc525f3df","impliedFormat":1},{"version":"533039607e507410c858c1fa607d473deacb25c8bf0c3f1bd74873af5210e9a0","impliedFormat":1},{"version":"c10953c3930a73787744a9ab9d6dca999bbf67e47523467f5c15cf070bf7d9fa","impliedFormat":1},{"version":"4207e6f2556e3e9f7daa5d1dd1fdaa294f7d766ebea653846518af48a41dd8e0","impliedFormat":1},{"version":"c94b3332d328b45216078155ba5228b4b4f500d6282ac1def812f70f0306ed1c","impliedFormat":1},{"version":"43497bdd2d9b53afad7eed81fb5656a36c3a6c735971c1eed576d18d3e1b8345","impliedFormat":1},{"version":"b13319e9b7e8a9172330a364416d483c98f3672606695b40af167754c91fa4ec","impliedFormat":1},{"version":"7f8a5e8fc773c089c8ca1b27a6fea3b4b1abc8e80ca0dd5c17086bbed1df6eaa","impliedFormat":1},{"version":"d2c19aa3fe2b5fab220c5f1e911ac5a936ad771a9c5cd3d00d1e868112ab97ad","impliedFormat":1},{"version":"3f7081ce9e63775009f67c7fc9c4eb4dcf16db37e0b715b38a373bad0c07df69","impliedFormat":1},{"version":"724775a12f87fc7005c3805c77265374a28fb3bc93c394a96e2b4ffee9dde65d","impliedFormat":1},{"version":"5c37b7e2b41f0a8af443cb1d589c171e0dcf0dbfbde2569632af87f24e5ea893","impliedFormat":1},{"version":"b646e3d74123131d98458615cd618b978d38670f5d15e87767eb7466b04017bb","impliedFormat":1},{"version":"5461f831e6afb7c73eb8216500d5670f5ee89644dc7835cb161825895776cf8b","impliedFormat":1},{"version":"ed6d3024f7812bf10119bfb0e14ae6ed13b4080caa08a6f8704ff1c3fe78f919","impliedFormat":1},{"version":"cc0e834c8cb2733d07941d61b178ff4600bb98f3a85082a5e2f20728f1029a96","impliedFormat":1},{"version":"bcd3257c5486e9c4572ede5089524f899824dd86fd910f5b826d6838019b745e","impliedFormat":1},{"version":"4330d600b00d422bde3bc445365b3724a13ebe8c1fd63b79ef9889c01932c445","impliedFormat":1},{"version":"bf22ee38d4d989e1c72307ab701557022e074e66940cf3d03efa9beb72224723","impliedFormat":1},{"version":"39aa4e7fb238e24c127b6b641dd7f20eb0dd99a0a1d994d6ff1d82a6ac251db2","impliedFormat":1},{"version":"1f93b377bb06ed9de4dc4eb664878edb8dcac61822f6e7633ca99a3d4a1d85da","impliedFormat":1},{"version":"53e77c7bf8f076340edde20bf00088543230ba19c198346112af35140a0cfac5","impliedFormat":1},{"version":"cec6a5e638d005c00dd6b1eaafe6179e835022f8438ff210ddb3fe0ae76f4bf9","impliedFormat":1},{"version":"c264c5bb2f6ec6cea1f9b159b841fc8f6f6a87eb279fef6c471b127c41001034","impliedFormat":1},{"version":"ff42cc408214648895c1de8ada2143edc3379b5cbb7667d5add8b0b3630c9634","impliedFormat":1},{"version":"c9018ca6314539bf92981ab4f6bc045d7caaff9f798ce7e89d60bb1bb70f579c","impliedFormat":1},{"version":"48a2488687e14191e50930fbd59058638af6c35c7432ce99d87b575e566816cc","impliedFormat":1},{"version":"b83a3738f76980505205e6c88ca03823d01b1aa48b3700e8ba69f47d72ab8d0f","impliedFormat":1},{"version":"01b9f216ada543f5c9a37fbc24d80a0113bda8c7c2c057d0d1414cde801e5f9d","impliedFormat":1},{"version":"f1e9397225a760524141dc52b1ca670084bde5272e56db1bd0ad8c8bea8c1c30","impliedFormat":1},{"version":"84672c9c04b7196492d5ae49eeaff8a7986415898a276c73c0e373e05f99a045","impliedFormat":1},{"version":"717242c9a1be7039ea5872293a9acadcab0e578221f9523d1534267fec31d60d","impliedFormat":1},{"version":"25ce1a008a22dde9d87f246fb6333326ffa25e97638b0fb089bbde98db162038","impliedFormat":1},{"version":"1f4ee0f727527241dd8d9d882723c9e0294e4a1fffba0c314039605356b753e9","impliedFormat":1},{"version":"85af5f2145b5f284dc938f239b201e8f2939b741d91540b0a9f6f143440adf42","impliedFormat":1},{"version":"f1b346754b2ea845146fe89ccafc326de1bc87092565fa7b67164456d86dc623","impliedFormat":1},{"version":"d8806304f06bb16076ff86eb7b5ae106023aa82bdfe69f41550319ae46aaf9d3","impliedFormat":1},{"version":"03e845df3ef2c73d5e76489c06a9573755d2c9073565f5390ec3d3567096aead","impliedFormat":1},{"version":"d104a855e65ff9c63118a842af3f4b9387145b527b93cb97858ae54a2383cc21","impliedFormat":1},{"version":"c1399f9d32aa36f0b2dabe1f494a6061ca85e2e5e2a67070a9c5c36d2a83a3fb","impliedFormat":1},{"version":"66ffe172e7a3879d606421c19f6f0dcd607527588e277621c686f2f3675fb2ad","impliedFormat":1},{"version":"cc2418937183b4354a3bf621a5d9a8e11a490fbceee71f46515058f039c7746e","impliedFormat":1},{"version":"56dba2f61eaeac928ef53a9c4b6df96df33834f0b8d39f59ac820bc4f0b65f5c","impliedFormat":1},{"version":"cd34fe236632c8c8cebdaa374d5b6ca4edfdfef0bc29d365f6613498970b4a44","impliedFormat":1},{"version":"e009f9f511db1a215577f241b2dc6d3f9418f9bc1686b6950a1d3f1b433a37ff","impliedFormat":1},{"version":"a82f1cae07471a353623bedad67e7fb26eb626d7791142cfe6037cd9c4e7bde3","impliedFormat":1},{"version":"64d15723ce818bb7074679f5e8d4d19a6e753223f5965fd9f1a9a1f029f802f7","impliedFormat":1},{"version":"2900496cc3034767cd31dd8e628e046bc3e1e5f199afe7323ece090e8872cfa7","impliedFormat":1},{"version":"6d2089f3928a72795c3648b3a296047cb566cd2dae161db50434faf12e0b2843","impliedFormat":1},{"version":"97e8c3a9ffa71c62eb745f3eeb41d493e42127baca20b7cd03e4a53702e99254","impliedFormat":1},{"version":"6ea62a927ac2607a6411804617e52761741fae66e533f617d5fbf3f3eff1073b","impliedFormat":1},{"version":"ac8582e453158a1e4cccfb683af8850b9d2a0420e7f6f9a260ab268fc715ab0d","impliedFormat":1},{"version":"c80aa3ff0661e065d700a72d8924dcec32bf30eb8f184c962da43f01a5edeb6f","impliedFormat":1},{"version":"42ac0a2d5b1092413b8866603841ce62aeaaf4ee51d07dd872e6a2813dd83fd5","impliedFormat":1},{"version":"800336060bed9892ffe5b618002e55a6341589d49f33f0b4f0aeffd950e90180","impliedFormat":1},{"version":"ece1e5ebb02df1f9a6dcc24dd972c88b065b2c74494b3c475817b70e9a62c289","impliedFormat":1},{"version":"cdec09a633b816046d9496a59345ad81f5f97c642baf4fe1611554aa3fbf4a41","impliedFormat":1},{"version":"5b933c1b71bff2aa417038dabb527b8318d9ef6136f7bd612046e66a062f5dbf","impliedFormat":1},{"version":"b94a350c0e4d7d40b81c5873b42ae0e3629b0c45abf2a1eeb1a3c88f60a26e9a","impliedFormat":1},{"version":"a4fafc9e188dbcd3f030170698b98d0610290b923baa6dbc5ef73652fa73239e","impliedFormat":1},{"version":"ceea84e44e119a15325c107bb6a9da6f567fc0dfe0c7c0f0e14e01a6c414965a","impliedFormat":1},{"version":"bfc0481f643bb66acbe6ff99773257c7d7b46b3a675faa4facc7bf50a8ba2208","impliedFormat":1},{"version":"f218c747145eec6830f8e0efc8d788987f67fce6dabfcb70bde3560bf47d0511","impliedFormat":1},{"version":"f13c9631dc6452116f3a986087dd9a7821b22deeb0c786b941d1483b35189287","impliedFormat":1},{"version":"4bac0f7f581329423f654f76d113f9073b4d18fd6e83b84beca4af9b5ed4fee9","impliedFormat":1},{"version":"1ba3a5fb02029c4bb2e542ca700e3308c972a7b34b153b344b078e45ea0db005","impliedFormat":1},{"version":"94d8bc3c878752ee289d7c3f3549f32881e29fcc561c8bf9d9f2cd67b558ed93","impliedFormat":1},{"version":"3875f9986470e60b87dcf03d4891d6590193dbd11063228bc8ce1629692af82d","impliedFormat":1},{"version":"3875f9986470e60b87dcf03d4891d6590193dbd11063228bc8ce1629692af82d","impliedFormat":1},{"version":"c310cdd8f5c5f7195436a6a94800126c046aeeeb3aeb447f76165a682798857f","impliedFormat":1},{"version":"429ac276218b289820898ae3b2057ee418c6d30c968d1fa17851b2063122899b","impliedFormat":1},{"version":"dd07494b3edca057ace378714d8c3a9a95c346bef6b718056ef1a7ee054e35c1","impliedFormat":1},{"version":"3875f9986470e60b87dcf03d4891d6590193dbd11063228bc8ce1629692af82d","impliedFormat":1},{"version":"20b667e15cc2ab14000609214c2e560e540c822bf31b941fb4f15038e29ce605","impliedFormat":1},{"version":"a2901a2c60003b08f88adbf09eab8c387f4ce17751bfbe8ad59b73a1d6628734","impliedFormat":1},{"version":"a1ce92273694753d181dd7f0e7994c4e71e0ed0a4c8a3b1a4876d5709e7e87b0","impliedFormat":1},{"version":"3fed20104be1a20c52735d961b64f9a1decdd07748b7c35b4ac46aa8b2487883","impliedFormat":1},{"version":"05c4afe9fb849418a4cf8bcffd123f30cb94a5335bb709b7ef615d788d0d9220","impliedFormat":1},{"version":"68e20196d3296ce2ace8c5fcf6eff61cd607033e2804b8d13088eb23f38f83d7","impliedFormat":1},{"version":"ef50b70e88dd06c43a36110f6452eb274399654c77bb786c55bcfc58e8ab406b","impliedFormat":1},{"version":"0d32c4a5c28cccaacc760bd77605be8bef7e179b94818a513e96632077a9d798","impliedFormat":1},{"version":"6e727bbc5649553582173cf772511a06d036a4ac2cf9ef21957c8af0e7669432","impliedFormat":1},{"version":"23b69abd7830907e3cb24e8a8f7071328dd2915cb44a729171e69a6fa48626ef","impliedFormat":1},{"version":"72fc9bcdb1f07124dcb994d64e1514feda9a707cf80bf87fcf9597ae1d6ad088","impliedFormat":1},{"version":"4baf7a39de0af2ce60bf24a37c65ce8c2ba09be738834a92ae2a0808cf18bed9","impliedFormat":1},{"version":"bdd2b680797233e9645c1011cebbde4987fa9d21e92a61b555ed4690c57bfe44","impliedFormat":1},{"version":"025323d353041634f51777be926c79dc47366c4867886485b3971d5718046e0b","impliedFormat":1},{"version":"15daaffa8710627bdbc8acb01d2dca6d3008599f732e2ebddca1cb0e81301d6a","impliedFormat":1},{"version":"6c9779960bef81e8e52cc0a8046b369b8d1d355917f3944b394cce768166c9b1","impliedFormat":1},{"version":"edac6d4749a2c20a61aada6d97314e05d39d9d5f724fe07552d06fb4bce76f4d","impliedFormat":1},{"version":"3012abf69fcd0a123f860ead296e961820a916720e05af4f8d9afd8c76c7ae07","impliedFormat":1},{"version":"7d6962e3173e2d678390c064af25d4300f6ba0a44330064734d76b95851fe32f","impliedFormat":1},{"version":"a901268ccef541a32ee9bbb5e894215c3abdd399c88330d4ba02dda52b565da1","impliedFormat":1},{"version":"d97f61aa454c09026d827c6eb0167ac5c5db661e214d8a50e87abddfeac8d822","impliedFormat":1},{"version":"e96dc917d49c213d8ddb9eb28e5c9d1dbde2555ce565fbbb7556051deb4287c8","impliedFormat":1},{"version":"4910d65c8c49642e68d09ddb016488b22db9e130356c40fdea250bc7611d4340","impliedFormat":1},{"version":"5610f32d4a772d2ec704d19a6e488f92f1448543295b3ee61dcf74e9fa46faf3","impliedFormat":1},{"version":"488512750e3332ebc673ba30368af2a48ff735b61d70e5f4c56885bc81502510","impliedFormat":1},{"version":"e70042f617e0e0afecc02961eebff126a21d891ca0a48243c736385cac078681","impliedFormat":1},{"version":"d0cc19ab8c73d8ae77ea36af6d2cd9c3ba676f4b2515ce31627eff39bfb98caa","impliedFormat":1},{"version":"3f2542f11fff5c15b8304bc11440bc109a63700dd7c25f56ad843e519bc19a64","impliedFormat":1},{"version":"f9d6586afc335a86d826509948d820369f837d8ea06fe5be065be02dbb3fd00c","impliedFormat":1},{"version":"6b7b8218850f21248a311812c4d6c196ffc293e0e41c71eacceafdfa6c74eaf0","impliedFormat":1},{"version":"f1b960f33f68bcb6685806b9471dc415676108541ca0db3c0c6cae512bed87dc","impliedFormat":1},{"version":"6a7572e29ba3dbec7a066a82fa0f7b57268295a8120467ba81ce3165e0e63aa1","impliedFormat":1},{"version":"9144e1dc296c867f4d99baabe57e470c07f3552b5c3f05822058cc4d73033012","impliedFormat":1},{"version":"4b9fcf61d3788633f9c441180233aa55a35b80a8793e7266e451726bc1f068a3","impliedFormat":1},{"version":"ab90eee34f8b89770059c0563ba52911a5710c57fecbdd69d3b8cb2408034a87","impliedFormat":1},{"version":"4b7ee2be595a4604d0d93f24b451e8b726e99db002fe395957f7d7169bf80f38","impliedFormat":1},{"version":"bc253412815953c66797b6c25bf50f2824fa89e7da4637f02e02542c536d44e3","impliedFormat":1},{"version":"6bd4dddedecf608a398948b7ccdd577709d2ef1e38b1b54cdefac21ecd5d8b0b","impliedFormat":1},{"version":"34c85e0b9ecb1eb38630b40a9f0682a04a6f01b48cef91a84a1fd4a75c5cd2fe","impliedFormat":1},{"version":"9751eb2b973ef42d6a82ca267d7d69a8f5cf32e9367200ec98a8b30eec517c52","impliedFormat":1},{"version":"e8b97248e5ea151d6e91ce33bfd0e818c1a699ecb9d6bac69dbfc4324e5252cb","impliedFormat":1},{"version":"8b268efb0c49011ef2a4450fd0b537f79fe44d78e0b40a5d1ede3de4eec2846e","impliedFormat":1},{"version":"ebc64809ce8cdfaff8617d53b98743ffca60c465b39f21bd88c320cffb6ac525","impliedFormat":1},{"version":"0206d6a896c3e0ea6493e37c336a5208fe175dbdb36a561ef707fd5936a00fc8","impliedFormat":1},{"version":"0539e7dcef1edc97d9380b6049d5a4ef8ef8c8133a5602febd970c06413a30e3","impliedFormat":1},{"version":"8cd3e5ee9e30d714095c91dff08ae98fb883a7622199d34bd1ec6a682f085479","impliedFormat":1},{"version":"a50bb1e0b8e55f5bd4e314a265f864c898fbdf8e8f834da298d6d6d9be3ca825","impliedFormat":1},{"version":"9e24aba05882bc5f2dea831035dc78c1ac66cc42bd2235f2da6aaf65bac007ce","impliedFormat":1},{"version":"698a3416ce487bd0791358d7df5f996e9bf14dfa00e0181f8198ca984c39526a","impliedFormat":1},{"version":"107d632cd956af70ba6cef4171bb72b75e8d3ededc30f591e7b8d97678feadc6","impliedFormat":1},{"version":"ce4a8e66384d464ec0469dafb0925e3ff8bd6af437c84777846e133488c4cb3b","impliedFormat":1},{"version":"c872b7329674ad2210c9d3b2522d5d4cadf5cffd2c5ca62ef1a18ec1f2e1b30e","impliedFormat":1},{"version":"4aa262ee533377af3943db1effd9666795d1fb9901d8581d39c1b6a0a84d9722","impliedFormat":1},{"version":"d4e4287637c7999738bd087539a5ace51056e40c85b9d7b6b466a831ec12725f","impliedFormat":1},{"version":"0abf8f5eff9a5fd84334db349115d04a089a5f9691e4ed67627048751ec544bb","impliedFormat":1},{"version":"81fc85f262ea5b2d1a25fe90d483f8d0d5a420de5aa1dcb8cbafac714a61e89a","impliedFormat":1},{"version":"3c7f18662fe8009316c923d17d1369b8f8b4b394e1915de670d4b8a2b2d609f5","impliedFormat":1},{"version":"839f4844367b8df7fde41f8e5f7e786dd403605bf3902852bb00ff326663efa4","impliedFormat":1},{"version":"43667dbe51bdb67469cbe6d32dd4ae46d334661078799b8cc2b6b0b420cf40b7","impliedFormat":1},{"version":"3dcd8780801a3a6bc1eb2b8ba231a0769a184860205192e75ba0dcf6c50aede2","impliedFormat":1},{"version":"f4a3ba0235c069c9da36ffab0194553167ccddbedcfd1b8322f7d05d8a58683e","impliedFormat":1},{"version":"7de72abaf1da882a87fbb801e0f197320ddbef2d25478ed62b00793c2698285a","impliedFormat":1},{"version":"6850c096e0a3af591106b5af9370c11849480bd9f128ff83677aaf7db6102f7b","impliedFormat":1},{"version":"13325ea1df70110200862ac733a40b4378619de7f5978c040e1d7661353e0232","impliedFormat":1},{"version":"dba820bb54ea381546394733fd626e4f201e25c7120dc015a40456255fe92b16","impliedFormat":1},{"version":"c766a45991ba8bf02bda29ed6e97f29f735b180d66a9ac8ddc6a96a6df41284a","impliedFormat":1},{"version":"5b979bb871cef894b2e0565e1d142b139a9e2e05cd7563444d2f8257066c45d3","impliedFormat":1},{"version":"7b27c9b7231cadd8a98c00aa248a989bb0d82f600b986aab7d9d8e696290b289","impliedFormat":1},{"version":"b8daa0cd0161175591a5b756cd9bf3bc63be4b588a609edd9b5e99a1fc813a97","impliedFormat":1},{"version":"4cd3682dfe49841843535b4e89f51f7817d17211043eef8cbc9cb6c964729386","impliedFormat":1},{"version":"1cf4c41b8403123d15e7cb065695d1e691fbfc55b232c51c3efe7490de56f971","impliedFormat":1},{"version":"f33ec7ea9796b967fc49a94f46561509f4c6581a37ea8dcf65528c1a97a1d7af","impliedFormat":1},{"version":"811bbe354916fc29c7d5cc8f7aa25036cfad794d06d1c19e3a739ee4942fad2c","impliedFormat":1},{"version":"746234e43703b098ef68ab1de91045e9651509f99681fd70b7f0698b430f44d3","impliedFormat":1},{"version":"44f32b8d2cb13a50a55b1636fd1bc52b85c2ffa9c54c3c3ca6eef4c91517cfa2","impliedFormat":1},{"version":"9d1e92199367121517e7757ccf8272039026e239fe2f1ab46f60c4ed0623478d","impliedFormat":1},{"version":"ba5675f82d2a5429a86089ccbbc553f160479dc468e87c693d909c54ffb335a0","impliedFormat":1},{"version":"1465319f522b33da95af135b3e5afbf4fb8b9d63697440c2fb84c9221f1937a4","impliedFormat":1},{"version":"c54ac39ccccc7a6dc61ff9b65207345547f44e7cc87a1a0d3d9a691e7d8417d4","impliedFormat":1},{"version":"c76f233c97e3880ce45b5815a2702c3eb797faaa1cc9ddb327facdb33d5ce960","impliedFormat":1},{"version":"e89382b246ecc4d19de299fa7ddf6486d66b08b7d3063946df62dc708d70fd1a","impliedFormat":1},{"version":"9a1879ec3983d8a97968f1049d10930cdc93b2d98b79478c4d9e42fb1c4fd722","impliedFormat":1},{"version":"a344447cc50acdd5b8b1e2bbd8e6243d02c769933a93efe8984db9cf416e15d6","impliedFormat":1},{"version":"70e7e39c19df09966604643c8c97b2efccc19825f4c372b9fdbf2df52b4d708b","impliedFormat":1},{"version":"6ccbe0b599804292f415d40137fc9a2b1143c88cfdc7bf26d9c612fa81835c74","impliedFormat":1},{"version":"bacf49e8ada6acb41e41655afc46dd7d070011c44b8c62a2123e0d6402c02a05","impliedFormat":1},{"version":"a622328851bcf8bb37dc862e0c498c8acf0bdabf7df2b83b330d34ed07242413","impliedFormat":1},{"version":"e083f5318bff20be11a5427fcd1e53f738b8d473476e53d0cebfb615cc96cdad","impliedFormat":1},{"version":"be4634adfc66f5c016aa3e68eaa39459277fa72b92c84267bea7a67076323ef8","impliedFormat":1},{"version":"7151b8846bef245e328d424d0d91988474f6f3db19845a2604d24b182fcee913","impliedFormat":1},{"version":"c83729dafd0665cb850faa9a80336e2242753b981faf810af60e21c3de17cb6d","impliedFormat":1},{"version":"24365239ab44c048fe5e385abe2fe3e02c14f4341229ca7f368c094be911546b","impliedFormat":1},{"version":"cc431dc6d648b13865a14b4400fd89bdb96176b9eaaebc75cbe3f6b567f59be5","impliedFormat":1},{"version":"2cef71dafb2819bc9ae02fe54271c6a704516a5733116a82dc50a204dc39403d","impliedFormat":1},{"version":"5e286c586e00f9576df08f8d07aea04589a1ae6a47039ed3e25b746ce56be07b","impliedFormat":1},{"version":"a80b3ff36f5537f0c6c33f5da59a5968130256dfd1e4c3ef2badca2e0dbdc513","impliedFormat":1},{"version":"301a231c845cb0bb7e9997180ad9afea484c9688b4b259030c7170567f901821","impliedFormat":1},{"version":"f7e06e927f98c09e9840082a79ac76e146e431d74428f4d91f3da1041db78cce","impliedFormat":1},{"version":"b9edaf1420603a4f1c3fd394a4b027a61c46cfae0dd262e34a989a0e7503553c","impliedFormat":1},{"version":"4a6f9beb7d2625d055a166b9d4a8f68c2b28c3ecff7dbae89bd018c2a3a6f74b","impliedFormat":1},{"version":"7026085c3b00d1a56718bd4167d5c3082fef00e88843261598de3764b9998bb5","impliedFormat":1},{"version":"6c2c608986f8eb8920e0341c1a4f9387e8cedf85ffe90bd093373f4423929063","impliedFormat":1},{"version":"8cafcf37b663b6963b0859f96f55865e71b39b3fe9d1d6df6ccdb33ef6d15029","impliedFormat":1},{"version":"b57b06ea8ccdbc8fd2162d3d382dcfb89a7ca3620ac41b173ba525c211c8acb3","impliedFormat":1},{"version":"d72df95aa1a5d1d142752e8167d74805ae4d9b931a3292c3ac155123d150f036","impliedFormat":1},{"version":"13dfae6ae7a21c488f1b151ed65171376f7567af6555e054b70886cbfe3d64ec","impliedFormat":1},{"version":"864c14f7528692ef51f65aa6d9fe868578fd7ccb4741d9d9320df53b5cd8d540","impliedFormat":1},{"version":"ebcb070368315a661e4d8c7c899ffeeeec0c80e9c919433ecfc0bd273e46b68c","impliedFormat":1},{"version":"c1e5370b5aa3b4c2bfcc5c697359405c416a3cd2a8fc8dc37983fd6b413248e2","impliedFormat":1},{"version":"e048db22f3d05aed69b0ccfa3595d3938d64bafcb34f1c620c75c043b8f1ddb3","impliedFormat":1},{"version":"18dad4108a3c47eb60ba84db63ec5e316f84534cf5d16d661f38590fb2a7e29b","impliedFormat":1},{"version":"8cf14db674e144974a3065dd7b089b6f26366acd2341a5a8251f1a61f98fb5ff","impliedFormat":1},{"version":"7f60e050892b1d50e0aef53f9b4e71f1476791545827cb7d46828928b1569bfe","impliedFormat":1},{"version":"832818ee76c21953841e09e96746111036d81c4c43347514f3efe95d1a36b435","impliedFormat":1},{"version":"506f020d57f0533306ceea918d20b9750693bd41276100f39a13a88bfe51a356","impliedFormat":1},{"version":"6a54f042169c236a081d5b1a5fb4264a9f96a9da36d38ea1c1c70861516cee1b","impliedFormat":1},{"version":"e843fd50f7390f97a570f0c20a73b0f303ef9f0849229c53c6faf9d9d6a542d3","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":"6ded4be4f8a693d0c1646dfa2f1b6582e34b73c66ce334cb5e86c7bf8c2e52b7","impliedFormat":1},{"version":"5aea76ab98173f2c230b1f78dc010da403da622c105c468ace9fe24e3b77883c","impliedFormat":99},{"version":"6d23119f30c32c38641427d412d1cf04d0119d22b4b12016043e261e89291b5f","impliedFormat":1},{"version":"ccc141e8cef1778f472f5c926bf164deced9a1260ef8121338aa862c1e81d5ea","impliedFormat":1},{"version":"9b1323fb6eb0cb74ad79f23e68e66560b9a7207a8b241ac8e23e8679d6171c00","impliedFormat":1},{"version":"c91045fdc3c29b254f43cfeafa16352bd096fadc4fce049fabb27dcf10da3095","impliedFormat":1},{"version":"b29806c40b944edab3ae5074d535ce02a90a8e5a2dc95348ba7898bd8b6edb13","impliedFormat":1},{"version":"681dacd8d5d3ca833f7e0b9c5574c1f74c682fcac6da8a29604bdb953ca25f28","impliedFormat":1},{"version":"56dba2f61eaeac928ef53a9c4b6df96df33834f0b8d39f59ac820bc4f0b65f5c","impliedFormat":1},{"version":"9a6c138e2cab1b066e726e50227a1d9fa02be68f28402b59b9a7ef5a3a5544b4","impliedFormat":1},{"version":"e009f9f511db1a215577f241b2dc6d3f9418f9bc1686b6950a1d3f1b433a37ff","impliedFormat":1},{"version":"caa48f3b98f9737d51fabce5ce2d126de47d8f9dffeb7ad17cd500f7fd5112e0","impliedFormat":1},{"version":"64d15723ce818bb7074679f5e8d4d19a6e753223f5965fd9f1a9a1f029f802f7","impliedFormat":1},{"version":"2900496cc3034767cd31dd8e628e046bc3e1e5f199afe7323ece090e8872cfa7","impliedFormat":1},{"version":"ba74ef369486b613146fa4a3bccb959f3e64cdc6a43f05cc7010338ba0eab9f7","impliedFormat":1},{"version":"dd8e7bc9fe83f86f16e960b3ae0e43dcc6f92e8e657c70c8b49de45f735827d4","impliedFormat":1},{"version":"6ecab81e94fd8d2b6e8b7ab7fb887e2f116a6935e2a0828069d6b0b7c92aec17","impliedFormat":1},{"version":"6d2089f3928a72795c3648b3a296047cb566cd2dae161db50434faf12e0b2843","impliedFormat":1},{"version":"06767240be8807db054b6f050785761090321698540f30d125919fe47b2f6265","impliedFormat":1},{"version":"6ea62a927ac2607a6411804617e52761741fae66e533f617d5fbf3f3eff1073b","impliedFormat":1},{"version":"ac8582e453158a1e4cccfb683af8850b9d2a0420e7f6f9a260ab268fc715ab0d","impliedFormat":1},{"version":"c80aa3ff0661e065d700a72d8924dcec32bf30eb8f184c962da43f01a5edeb6f","impliedFormat":1},{"version":"42ac0a2d5b1092413b8866603841ce62aeaaf4ee51d07dd872e6a2813dd83fd5","impliedFormat":1},{"version":"ede1c79a89f65cc927cef2fe6f2ed052a78d12096edc0ecac9b92ca53cc3d8b6","impliedFormat":1},{"version":"ece1e5ebb02df1f9a6dcc24dd972c88b065b2c74494b3c475817b70e9a62c289","impliedFormat":1},{"version":"cdec09a633b816046d9496a59345ad81f5f97c642baf4fe1611554aa3fbf4a41","impliedFormat":1},{"version":"5b933c1b71bff2aa417038dabb527b8318d9ef6136f7bd612046e66a062f5dbf","impliedFormat":1},{"version":"b94a350c0e4d7d40b81c5873b42ae0e3629b0c45abf2a1eeb1a3c88f60a26e9a","impliedFormat":1},{"version":"fec98193e9fe88584a25a46c5ccbf965c70921aa97c0becba84b4875b22452d0","impliedFormat":1},{"version":"188857be1eebad5f4021f5f771f248cf04495e27ad467aa1cf9624e35346e647","impliedFormat":1},{"version":"d0a20f432f1f10dc5dbb04ae3bee7253f5c7cee5865a262f9aac007b84902276","impliedFormat":1},{"version":"f218c747145eec6830f8e0efc8d788987f67fce6dabfcb70bde3560bf47d0511","impliedFormat":1},{"version":"f13c9631dc6452116f3a986087dd9a7821b22deeb0c786b941d1483b35189287","impliedFormat":1},{"version":"a239ee6317594257766506b6f2bd04c16e2f7f8fd4695ccd97545c7d0648ce88","impliedFormat":1},{"version":"ce08852fccf842857358d318c80ca151228aeeac4ad3d6614c00fa7d39bcde84","impliedFormat":1},{"version":"818fc52eb3940de3be3dc67306ccf9a361bb28038ac8524673ec3adfd74ed0ca","impliedFormat":1},{"version":"bff0c0d1325ed1155d5a6a85492cb005f20217974007c33dd6e126962062274a","impliedFormat":1},{"version":"994d5acb7ca9e97d624e35b8fc0de5c37c0462bba8ec69682e16fd20d56bbf2e","impliedFormat":1},{"version":"16bdb6676c410e6c5624817e505d12a5bc75d1c168cdc5332957a7396ec8d180","impliedFormat":1},{"version":"f74e30830c9bf4ab33b5a43373be2911db49cbf9b9bb43f4ce18651e23945e44","impliedFormat":1},{"version":"bc31610e4354bf9a9216222a1810debb89181efb6b078b73652cc9ede2a62797","impliedFormat":1},{"version":"0963cd13a792c603f64cac465b5299344a6fa02c086a43a29b6586caa5edd710","impliedFormat":1},{"version":"9d2b9766c6d25f26c2ff45ddbde596c3857ea098eedb34248467db614b90a486","impliedFormat":1},{"version":"0400d7d27a702316010b8e4375387156be3d7cee4a797654598eb5751dfe13e3","impliedFormat":1},{"version":"201223daa41ecabd73d374677e6c8a55286fbec8fd73fa1dbc3b299f9d93d7cb","impliedFormat":1},{"version":"8cc05f3a6b0cf87e4a8a3e281e8dfadd8724f2a3d7d6c1c1bbaa2058942d8587","impliedFormat":1},{"version":"8a5f956c8081c872480d28c8717edf527894a186db3e5cf7e60702893c9eefcb","impliedFormat":1},{"version":"3d2dd1518c6d388b4d30e42b310b5cf8031ba6bb29d234cfc528ff61933faf09","impliedFormat":1},{"version":"104c67f0da1bdf0d94865419247e20eded83ce7f9911a1aa75fc675c077ca66e","impliedFormat":1},{"version":"ac88d433490776b404740b4da8b84fbe7a9f065bf1a9675e719b1f85453e6911","impliedFormat":1},{"version":"eee5ccaad9b34d9815ebc9ed75631a8e8abbf3f0c685ee5af502388e6772dcf8","impliedFormat":1},{"version":"c49f2a791ea76975972baf06a71f6fa34e6adf74bbe8282e28e55ddb9f8903fa","impliedFormat":1},{"version":"178a96be96fa318c554dc96b60ea5912d376be6c2f7348b4e6dade95604a3bc0","impliedFormat":1},{"version":"4ca064b1a0af2a0de9240393fcb0988c4278c9456136262401033a9aaac1e3ee","impliedFormat":1},{"version":"44a01d3e816c26b06eb256430b1e280e0a726291f5853b8f7362adcb63024ac0","impliedFormat":1},{"version":"321a59769ee1dad8634d4ae1cac39dc966d8262e7bc427f850e4fc8cf3b0eaee","impliedFormat":1},{"version":"faa15a5389fe38d13be4098256f384cd76ac919dabb3a77e29600aeae04355bd","impliedFormat":1},{"version":"77ce64b02588b1f2318d3d764c586a8de0c3e16d64a32d7ad7ed56141d064eb7","impliedFormat":1},{"version":"74e92192bfbc408f7902d24fa2900b1fe5429eb137a15ee60ae98ec3f5d5d2eb","impliedFormat":1},{"version":"2d95cec546c5862a836807827e129c0ad916975afb635fa5954b74a0e4d7b388","impliedFormat":1},{"version":"15d39e2150be386ac501b22c5a1620457d880761d60a564cbd57026a8d8eb28e","impliedFormat":1},{"version":"00594f16b55b9b6b3064ab907743a13173c1d1c440f95c865b363272fdce049d","impliedFormat":1},{"version":"e858abcfb13e2de2b7f51a03b1ed471aa98e29f564c0bfaf94f5085bcd6c5486","impliedFormat":1},{"version":"cea38b7a0b18fde901ec747343c03f3e0b48999022e2f51a68ccdae0413725b1","impliedFormat":1},{"version":"9ab0857c5219391228e9fff43f17fa45068ad03c31e36a3d1b28a286e80e0f87","impliedFormat":1},{"version":"bd0ec2845d7857116f0945896c976ed3ea560e765eb814818451a26b2031b1a4","impliedFormat":1},{"version":"b433616295c91903d98330b9250be756e16428f0a53e8823b82966c0ba42d797","impliedFormat":1},{"version":"9edcae4aee78054f54fceee2a89c60b21ffdf6af1608e7ba8058c9d1bb3c24b2","impliedFormat":1},{"version":"f7f9e1d4ff7cb8032f0ea3b320668eca1e8345aa64d030f9e2024aa7a5d0aa9e","impliedFormat":1},{"version":"f8d69203e30cc93373a19f2616b28bcc9082f3397917385f491fd68989c9a1cb","impliedFormat":1},{"version":"6dab3f6d7fecffeb8fd4cb1c250f07a718e20e1aed052aa7f8be93bc9a94f5b3","impliedFormat":1},{"version":"1b24346eb18aa852b854b462199e509960a39be566083b86f19a8ed99aecd471","impliedFormat":1},{"version":"4f64329e48640cef9bd22501f28c834d44f31ccb5cce6cf68084e4e7a1bdb306","impliedFormat":1},{"version":"175a849d4c0f817d5c2ffde35a3f241146082535b005e3b45a501c732df438f3","impliedFormat":1},{"version":"9a1e8b50c26e5a6c80ca5c39eb7c36fd1bdd2c8d3ee8546622158adea4113589","impliedFormat":1},{"version":"d2f375c61c09aff29bbdeeced94f37745b91bbcecfc72ccc3fc83b17e82a4891","impliedFormat":1},{"version":"66d1cc0cd17ff530cb1ed8a58eed122dcdbf0f5230c01c555edd7bd710cc3b96","impliedFormat":1},{"version":"db257fab7f1d50f7e400715c349d27f938df6e3e3fe7ce5673892e348ab8a048","impliedFormat":1},{"version":"5fcf8b90ad13c2149955477d94eb4272b0f07dd45eba44a3eaa14e1162aa33e0","impliedFormat":1},{"version":"ba55d434c2b8017e933b7ca70e586e90a8e191310675303e42926a47e6d7bcaa","impliedFormat":1},{"version":"4f2a8e61ee3ebb3672147b91a2bde6ceeaebcc098b7a6b1638d3df931a5ddd92","impliedFormat":1},{"version":"4b0d0494437eae420327967e7b25b4624020cb273c345421f69d403544ddc201","impliedFormat":1},{"version":"341af54bef9fbb824ee8db2c50c0a3c90bc3a999b841fd297f5512b4e3589ffd","impliedFormat":1},{"version":"641b10ed864b22461d0beacbb89aaaae3370d5a09f1e3918c3528ce3bb1f5d1f","impliedFormat":1},{"version":"59d494f1af0031166af1d4e0ad2cd9bcbe66f0210d9bfc0d2ad27af7bb5b4925","impliedFormat":1},{"version":"8f9688740ebf1cc891f34a522c535323ebdab6fefecbad1965ec585b320abb39","impliedFormat":1},{"version":"ad88382eef9ee3346b59ae4b395cc298ffded285864ddb80f2eeb57d2f9adc08","impliedFormat":1},{"version":"bb415e5dfccdc9bee3daeda7ee2553bf976f748994f19725ff9bd994b1518916","impliedFormat":1},{"version":"93191770fc276b56538a58d95add8fea33f11958f9fa555364bcea96c2f9e802","impliedFormat":1},{"version":"a769a5e3ae2f9d0e08add20fae8d12a350e855f4b75664341093ded2bcf7a41d","impliedFormat":1},{"version":"ca599aa99194fa6728b0bf88e83459edb8ba87941d65c10d2595438fe1549322","impliedFormat":1},{"version":"9f9e64076af9c8af4a2f3d795929c20d6ca9e4cdb3dd59a678b0bbbf55ba059d","impliedFormat":1},{"version":"ad1a40318b4306afe5c871ab06cf3046a9590f15bc63f872884f9a32094629b5","impliedFormat":1},{"version":"1c5fc8608d7bce18d9dc79c302ed3396241368756e5fe18484f3a9c1658bc7f4","impliedFormat":1},{"version":"57add12cb49cdd4e47d6b62f0a4083d54e5cc130788e55c39a02ad42e52ee73b","impliedFormat":1},{"version":"dd44bf9993c40d5e1d8025f960a4554124b223bd35ff8a83c4f552455f8c7e15","impliedFormat":1},{"version":"b597f8165cf57efe5b002848c311a2f19e32062445f82ee3b56181f2dba595f7","impliedFormat":1},{"version":"6f49028cb42c1c7cb64a604315dff771ed4723f2853098b205682356ea3c9b87","impliedFormat":1},{"version":"2be2227c3810dfd84e46674fd33b8d09a4a28ad9cb633ed536effd411665ea1e","impliedFormat":99},{"version":"994280162938908065cf871994bfc5dc6f8618a4daa3ae7803fb6959f9a2ec6c","impliedFormat":1},{"version":"89934915a25c4262eecc3094bd7660699717fa2bd2a2bbc5282fdb45d2ed566b","impliedFormat":1},{"version":"ffbf336a0357870c36c8ca983a37bd050d75f46d89b6437515f0bb09bf63616b","impliedFormat":1},{"version":"ccfcdded0ff47da010c5b8515c9547ab7a598b2552962ad6659f26aab245540b","impliedFormat":1},{"version":"9a4c0f006b63c80014445bc6e3aba8457d1cf89b12cc293b863a9f2ac8c790d9","impliedFormat":1},{"version":"948da454347607aad817b0675068c962e81116b632213eaacd168c18b85a2580","impliedFormat":1},{"version":"12fbd4118f865a49c468ce1c9b079a5af3c0eb3e792a0b5f51698faa9c443cf8","impliedFormat":1},{"version":"ae538a0e37c00b8589ce5fe2849e7d8530c2291f7e4537fdc6741295a8f50c29","impliedFormat":1},{"version":"6bb1083101a04340cc599614352cfae7c5c5ec5c2d68b21f4c59adafa79d459c","impliedFormat":1},{"version":"1832bfd7c66f9097352729f3fd72f981db6442c42d0533ba8d708f1782369103","impliedFormat":1},{"version":"393d7de03d8bcde8218dd2413d14157d8f74b65a4eb59765bd055c35f9a33d86","impliedFormat":1},{"version":"e71cc50a342e740e9071733b32ea7c44a3ae13efe64db3b7b4a47e8e18ac0a60","impliedFormat":1},{"version":"ff698b2b7c176d93dfceb8c5c8abf8d38f7025b86a2f189e0d143307e7ce36d1","impliedFormat":1},{"version":"658694c23287556339f353876292369176473def90018f9bbb72d04a20a46258","impliedFormat":1},{"version":"5063cea1ee10e2549e8ec9c1eca9f7eec0fb5066554de1304099b2fbfd518129","impliedFormat":1},{"version":"3770072eb0a627c5a07f5f8b631a52d9ee3193ef52049a5d91ceedf474388b76","impliedFormat":99},{"version":"c6c2f7ca8e09b0020387e38962dcafba007738506197c0098c58db9f365eeb84","impliedFormat":99},{"version":"e11cb41ed58b2f70a93e53d7c405f15ec4343a2dc758610d458d638d5ed6a522","impliedFormat":1},{"version":"2591ce802940d7319238c848105b283eeece5cce3752a4aa7b937c21792bc71d","impliedFormat":1},{"version":"5bd6de5dfd4b36dc13fb9feb8462b50b3176153fdf99d6d6cb8d807aa59c06e9","impliedFormat":1},{"version":"28e93480f3a48b0e6a3ec30ced8f5362fdee96194e05683b78e7c341f851f1f4","impliedFormat":1},{"version":"711ab39a13e902330153b047b74f4629acc7fc858cf9b49f6a1e91bcc1301fa1","impliedFormat":1},{"version":"e310bb405a25dbe1810d3ea87259d7c01b6dbe05074d89c570f3fe4e6039513e","signature":"5a2e64da5740a64a5b845b91e2ee7227c19314a9d86e2a190a754547c394bc07"},"4cae941be9bc3bee9a6905e47ea7a51aee216d587d34a8cc4ae48f78fd6d8159",{"version":"cccebe2695746988667cb613a31df70b6652c5b6e5b23b7114f3401a4b7be1b7","signature":"44750b99eadfc0c2da95b93aca6021eda8f6e855f8947d1079386221a45592c2"},{"version":"c76c02846ba7d40b9b3488f0e8d75d02cbdee2f0bc5fcd55dd3bd2e1457646ea","impliedFormat":99},{"version":"4ead13a482c539b77394b2a97e3b877b809eac596390371cea490286f53b996a","impliedFormat":99},{"version":"06db2f8ba1d1dfacf04529cb731081ab23f133f29c7608ebdfbcab356996827c","impliedFormat":99},{"version":"bdd14f07b4eca0b4b5203b85b8dbc4d084c749fa590bee5ea613e1641dcd3b29","impliedFormat":99},{"version":"3a582c6e8906f5b094ccf0de6cc6f4f8a54b05a34f52517aba5c9c7f704f6b28","impliedFormat":99},{"version":"ef13c73d6157a32933c612d476c1524dd674cf5b9a88571d7d6a0d147544d529","impliedFormat":99},{"version":"49ab4f1d153a252779958fc87b700743d32b5ffa42addd70ae23ad3f429daa5c","impliedFormat":99},{"version":"0528f6d21f7a02d4092895090d2dd86104bd5a3e79eced96d5a1a7dd90943d17","impliedFormat":99},{"version":"427fe2004642504828c1476d0af4270e6ad4db6de78c0b5da3e4c5ca95052a99","impliedFormat":1},{"version":"2eeffcee5c1661ddca53353929558037b8cf305ffb86a803512982f99bcab50d","impliedFormat":99},{"version":"9afb4cb864d297e4092a79ee2871b5d3143ea14153f62ef0bb04ede25f432030","affectsGlobalScope":true,"impliedFormat":99},{"version":"5c935b7fc4ddc1410ea1cd7cd4e35ed106a6e4920dd27a9480a40fd224359dc3","affectsGlobalScope":true,"impliedFormat":99},{"version":"3b89216a7e38a454985ad17bb2ff85792837dc812f2a89fa5f60ad0a2e216fa7","impliedFormat":99},{"version":"16fe60bb544cfedfd2b5bb2f7d0b3957be7978706d57d9f06edc9c0c8dbdba23","impliedFormat":99},{"version":"de4a612aa8f1704af486f701e21993c786ba7d8cfed55fffa6684026aea2346e","impliedFormat":99},{"version":"c73fdf42528325dd17940937ed787b15ae3445c6a2dae1a2b74bc4d87d337ca2","impliedFormat":99},{"version":"e8e17dfef3cfa9f0847ac93dd535a9896af7fb57c1a1b164484bb1b0ee4a25d8","impliedFormat":99},{"version":"905aa259ceb7f7b7d1d59f99de8868c65ef476f04888e779f85dd1d7e1235223","impliedFormat":99},{"version":"638a22f8e16b31c37297483fa38cfc760ed309b16d4c606a7b4532f4394c9c0c","impliedFormat":99},{"version":"9394183f4c37b8591156f32e41223c9e0dd211eefe7499155d4cdf15268eaea8","impliedFormat":99},{"version":"b1aaa10e07510ebf74e94f6a0ec8c0df41cdc87bf4ec9d3907031b2a1ee6f602","impliedFormat":99},{"version":"7f429346f311ed5c346764a92cd89474bfb7d4012ee557801d6177bd60a81fee","impliedFormat":99},{"version":"86da92c883312ac2f3b35d0fdbda6196bdd614c3d72c386917f9c636b2eacb6d","impliedFormat":99},{"version":"7d3e062a778b8f5ea4f0cac7e925e31f88e6739812ebc5f827474324a4048f14","impliedFormat":99},{"version":"4f9e435035dddeab56b449e09ce1782be49c853304f156a2affcabca0a815862","impliedFormat":99},{"version":"4a838129e2aa98dbdb49a5f1a3367b74e204d92fbb1a66ebffbcb4dd8a4112e2","impliedFormat":99},{"version":"ad86350594b91ab1008decf71af218a49c62d8b1cb955c30a3984046dcbc86d7","impliedFormat":99},{"version":"64cad96d8eea46fcf925ccf652d01b1f841a3df1900d84c31cd26f15a97c9fc4","impliedFormat":99},{"version":"4e003c868b0d8f8ad200b96cbc653e18e513fa23e1c19c4fe3cc25d4394efc47","impliedFormat":99},{"version":"8887e70871f697fa42ad7cdf32168db60ec2d6760c173c97973e35377fe5d83b","impliedFormat":99},{"version":"161c8e0690c46021506e32fda85956d785b70f309ae97011fd27374c065cac9b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e0864480ea083087d705f9405bd6bf59b795e8474c3447f0d6413b2bce535a09","impliedFormat":99},{"version":"e67cbea16f1994af89efd700542dbf3828a46a52b29e4d67e801bd7869dc103c","impliedFormat":99},{"version":"971f12a5fc236419ced0b7b9f23a53c1758233713f565635bbf4b85e2b23f55a","impliedFormat":99},{"version":"76de3321ce519928f1ff7d7a30391c0dc7374af20f81d9167919f038895b5cb0","impliedFormat":99},{"version":"094b9210da23b8711709b0535c59841186267bf6b83c1609aa9b515f830ab274","impliedFormat":99},{"version":"fbfbb4e99c6259ff5ccc4a5a62b3b63c0c8cae6e84737786c4a4c761c9a9de91","impliedFormat":99},{"version":"604887bbd5b0a93234ce882543a465f008636185c52e0f0353330e2bc38b03b6","impliedFormat":99},{"version":"32bf912173e8a9533631f9e9d8dc90a2ac7b52c2355611ddd886beab24dfd182","impliedFormat":99},{"version":"82695324abf7f3278b6d9f0582f4a544e8f7055c8cbe1065ab5cbacde1719c4c","impliedFormat":99},{"version":"43bba542e50e19241ec64bc13cfc0d9273e6198f36563cecad1f4e4b78ad47f3","impliedFormat":99},{"version":"b8cb3b69c0e8114f758bb8ef8efeef1cc80f8911bfd21126def73d2174ce479e","impliedFormat":99},{"version":"f582b0fcbf1eea9b318ab92fb89ea9ab2ebb84f9b60af89328a91155e1afce72","impliedFormat":99},{"version":"402e5c534fb2b85fa771170595db3ac0dd532112c8fa44fc23f233bc6967488b","impliedFormat":1},{"version":"52dcc257df5119fb66d864625112ce5033ac51a4c2afe376a0b299d2f7f76e4a","impliedFormat":1},{"version":"e5bab5f871ef708d52d47b3e5d0aa72a08ee7a152f33931d9a60809711a2a9a3","impliedFormat":1},{"version":"e16dc2a81595736024a206c7d5c8a39bfe2e6039208ef29981d0d95434ba8fcf","impliedFormat":1},{"version":"cc4a4903fb698ca1d961d4c10dce658aa3a479faf40509d526f122b044eaf6a4","impliedFormat":1},{"version":"19ee8416e6473ed6c7adb868fa796b5653cf0fa2a337658e677eaa0d134388c3","impliedFormat":1},{"version":"1328ab4e442614b28cdb3d4b414cf68325c0da0dca07287a338d0654b7a00261","impliedFormat":1},{"version":"a039dc21f045919f3cbee2ec13812cc6cc3eebc99dae4be00973230f468d19a6","impliedFormat":1},{"version":"3fbe57af01460e49dcd29df55d6931e1672bc6f1be0fb073d11410bc16f9037d","impliedFormat":1},{"version":"f760be449e8562ec5c09bb5187e8e1eabf3c113c0c58cddda53ef8c69f3e2131","impliedFormat":1},{"version":"44325ed13294fce6ab825b82947bbeed2611db7dad9d9135260192f375e5a189","impliedFormat":1},{"version":"e392e8fb5b514eafc585601c1d781485aa6dd6a320e75daf1064a4c6918a1b45","impliedFormat":1},{"version":"46e4a36e8ddbdfb4e7330e11c81c970dc8b218611df9183d39c41c5f8c653b55","impliedFormat":1},{"version":"370bde134aa8c2abc926d0e99d3a4d5d5dba65c6ee65459137e4f02670cbf841","impliedFormat":1},{"version":"6332f565867cf4a740a70e30f31cefba37ef7cebcf74f22eab8d744fde6d193e","impliedFormat":1},{"version":"2977b7884aedc895a1d0c9c210c7cf3272c29d6959a08a6fa3ff71e0aff08175","impliedFormat":1},{"version":"17f2922d41ddd032830a91371c948cd9ce903b35c95adca72271a54584f19b0b","impliedFormat":1},{"version":"3eed76ede2a1a14d7c9bb0a642041282dcc264811139d3dd275c9fe14efc9840","impliedFormat":1},{"version":"e3cf0611709328b449ec13f8c436712d62003620ce480139fae46ce001c2ee9f","impliedFormat":1},{"version":"8d369483f0c2b9ee388129cfdb6a43bc8112b377e86a41884bd06e19ce04f4c1","impliedFormat":99},{"version":"3fd8a5aefd8c3feb3936ca66f5aa89dff7bf6e6537b4158dbd0f6e0d65ed3b9e","impliedFormat":1},{"version":"a18642ddf216f162052a16cba0944892c4c4c977d3306a87cb673d46abbb0cbf","impliedFormat":1},{"version":"41c41c6e90133bb2a14f7561f29944771886e5535945b2b372e2f6ed6987746e","impliedFormat":1},{"version":"4ec16d7a4e366c06a4573d299e15fe6207fc080f41beac5da06f4af33ea9761e","impliedFormat":99},{"version":"2dbc6ecb8c88f10840240d2da98fc547459fe8cdf904535d12198151a97f5d4a","impliedFormat":1},{"version":"71b110829b8f5e7653352a132544ece2b9a10e93ba1c77453187673bd46f13ee","impliedFormat":1},{"version":"7c0ace9de3109ecdd8ad808dd40a052b82681786c66bb0bff6d848c1fc56a7c4","impliedFormat":1},{"version":"1223780c318ef42fd33ac772996335ed92d57cf7c0fc73178acab5e154971aab","impliedFormat":1},{"version":"0d04cbe88c8a25c2debd2eef03ec5674563e23ca9323fa82ede3577822653bd2","impliedFormat":1},{"version":"39dd9c61bc4f718b56e4ed93dfbab462d47d08af464428d5a5b400367e9147ea","impliedFormat":1},{"version":"4ace083580c1b77eb8ddf4ea915cde605af1a96e426c4c04b897feef1acdb534","impliedFormat":1},{"version":"daf07c1ca8ccfb21ad958833546a4f414c418fe096dcebdbb90b02e12aa5c3a2","impliedFormat":1},{"version":"89ac5224feeb2de76fc52fc2a91c5f6448a98dbe4e8d726ecb1730fa64cd2d30","impliedFormat":1},{"version":"e259db66999453467359d0ea0a125866edaa851c580a5e840f4cac96ce5b035a","impliedFormat":1},{"version":"acf00cfabe8c4de18bea655754ea39c4d04140257556bbf283255b695d00e36f","impliedFormat":1},{"version":"39b70d5f131fcfdeba404ee63aba25f26d8376a73bacd8275fb5a9f06219ac77","impliedFormat":1},{"version":"cdae26c737cf4534eeec210e42eab2d5f0c3855240d8dde3be4aee9194e4e781","impliedFormat":1},{"version":"5aa0c50083d0d9a423a46afaef78c7f42420759cfa038ad40e8b9e6cafc38831","impliedFormat":1},{"version":"10d6a49a99a593678ba4ea6073d53d005adfc383df24a9e93f86bf47de6ed857","impliedFormat":1},{"version":"1b7ea32849a7982047c2e5d372300a4c92338683864c9ab0f5bbd1acadae83a3","impliedFormat":1},{"version":"224083e6fcec1d300229da3d1dafc678c642863996cbfed7290df20954435a55","impliedFormat":1},{"version":"51e0c0d376d59425f8a2c5d775c34cc3eb87da4a423e12ec097fc40432aa8c16","impliedFormat":1},{"version":"633cb8c2c51c550a63bda0e3dec0ad5fa1346d1682111917ad4bc7005d496d8c","impliedFormat":1},{"version":"ca055d26105248f745ea6259b4c498ebeed18c9b772e7f2b3a16f50226ff9078","impliedFormat":1},{"version":"ea6b2badb951d6dfa24bb7d7eb733327e5f9a15fc994d6dc1c54b2c7a83b6a0b","impliedFormat":1},{"version":"03fdf8dba650d830388b9985750d770dd435f95634717f41cea814863a9ac98b","impliedFormat":1},{"version":"6fd08e3ef1568cd0dc735c9015f6765e25143a4a0331d004a29c51b50eec402a","impliedFormat":1},{"version":"2e988cd4d24edac4936449630581c79686c8adac10357eb0cdb410c24f47c7f0","impliedFormat":1},{"version":"b813f62a37886ed986b0f6f8c5bf323b3fcae32c1952b71d75741e74ea9353cf","impliedFormat":1},{"version":"658763e1893aa10322784cc2e8d43874d7093fde48992b094913aaa83cf262c8","impliedFormat":1},{"version":"83fe1053701101ac6d25364696fea50d2ceb2f81d1456bc11e682a20aaeac52e","impliedFormat":1},{"version":"f78979c57dfa739f660c0188293b7b710654cefe8faea38cd7ed13e6152844f8","impliedFormat":1},{"version":"960bd764c62ac43edc24eaa2af958a4b4f1fa5d27df5237e176d0143b36a39c6","affectsGlobalScope":true,"impliedFormat":99},{"version":"d2bb2bc576d9ddfc7c8aa6dbec440b6d8464abeaf46e3a0e4ed65b0c339f7ff6","impliedFormat":99},{"version":"59f8dc89b9e724a6a667f52cdf4b90b6816ae6c9842ce176d38fcc973669009e","affectsGlobalScope":true,"impliedFormat":99},{"version":"a6fad0438acd1d5b8eff4c0fcbe5a3b7810e688f641149f2ea6714e1b8b5e74b","impliedFormat":99},{"version":"b5ce343886d23392be9c8280e9f24a87f1d7d3667f6672c2fe4aa61fa4ece7d4","impliedFormat":99},{"version":"72ce5b734c05da85c85a6f6dc05823b051d6aa41acaedeeb1d17c72f3b4efa72","impliedFormat":99},{"version":"b0857bb28fd5236ace84280f79a25093f919fd0eff13e47cc26ea03de60a7294","impliedFormat":99},{"version":"5e43e0824f10cd8c48e7a8c5c673638488925a12c31f0f9e0957965c290eb14c","impliedFormat":99},{"version":"53cf4076f42b29b8d411259d168d51b3a0274c42c8814e5b44dfa8803a35d4fc","impliedFormat":99},{"version":"a39461ee1f27cf3e6cfd63d21045713d26d521da55ea4d8efccb705f689e6dbb","impliedFormat":99},{"version":"61bb64660ee150f3ab618340e15cca0a81664801bede7c966ca0eca3a952fe63","impliedFormat":99},{"version":"42a12f2faa483c9b48195ed794d22698162274e755f6e07219c2351c4f08d732","impliedFormat":99},{"version":"ec0c42bb0f465e4993f2bc68a6ce9df9a2dcbc7b83e21748f82f1b69561938e3","impliedFormat":99},{"version":"f50ff37a9cbbe74475f426474d9827083c7c2c138a954d28f1690df338f69291","impliedFormat":99},{"version":"61fd6c17235d530c40f543dd7c40afab091d91c1ef890baeed30db6d82b04b28","impliedFormat":99},{"version":"bcbd3becd08b4515225880abea0dbfbbf0d1181ce3af8f18f72f61edbe4febfb","impliedFormat":99},{"version":"091767bc841f937654ed597d49e023ed59850355e746ae1a6f20ab31076ee1fb","impliedFormat":99},{"version":"19c6d6135af59693698d384050b45a8a049493500add442f58e4bd7c8a255ab6","impliedFormat":99},{"version":"6a0dba12d55314638a8c51108b20fe2f68f1364a619d098918bda91c22dec154","impliedFormat":99},{"version":"4d2887fb8e436d8ea1dbc219b1e714e7fd327b663bfe4537d075dafb8c4dc9ff","impliedFormat":99},{"version":"77f7424c7653ca571b6aad3323a73da7a23a97275ee9e14c04901b2fc3f75859","impliedFormat":99},{"version":"36921e15078d2fc229fe0c76611ab5a0df260b66cdfd5f99e6c76bc3ae9bcbb4","impliedFormat":99},{"version":"d162abec4ee08a8912ab4d4f1ef890f726497b564f203b71bd5a60cded913cdf","impliedFormat":99},{"version":"8603b66aff9d8ffec90b2f515e337c4f19de03945925ad77c8759475168a8343","impliedFormat":99},{"version":"8b624e12fc25b0c5f51a26ef1bec5c31c314a479de0712785c8c4b8e4185bedf","impliedFormat":99},{"version":"e63033ff7522e994e0e1d9faec3fd84bc0894ce885dc933fc70e0528e397957c","impliedFormat":99},{"version":"6ee110da2af8f04936653814badc2df73fa893d4db0b4e1ebac957f612d63b55","impliedFormat":99},{"version":"838a11e68cfb3688925eaa7cfde7166cadf86f9950fed4853fb1923dc098cc99","impliedFormat":99},{"version":"a602eacab7c5a2398b7a4131a4e4b8a5d2faefcddf51bc230286e5286285d70f","impliedFormat":99},{"version":"9e44d5f53a9c293b004d24e6b3e709902419ff26059e0d22affa93462f157d67","impliedFormat":99},{"version":"4d3907c1514d751e3fdd00da4640377dd00756b4e172063f7e2c6eef9f074760","impliedFormat":99},{"version":"e24d8dc9dcbaf8fb062d4ac97edbffba1c572e040d25bf0860dcbccf1e9f3a88","impliedFormat":99},{"version":"1d5968735d6a01be14f39f3709ee729e2e3aae3309c2b7542c601c4d9369dff0","impliedFormat":99},{"version":"0cc9481d549ee09909165fbb9ab12cf1cf5b4f6748e9f8b68dec6b9583133818","impliedFormat":99},{"version":"05a97c8d50bef9e99aaa97149b3239f37b78576850aa698b3fcaefa32f75f092","impliedFormat":99},{"version":"106db9f3b4ca7980ab7744804d67678ea81a76756cdfad8342577e1b2af46342","impliedFormat":99},{"version":"b4bd38e8b0044564d129b0c81ba7d7999a2ed2affe5babbabc87a2d991210f31","impliedFormat":99},{"version":"556121d6cfea199c95472772cac2f719b834be8b9bd41eb6d8d91bf2cb8aef3d","impliedFormat":99},{"version":"c4d5184203d55e125c00257681628e038089ec04bdcc9fccbd81398af48ce45c","impliedFormat":99},{"version":"9cfaeb5d4d823615342550fbf0bf707d38027a8896d080464c6f6434e5bea811","impliedFormat":99},{"version":"c9a0186d419c1a2ac0867c8d7c5f753d068ff88e506b5810ac4b755443cef93f","impliedFormat":99},{"version":"e5276d294771106d9103815911e0bcc759c2b69437b2eaa53ae6ce3b31698f93","impliedFormat":99},{"version":"a849c1aa0f8fbf850658ee098099e30fadec5bdcae322e43d3715b13d28b166b","impliedFormat":99},{"version":"69b82e214e484e7428af5dc522675ff70f05b07a4cdcc168b0de3deb9a74c034","impliedFormat":99},{"version":"eaa27dfa46cdbda4aa20b27881245d5e38ce4dd0403d229c0cbba5211190e3a0","impliedFormat":99},{"version":"49637532054b1f32aca1a2e37e36acb6a063ec145f398bbd806ad4ad2d610b77","impliedFormat":99},{"version":"929672b92ae2eeb40eb1171a5f1551c90b6d55928b8d3c13a119ee6bad25c648","impliedFormat":99},{"version":"018c169aa65c2e199c1256a50229fc2476303a7d229109c76920734533715302","impliedFormat":99},{"version":"769eec6f55b0fd03ba1fc9c2c806ba347d4007a9307cd5e78f8c50488407b755","impliedFormat":99},{"version":"ee8caa32e966d21923391aaf139eae98fb58a865a74ecc3d55950781da964549","impliedFormat":99},{"version":"1965c99a27f819fec1007321018cf9552beec40799fd7bc080c2e64ab521e064","impliedFormat":99},{"version":"f0cd5f360be33c4507df7fe7491388b6890a14844fb1e26a5c779ef0ceeb3ba8","impliedFormat":99},{"version":"58b79e76ac3062bdac3bfa5851abeaf66b7432f2cfd2fa79c969a1d619f31277","impliedFormat":99},{"version":"570742c5ba7f2e8f4b3e6741814030d2a282111a63d42bd40e6e48d5b070e48a","impliedFormat":99},{"version":"e42e8eece168b49b0a95212d709831e979049e583ab50c31f22d7c7863def456","impliedFormat":99},{"version":"5a8516b0d60aca2895ed18ebb5f1bb61fe99dbb99383420c1038679bf258be7f","impliedFormat":99},{"version":"98708f9ff38cc2b2738a82d862deaf190fe50c76256c34d877531b5add891480","impliedFormat":99},{"version":"e61b8d8c4c729e967d332c3c1a2ba7576786d218e21685c47440e02d123f51c1","impliedFormat":99},{"version":"ab98cc4cc649989f185f8e23da9cb2c27847072cd7a071b7c7dcf8bda7f361be","impliedFormat":99},{"version":"69631c578eae77a24486a548df6272e17318cd2cc3742b301c6e374031ce15d5","impliedFormat":99},{"version":"85e7e505b1eb7b86efb53992ab5638253ba698d676397aa4aef68636a0d92db5","impliedFormat":99},{"version":"c523515c0bdc2fbb0119ea564b1952ffc042e6692c22aac588c99bddd89fe280","impliedFormat":99},{"version":"7a8fbf8a1e38dca11ef63c25ce81b0c9cd3a2b75d32b2a1aabb22187a884f65c","impliedFormat":99},{"version":"ee07fa266671cf9ad5522e425752bac7d1149e9d66851058ab1094cc4b475565","impliedFormat":99},{"version":"6fea7054de404b9980cd44dfdd416d03a44477ff3e1c929493022abd7244658c","impliedFormat":99},{"version":"08297fbb15c5b09a2170bacc090f295aad6267f51ad49c836ed9cdec93d57efe","impliedFormat":99},{"version":"adc160518fe54967314e9a78132fe1630341b743acbca7a40366a7118d64d8a0","impliedFormat":99},{"version":"aa0db1558cfdab86a71c88c4369b0e089749cc17dad751e4b824d0b44892ea04","impliedFormat":99},{"version":"a4e4ed7aeebed4f15bfc68ef9e719b154765d523681a69aa38d9f4be10ec41a4","impliedFormat":99},{"version":"79da23daf791a61c15b6adb2c8030aab11d2b96b12fd7cc1381157e64ebc2fc4","impliedFormat":99},{"version":"64e0b717c40a38d507f38117c2363cd582cdd58d971d3d57d413fbc239f6e612","impliedFormat":99},{"version":"64c7a10dbba5405299f30f1ba2e48f680a99a1d9ca56ed3b25fed37802e49f0a","impliedFormat":99},{"version":"4e89358beaee0660a66f27120ce892880fd6e4ff50a20ad17dff711b0531ccd2","impliedFormat":99},{"version":"b49349872646f50772934a48fef4c95ecb328160f60b80d412a9f7210d6ea817","impliedFormat":99},{"version":"58be3671cce553bcbe1236d16c451c25b84f1d0a9fe32bdb70bcd672b8d84026","impliedFormat":99},{"version":"848fb3a35212155e7320e4d412a56d2ef082fd954f281e6a221720906d8e24d5","impliedFormat":99},{"version":"b130f22d08a15bb6c3b47ddf1b1f14ea0def8acffd486f1668a28b4ffa6809ba","impliedFormat":99},{"version":"4a2061c6cd6193f86dcedb3f2dffc38e57fab097eb29e2c857f2ac8608f05349","impliedFormat":99},{"version":"a037be29361879cebb09992466be99c3bf52dd7426986005026ac7c9351970da","impliedFormat":99},{"version":"4f27ea452fe87e5614c79bdfa06075c1d7afdadabc3213299a4597fd005998bc","impliedFormat":99},{"version":"aaac531eaa95b1c4d28bc03bb7fa1d6cf9495ab14b61494ca452514d60133a0e","impliedFormat":99},{"version":"d7442be0f659458eefa72616260b16fca92e97c03e951efd989966b5e7ea5e91","impliedFormat":99},{"version":"fec07695d9acdec37e1922969b4d6625f70ae89adbd4afd7d268e5d523bde38e","impliedFormat":99},{"version":"f3eb5627a5494e0207831df2aebf5df6ec2265b9ef94cc1e3bf2d810f606be14","impliedFormat":99},{"version":"48cf15e70db5b3b6ef026d613b091464604640c8b8272f83c4dfc612498c4f50","impliedFormat":99},{"version":"75d4c68ff23ea1875f4886bb79b273fc4736ebcc92d55c75da0d0515df20eabc","impliedFormat":99},{"version":"d76a111579f9ae213c059df3ea6490fefeb44d501cdb0f18bd9b9fffd8fd142a","impliedFormat":99},{"version":"3709251f4d3f80cc7dbdb0398f4cd1b0fbf1d68b88ac2c2c9a2819c9f4d93b42","impliedFormat":99},{"version":"a9fa1ca3f563a463e3dbc7f08b846512d570450887ae2d144589cc723e3d3fd0","impliedFormat":99},{"version":"c8b8403a54738582b19f7a4f93498b6550bdcb665ffae98a907c91358ffe55db","impliedFormat":99},{"version":"fc8adcb7f270b42bcfc3b22d0b170f0eb1599d8661d15d6cd4538ce053e1b9ed","impliedFormat":99},{"version":"deecea988e1412aa38b360b0fb071fb86bcaf5c94ad1b1398663c8dd4871e6af","impliedFormat":99},{"version":"e2d7e3f27356ab2be630a4405e3f60499b9dcf466775932f371c7ad30d305f17","impliedFormat":99},{"version":"20035f181bd971cb94f5742bd91131b79c1b114706e20b2663d2c40c055fa53c","impliedFormat":99},{"version":"fe5af5ee1bfb821694b6a026c509511c6d8540cdd285131c81a115b7eef56e11","impliedFormat":99},{"version":"54442f15c1d35a773cbcaeb7520e0e09ac991a1e00d6be72d65a078288e6dbe9","impliedFormat":99},{"version":"e41d8da000ae9c3619e6c16606af32b3d70f933faa3d6f10d72563b5b0f65bce","impliedFormat":99},{"version":"124c22139ae091889925c5d1ade97be21890a5135d98b17d96b3c6f382efd196","impliedFormat":99},{"version":"c36c30592da0b0667ce5c4215b660ab5370b21412320be13115e9eaf22987c57","impliedFormat":99},{"version":"91386cb2bf54cad36b0a7b9ea9790afe894050c17ed40cb2d63552fec4961e85","impliedFormat":99},{"version":"d77786dffdd483df22bba299465b01ccc0b48c3bd41b0af66b43ee9b280629b5","impliedFormat":99},{"version":"4aaf5a0f504e99332220b7189fdd94ed71c1f3db7225bdceb6148b985139fa0d","impliedFormat":99},{"version":"8ff5f071f877ffcb31d1476c59d4c68ae05c0ad9b022d0145970c7dbf5e40214","impliedFormat":99},{"version":"a3fcdb8949307b5481b66479a4168fafe3d07647cf91b856f22e4556bac78df5","impliedFormat":99},{"version":"72fcb3b2ebe9102201635cd731f5e655afd680a7edcc5804435827e994948700","impliedFormat":99},{"version":"9d9dd4371e7e7ec4968fc506f7dab3303e70c4baae96cedbc0f25fd487994d29","impliedFormat":99},{"version":"9c3033264cfe0084b80cce45f90db8b2af60ba8771748a22d14e6a30bc467cc2","impliedFormat":99},{"version":"e9cf28fb0bc429b94cf4c0069954edc5da874eafdc5c967865e184eac9a3b5aa","impliedFormat":99},{"version":"bcd73ee4dbb40711d57b4555d222453b3cbb3824f7fccdf355e43e6e35a9a4ab","impliedFormat":99},{"version":"12dd3b0dcaac8d69f273b9f03d316eb29cdc4a35fccef29583254310505d32d7","impliedFormat":99},{"version":"38077de13fe290c3fb4fdcd8f426c260c06e7308783bed33e5ff8921dcae5194","impliedFormat":99},{"version":"5ec96b9e4148f817ac89052509f6a9db1b434ef37b634c9cfb54b0be3b81f7f2","impliedFormat":99},{"version":"bff50b812b9a6bdae45bc5c4025eee90a6d37516f5c473729b590abacdcfc00c","impliedFormat":99},{"version":"e102eccbda45533f54617e5a53b143d0e44aea1f251551eb6e237085ece23806","impliedFormat":99},{"version":"f12b02156d76749c81e4b83185d3b814b8352f5e21ab5b7284e2eea2f1b17a90","impliedFormat":99},{"version":"4c612460e5871907fd0182ae1eae612b7915609ca78139ef110ddb4e1af605b6","impliedFormat":99},{"version":"e4519b1ad63f51fb64fa0db0fc963f83ffba0ce449693c3b754a2315449f7cdd","impliedFormat":99},{"version":"6a8106c44c9de23fff7e01d74805857b5702da8c72f1391a38b34460063aecc4","impliedFormat":99},{"version":"80492a9617e654e7fe8e27bab491d51e1548ea4bb9f8c51357267a92a435dcef","impliedFormat":99},{"version":"89aae61ac71e83a0f76dc14179cca84dbd1dcb6f7dff0b112dc1bc6b1c887800","impliedFormat":99},{"version":"b43a1d1eb7fb5d8b3c7e99c020b4313bc614de10665a0cf26d7d4bb78ff008ca","impliedFormat":99},{"version":"8f1dd9a724520513ceb0014819e9169525bd9a020c74458e85689cab061a1f7b","impliedFormat":99},{"version":"60b6250ba1516b1eb863514b3f1ae52403f781eebb5b798ad8765dea5dc79dbc","impliedFormat":99},{"version":"61a8dc1eaeb0a50f9304858e79a4f1a7b72a0901a27ef046e9465911ffe1ebec","impliedFormat":99},{"version":"f75492d33e2be3eb66f9fe7f01c8760fd18505d724e6fcd687f6c2e806b40046","impliedFormat":99},{"version":"b5e40372d34e1f0704131da3a8526e12948295e64b4d05a11e1fd8570c411e39","impliedFormat":99},{"version":"2c879cf6a84b92061c13bdc0f4abdca88834242ffb7b0765176eb44a0602a762","impliedFormat":99},{"version":"da67be907089d1d406cac1a6286a4cea9d430e099c34464d00e7d7791bf2d3c4","impliedFormat":99},{"version":"d3820ad364704a21b13bb585852e968e3184b4662b185c9b53cd30f1d4d00510","impliedFormat":99},{"version":"8d7659793df95d53e1757de966b7e1c1fa809dde2c02fb87e53df19b124924ef","impliedFormat":99},{"version":"2b384d6463c4ed2cbaaf58ae46a17753a2b729c0d17fe346265f39901a89c301","impliedFormat":99},{"version":"f865cf13bb812986c308c80ec8d536356f91addd45a9f850968eac0c740c6528","impliedFormat":99},{"version":"cb35c26fb8933531969fdf198d70d91fe10d445028bade6632dab0e884573b79","impliedFormat":99},{"version":"cd6b5c72ea7d660affad9cb41859046e79c4e363c22700a6f86a7f7578ef9a2a","impliedFormat":99},{"version":"5dafab1e5e9ea9835109fd2766b154c1499dd17d935e4ff49e70ffebda3032d0","impliedFormat":99},{"version":"5db698db35aa63f4d2debcc34101a5f5a2d01366c3f15bedfa9050ca85d9aa35","impliedFormat":99},{"version":"c55c432c38692edf9f918f385d536c43073cc8077ff44850091442722bcd01a4","impliedFormat":99},{"version":"17a295c1b1dccb8cb4f854bde5ff33980fef1d883c6d481f8593240ccaed60ca","impliedFormat":99},{"version":"47ab38c7c74019bd347aa1c812e6eef86d2163669e50242cd27d0de30b6c3fbb","impliedFormat":99},{"version":"c8cfded6c4fd715b52de664d21931bc6a55b225894f5792d05ae29568c623def","impliedFormat":99},{"version":"1bfe5cc8bdb660318b30da6f47460605b06f196335705af4cdbb510ffd8c8fae","impliedFormat":99},{"version":"d4aba31dd41819bd87d70843438a935ddc142c0eb1d0cdfa164e5dbb9fead30e","impliedFormat":99},{"version":"9aca4a305574aa60617b94cb25d8d585fe169ddf92f7dd0197d89d636aa1c19a","impliedFormat":99},{"version":"d23800041ae0858327ad3b47c3876e0191c16061c33c0550fbcff60b695d7bdd","impliedFormat":99},{"version":"b809557adda13b9bea2ce69cea6405d1345d85f7d029a28d092fef440edf6141","impliedFormat":99},{"version":"b9f39d0dd2bc56a387290ec42a094382ce91de1258a6f5f3b89655d7aabf65bf","impliedFormat":99},{"version":"c8e72190cc41dac064febe56f97bc89351be5a83832918797fe8c36cbb604fe5","impliedFormat":99},{"version":"250a161356fb615263402697679460d0b765a249404a78125168d3fddaf9d090","impliedFormat":99},{"version":"41d93ceb853cc53debd13fd440e4b71f089bfec10768811668db17e7df55a3d0","impliedFormat":99},{"version":"4fce10097a5a81c6811ef81adfb03683518a072d4c0d87f5347d4d7b4400cbc3","impliedFormat":99},{"version":"f5decc77d27c3a64f0d38a8ed69fc60159706b12a7f5ddcfa574ea29f0e59f80","impliedFormat":99},{"version":"6d93506d3159b47c8651e353095a333fad5211363b5dd2aa48dcdf9e9d69871a","impliedFormat":99},{"version":"8289780f7f1f94951d01e6c4aa2bc9fee7720c9807fd5dfb77e6a8ada8242cb6","impliedFormat":99},{"version":"cc52591d128faa36c09f3aa27a5054ed3cbb651331095380915cce77622f0fab","impliedFormat":99},{"version":"a39c28ed9ee3e52c975278adcb84d56cd0c3ac07f339481219c67aac93b78c32","impliedFormat":99},{"version":"acf12bc7ab7f2521ecc517b2ab4cb61014a384f16d75809902ad7cff8696169b","impliedFormat":99},{"version":"96fcce579cd105b23b74a6e39c9f62d478a0e4cc88f51cce130c106a92305603","impliedFormat":99},{"version":"bf58326ddd44ea8c9e3377e6355bdcfa46b2157162110c692b3014adebdcbbfd","impliedFormat":99},{"version":"28f4cbb0f2b77cdaf8f638286cc2844669a496f687c2fce10f9f8ff14e407fe9","impliedFormat":99},{"version":"5d5a15194cf1e9bb670d20624d80474368d2894d46d3196ec7aabf80acdd0ea4","impliedFormat":99},{"version":"e26538b0d04ad1ea982c6ada5dfd1f340e98137cbf0d57075e754462d86f7611","impliedFormat":99},{"version":"99a12659c5daf9dd6ae79d11f8df6d34c5943c6ebae7f424e21cdb963260a91b","impliedFormat":99},{"version":"473c6060c3923d6beceac97cac7a684113090abb5363f50915ae0fc29492c928","impliedFormat":99},{"version":"bb64643948ce89cca03b8252ac01f3beb1e504f2e232bdfdb1cdc81da5d4687e","impliedFormat":99},{"version":"c4239abcb2ff0e4fd1a7ba09e88986e718d4612d13929d30b4d02779e3d87aaa","impliedFormat":99},{"version":"dcb610f5aa4b8627c9676839320db26f357d9ec75d31490892a1fd73be1b1314","impliedFormat":99},{"version":"7a4e7b83a4e920dd574f8df7d3bdab8dcac6d31226fa1eda728628508188a977","impliedFormat":99},{"version":"eaff8a935d00b2586318cc5c3092e59bcdb61b687415978f8adc78778664ec72","impliedFormat":99},{"version":"6d170802c45620c12a5ed32aaf2b239f1c3f3cf76aee3a2e955cff1b6c6144a1","impliedFormat":99},{"version":"d249734a690bb801bacd2afcc0432b5be224dd91ec88ec6ec43848c37858add5","impliedFormat":99},{"version":"3a0d55c5d62914650d86fb0402277a1fde4bb25388c15734bf3c4a9354bf52f6","impliedFormat":99},{"version":"6789838f6daa7ddd03fa4be97bfcc6fe3449c9a04a7f4c9008c508898124bdf0","impliedFormat":99},{"version":"b4e1f8785a623cc58e37ad538b9a5de1de1218e154c9f5a0c03eb18a2de9bcb7","impliedFormat":99},{"version":"767bee06d602aa9510358818e71db67140a3c2f056566e41be2a079a29c41979","impliedFormat":99},{"version":"206260b1670649a465319961ee478ac2fd1e7852259efb9e04112e4651fc9544","impliedFormat":99},{"version":"e8de9704319ec1ba81145df7a6c97a409c572fe5ce22ad11a9ad6737807ae620","impliedFormat":99},{"version":"747b9ec353a6bb35d732e4691dfa3ae8e4406971a08f4199cb2c91003c03d0de","impliedFormat":99},{"version":"f2ca59e16388b431b8e912ee51d31e192c4792bd4335ae4ca2f59af622dbc302","impliedFormat":99},{"version":"cd631db9f450f9a18015c23ffde0cfd030e44ebfe4b10f5c72803de30ef0e8fa","impliedFormat":99},{"version":"63fbf377cefedf70ed0aeae96eba90abf65c2e92679c459b325b2bd37cd4983b","impliedFormat":99},{"version":"e23f60fba2fcd179fc2152ac4f6f3498059f21c76bd74e64147fc3e1365f3311","impliedFormat":99},{"version":"78f304cb1217b823ebd9b79dd9b4adc75b0d915432456afb140fb2188e1bd748","impliedFormat":99},{"version":"d8425128980a85913c1f5fb9ece9fe237a4e70eaa9845a5527995c2d40b89331","impliedFormat":99},{"version":"39b5d3de3c64f6b268cb843ffa399e5b0d8f17c3f65be35b05b9038c987346bc","impliedFormat":99},{"version":"9069f61b6a5eb7844d89571ae96dd492fbd5f33534bf621abf3bf29579f0484f","impliedFormat":99},{"version":"468caddc2aac962edebc1d3b8a5a9e9a173b9e75d36d84dc263502fb2e49811a","impliedFormat":99},{"version":"08b0911ee98ea9f9f4629fb6c3ad2f52a9a5aaa0aa9a80a7c8041b8c27e8f69c","impliedFormat":99},{"version":"ca787195f6134b4dac541a629f9db12a30162adf5467bd343f37dfd562b7c329","impliedFormat":99},{"version":"7dcb30baed58d49e6bb15bad648185d3c198959e7a3e9f063d1838a8fba7c91a","impliedFormat":99},{"version":"ef8dccd817a571ec3fa073a965d5d97b785cc43222c7854121ba31fa97d2bdd5","impliedFormat":99},{"version":"3a52eca069515967c1b43594091abc98d51004c68011b4b7d3335a830a19e906","impliedFormat":99},{"version":"85008e5bf42ef9dc1c4b6924c78c8b911334cbf91a7a24ef70efadd9fa88ea62","impliedFormat":99},{"version":"028cb9a8ff4335a9b239b17cd381d61b65af2384fdb866c47200c6beed7674e3","impliedFormat":99},{"version":"ce1ed5f9d243c8378bd4099ca7258f4492b9c41f7764af07fda38da659f0fc57","impliedFormat":99},{"version":"d6e00f06be5750686d5646ee1ba49b73050968d7d68968e3c815d24a08c383d1","impliedFormat":99},{"version":"1c0472bc9182a884d74d7e8f2bcc46d34b6b16342ba3cffec03be817b2b9b042","impliedFormat":99},{"version":"c097ad4cab7d86210476ce41e964e806c9946aa231bab21cec2aae3ff2795978","impliedFormat":99},{"version":"060d300e05a630bca1752385d12f8c7283bc8c572e4c2e797abd51019a0206c1","impliedFormat":99},{"version":"3e2bfc42812d3a879308227c956b958c0e5256a57c3549da9ef982194951a97e","impliedFormat":99},{"version":"b158543642d5e0d7d86926e135c3bb618428b65aff3cfecab549b04725469f5a","impliedFormat":99},{"version":"c6abed8a1c50ae86892236bf08e5890798b939bcf263a7b25fabbed8dbf70b07","impliedFormat":99},{"version":"2aadf562886279ea28b6b469b2396c86f54a6e80bf8427dd895218e58b4bfdf0","impliedFormat":99},{"version":"e6b66ba6f695ee96ce5ad8e0e39bf2c5630e9b6c2f7a91eccee70f8ba1a82c00","impliedFormat":99},{"version":"af8546e25450ee35e8b24c5f46558c3f0fd7c92cd6e8b6024036d2918994af76","impliedFormat":99},{"version":"d96f38005197dd03404a282b2c2f399c845c233ec16800bce394000fa5a1a727","impliedFormat":99},{"version":"1b2aaf0cbd2b9c6592c40f476e6053dbe52edcc9cc96dbe03db1ae8085e50e7b","impliedFormat":99},{"version":"d7d173a78b314a1749f45ef644f1baa1d769a64e72dd1a225990ab858279a1e1","impliedFormat":99},{"version":"c919340f2b125d0fa4e9179cc9b53c225e852cb70e321576d83a4068c6d7baeb","impliedFormat":99},{"version":"f2ab946b2481f725ebb90f42504db6c43bb967b08b6e6c7c84ab4f6abd3f3890","impliedFormat":99},{"version":"b0d96987e7b7219db0af2caebe36fb0470fb351d532ab483582032a1e38696fe","impliedFormat":99},{"version":"91a325d80ba995754a3a8072dbc20a28da4b84387f09f8f4bd549bd174e83b82","impliedFormat":99},{"version":"f9a43d9390efe0c20d22ec866f6f892c2a1e338c72a512809125f9df53cb92a7","impliedFormat":99},{"version":"b73d2f6f38ca4c1ec4a7151cddfcf0f144bf4364b2e81b082e35ff5361c0f57e","impliedFormat":99},{"version":"7801cae57a7497244c5243ea6f549cb3a4d1eb65c08268b09e544f902c48cf22","impliedFormat":99},{"version":"a9088a68eb7057a790e986cb60835dd190691642ea759e0f249ca9a555e6f4df","impliedFormat":99},{"version":"561e83c572ac51be3ad30f2d52e4e21379dbb7fd06cbc6eb0a8d4410741faa16","impliedFormat":99},{"version":"948c68479773ba7430f49d9aca11a27cc634ce921beb0ffdeeec60e3ba175a3d","impliedFormat":99},{"version":"2bd820079a9688d1b11fdbd4ae580563fed1edc6905d8ec08dad853766a38fa4","impliedFormat":99},{"version":"66b7178c218793c116e9b1a9871dad446f51618fcaee8730d9a3462a2f99c2f1","impliedFormat":99},{"version":"f20eeb62635edb76f3bed0a0341dc1c543684d8c2e280192dbaa9d815a2b3e03","impliedFormat":99},{"version":"f68ee6b0fccf8dff34d25d155ab88a1a699be67beaa3075f695f130f9c20b975","impliedFormat":99},{"version":"5aa560f601510ee8bd0b34b2d6a92316c46b43bf27c582b168242632b1613aae","impliedFormat":99},{"version":"0d3b3f2f3c92e2fd9b56d75bd949c74ccd3cd2d6e89a553e59f58568ad90dd78","impliedFormat":99},{"version":"c09eb94f5f890522952ce366442a1fd12052bbb76e84a6d2ca87238307fd5d4f","impliedFormat":99},{"version":"1460af367d2f860537a9dde995cc06d0cc2b86c5761b2f4c0350840caf01e7c2","impliedFormat":99},{"version":"a02d3f1988da099c920b3209211840a299db1a3c20d7aba929ed7ef0442f3e6a","impliedFormat":99},{"version":"75aca9b08ddf95a78154a8a261e3ecef1f924ee269348687978d187b872d1535","impliedFormat":99},{"version":"18e61650cab316550f346f688c1dc7933cb3184cbcd88407a77748a75dc844b3","impliedFormat":99},{"version":"f17d24c6f8d381e61c99f13e4f38849e72b72c44e59be96a97dd212e2e6679ca","impliedFormat":99},{"version":"b64b8f2b635c69a120183f741ef3eaedddb2e4b021468c62f780c6ac287deef1","impliedFormat":99},{"version":"11e434214064759b5c95eb4f026adf239b1bf4d79ffa2a4f00b398111feea794","impliedFormat":99},{"version":"05d2836490172eba648524e51117dd5dd98c5438aa89e15f6890c9562f8b4004","impliedFormat":99},{"version":"f2d58e2a95faa9b9ca10bfd9333a445ce6eea6f2a1504fc7c8c549018adaa59b","impliedFormat":99},{"version":"9d18b7270255629a0e40053a36d9cfd4c765c3df73313422fbdc077e6f411ca2","impliedFormat":99},{"version":"32b791692403665af92cec27daba20c02469748e2e0602d3ae96350ee08d2a6f","impliedFormat":99},{"version":"6332e40859f83f0446c33167825f4436e2ded25edc7974a5b42c7f6a59124f23","impliedFormat":99},{"version":"50ae56aa0973ac45d8176c56d105af95cbe8b6301db6ff5fc3512b4c684b4255","impliedFormat":99},{"version":"622f748b9de2b1a65392aeef2e18c6dbb372f3fb82d8e5ee55234cb9763b3fe9","impliedFormat":99},{"version":"a6150b170cc88ac46d7005318447bd161982c091e0224dfc63dc2a8cd6d12f20","impliedFormat":99},{"version":"24f2b131e4b2d9aa929c24e68328984de1b9ae0bf4bceba5ee40e6cc5b0bdc67","impliedFormat":99},{"version":"d7fe6edb96da75ea3fa6b76a8613e61d13aad20b7462b42f4f3492091238b215","impliedFormat":99},{"version":"5e9ba2bfab8ce1e5f94a7463969a64ea6c22d31919faa888ec940dd770af1248","impliedFormat":99},{"version":"a2b13db4828108b2406f879c2cb93d6a497fe936aa14f0f3d3dcf9c9ed03f75b","impliedFormat":99},{"version":"b533b94c5ce70318fde3772b3221d46941d2f359d81221da079c2ecd477f887c","impliedFormat":99},{"version":"a8794bcff57ed0c4f880a948f4b85dd1b22d925ba090871dbcd88b35c5ebe968","impliedFormat":99},{"version":"e2f77b057053d31d7fe1a3648908095bf987bd96f73855889b5ce9b7a8e250ec","impliedFormat":99},{"version":"c897ceccd46b2c55f8aab887a246417b0520143e8a96fd26c0c84a12ebfeff25","impliedFormat":99},{"version":"b762e986d91311985863443a278ce6920e3541312338a8b2ff5026644f55cc52","impliedFormat":99},{"version":"d591d1559ae4fc82c4c582ce269b6023a0caac336b245b78fc556a9a37a60bf5","impliedFormat":99},{"version":"9a133dedbbd96d3415cce1bdda55f08ec1ba38bab7e7139aae3afcc56cbc070e","impliedFormat":99},{"version":"1796c4fd3085ac25f634b30378e000e1b985ffcb2f04eaf9ba7c6c2785500308","impliedFormat":99},{"version":"ceaedce2f9989592a1f2bb970c679c167e8a3b8973b046e1aaf85bccf9859cbd","impliedFormat":99},{"version":"784e9840f78ca32d9f8d6d69f3b7b5a955b9cd134fc283d84e7777cb63276d05","impliedFormat":99},{"version":"c48e52a9c4c8c3cd841da9cf35f2a6574ab0c45a84171c075ca9c6cb6b715768","impliedFormat":99},{"version":"98afdcae0697df3fbebb0d9cd46a4865abc9c47378cdd022063ebccff58239ca","impliedFormat":99},{"version":"135e72dd70117b78dfaa72723885feb45b296f61bf60cbf9eea7726bda03c154","impliedFormat":99},{"version":"61c43c4ba9a7ace834e443cbfe4c7cfcfe23b6a81505cc0716564fdae9597e3e","impliedFormat":99},{"version":"87f4c6dd964ac87d6b45d5663b917b74ed83789a232bb9419670a922913aaf30","impliedFormat":99},{"version":"7c901df77ab9b0b7e932042aad3629729eac81157aef01e377aa7eeefd9d8f83","impliedFormat":99},{"version":"432e8de8444fa333c21e5b427b3cca5d2ece5177043af26014a87a2de779a8a9","impliedFormat":99},{"version":"b0f1373cb8fee14b5a96c2083d9e06aa5329d9329f1945390c3da55b0e475612","impliedFormat":99},{"version":"6a07210d3945b68bd25158aea4538e8fc45c8073aef4f18a6fb71fc4afde8e16","impliedFormat":99},{"version":"ef608b53fdfb8ef2ce08eb30f411c1c1500c4990541763b48d041fd3ce970676","impliedFormat":99},{"version":"9c9da2b7e0cc3dbc5323d17420ffa7c694b9cd635f7928670f0821637b1efe54","impliedFormat":99},{"version":"9dd18f8953ad665a1845871c0bac9a11ba128951f4481e522842d8a7e7999fcb","impliedFormat":99},{"version":"618b4ae5336a47df468d4f71b3884048f5e6e7bf7ecc9093b98cbd7b18daabc6","impliedFormat":99},{"version":"7f97435638b9523edb4870b4e805088108d874a777172bc8a46caf63c6656f99","impliedFormat":99},{"version":"31ff93b370bb6c701d287996b955c5ccd063360f363fef206d60a9848a48e3d2","impliedFormat":99},{"version":"1934c6418bd4f3130e7a98e8e4b701c383a301ef831e767331ed2e544965fef9","impliedFormat":99},{"version":"69b49a4e4216cbcadd09d3d8cc11d224b3c6cc2749ead447ea1a1b514b748133","impliedFormat":99},{"version":"2bcba29ee9cb7c86e7cd486a1dec3274d0aa3a14847ea6e84eb7b117d1210271","impliedFormat":99},{"version":"489e5b3590d99830e9146c61dd810fe0305b2c580d9e912c1e69ca84858f6a6c","impliedFormat":99},{"version":"dceb4c71cb4c299f79a784e58119d7788286bbd1009e89d476aeac26cd086763","impliedFormat":99},{"version":"e5d3ee84524032a0fe1066cb9cb38dd78218f9a496ac335aa857e5c1c801a86e","impliedFormat":99},{"version":"f41940c36a1a760593e4e214bd6eec3ee7f90cd934bde0c2b1caa430d76bf659","impliedFormat":99},{"version":"7611726255029e649e3c2304ae36bc8a34501823e145c708b35b99e988b677ef","impliedFormat":99},{"version":"6b246b69ee26df19a7fd044a3bc686e99b903284695ff0c3a232baecfd055499","impliedFormat":99},{"version":"b3fa4ed7d7976d27aecb6547320508c949cf9c6503f8046d74c6d74cd42cea83","impliedFormat":99},{"version":"8dc2b342bc7ad0e949723a89955147d942020d1fd42656d08e87a2302b757d7d","impliedFormat":99},{"version":"6c7c15055a23e2b54f15113daa60909806439d168f0ac4d172aa733637978e52","impliedFormat":99},{"version":"80cc3ff6d31c4235aaf2f3cb303faba93ee6be651863ffc3db33433ac779db76","impliedFormat":99},{"version":"665243d722de2dc95ca2351b6dffcceeb7a9b2bb881777b9771ab55dec4e32c3","impliedFormat":99},{"version":"49506ea016a6f383f5d463b991aa04f1e05ede9d82c61b78080a54f5c6c67ccc","impliedFormat":99},{"version":"1a1587ceeef503cd8b5472cbd745e845d1d89b329af1fe5dde0a34dcc7e11d3f","impliedFormat":99},{"version":"f372b58d2371a40a6a2336564cccdcc09c8516006afccbe23d524e9b3e6b0b50","impliedFormat":99},{"version":"234bcd30c9ec5b0485e91c5ad45409fd856f829e8fda76396147593f99ef001d","impliedFormat":99},{"version":"1bf2a90865d536fda72ea3686c9b18219d1e2582d8ece7060a3a242aaa9dc7aa","impliedFormat":99},{"version":"f2ce60764659e04d7daf572edc3dea68602ac09c4988862927167a30ac2f7b40","impliedFormat":99},{"version":"1e9a3fb05002f75b388a8a1dba9f05d564874bd06cd972f8a946840c8df01364","impliedFormat":99},{"version":"616f997335616ac58b0ca09103653c5e3f1677c7a4a34808abe5eb7836db0d8a","impliedFormat":99},{"version":"8f1018bc0bd737fdd70993e38b8d9e1069b6b1c1dbb0097c41ccd7279b57f55a","impliedFormat":99},{"version":"1f7e26fb66bcdb08484fdb1b65d379ee85d1b1a05264d2cf009f84318b4aa678","impliedFormat":99},{"version":"f72bfaaddbd122d6f2aa97df6a2f2f0caf5e0abefeae7b27d5635237554cdd5c","impliedFormat":99},{"version":"2e1a8e0777522f86ad6503c2082278c4d4e0b09259b0ad4323626976800d6806","impliedFormat":99},{"version":"d7989d7063b13e494a39b03e0ec3a5e2542e99bef41d7f9b49547e39df419747","impliedFormat":99},{"version":"26d92a20cf51acab25834bae098abfa7f6a26c2a8edd4213a880ad8c555f703a","impliedFormat":99},{"version":"f3091dd83c77ff308499705a785601faece1a49863a50a7066237d4e92fea04e","impliedFormat":99},{"version":"10b207261c316bba4a99ce037c8d40aa04e4e15e183d3f87ed7c6793c53ea9ad","impliedFormat":99},{"version":"eb79b8087e892147c0c0f44f5e7bd88c9999c96665136c21b179a7b7362a595b","impliedFormat":99},{"version":"c9ae9256eed3b3f360cae3fbcccf955233ad90bfe0cfad0f103ca3bb85de7044","impliedFormat":99},{"version":"bb3422550b34643170b845a9c8f4dafbbb4bed983a2180b7bf1a2d8fc1bfb767","impliedFormat":99},{"version":"0bfe62549a16f0ac4743d7a031ba321268a6e4b7c71bb394bffa745ae2c84b0b","impliedFormat":99},{"version":"4ad4b6f3a80c526f51c498ced3e30fed3ca33780f330046e18c553f945b51e54","impliedFormat":99},{"version":"b50427c14921a1ae22a6eff321064be09f82d2f99bd3640946bd517275fc0be2","impliedFormat":99},{"version":"86c5374ba226e809c60fdd4aa7ab64a80e1f0b32d6676edcbfa29bcbf8b65b47","impliedFormat":99},{"version":"c10ea70475948589ac588174d5cd22c6ee70565cbb46e840567b03e1df6a9255","impliedFormat":99},{"version":"4126e5d2e94808449564fc8899b68ec0bb361d00b156a2734718b687ef5dce13","impliedFormat":99},{"version":"47f2dc585b8150c5256731c3588abff64ddd707e6fa9103c42e8eb6f5216b291","impliedFormat":99},{"version":"56553d8dae36a4d29a912b7d90b99e89e19db31a2cf466153e02e518c2eed92d","impliedFormat":99},{"version":"d08c388e022005db246a56c7ad6747731807063f99bcf5a86da1fb7190cd19d5","impliedFormat":99},{"version":"d9b82403377511ff2d2b2273765e3046dca75fb6471e142f8843d1ef4ab6701d","impliedFormat":99},{"version":"5c196ddf7282a96a45224c103f3a49bc7a8de31c5d6ac8fc5791c5bfc8abda7a","impliedFormat":99},{"version":"29adc3c30ad4c07b571b7cf28a4a17be302bf51dcb4111ac6d4346b29e6f3e45","impliedFormat":99},{"version":"7b9a892374d781d2a7e2a4d8f89f866277913c8e0a7703c05f9d38907f9d2b53","impliedFormat":99},{"version":"278f73a916427e5f1bb9593de57347cfe37d06b2277be2c307590be7922789a2","impliedFormat":99},{"version":"81c67711d392d5ab7e00b7d06ab91418e451399b1d2b0ae93fce5040065c4255","impliedFormat":99},{"version":"67d125134a3f599cbc256843a07c5351d6356cdb5c183dbc223ec6eb30197508","impliedFormat":99},{"version":"21529df6d5b1968c624352ddff328a5d78d634df97567e967222651cbf527307","impliedFormat":99},{"version":"77bfd4eec7d3f787f1e0defd19334a2d9ed9477648db8dfeceffdbe5b0cab336","impliedFormat":99},{"version":"87970f078004fb8820426b99d4da3fc79f695471885541fc77cfc892b80b0067","impliedFormat":99},{"version":"bbb1ed873062b93d439596d6330f29fd48f658e6bbbac5621cee80b2bbdf026e","impliedFormat":99},{"version":"5db82aeef514204d924b85f6aa881fd82a52c9e6faad94eb7296411ed06f7809","impliedFormat":99},{"version":"33330e7d74af117dc9df333d316637acfe2a26642a8954d58b3e88451ee8f497","impliedFormat":99},{"version":"03a9ace084ff2fc3b9dfaacde474b905db9c5e864543e6db3f9c44a1d7a43055","impliedFormat":99},{"version":"98d7cc6c9ebd188e69f19a799e646d62e691d769b81780d82c9e707d3bffd20b","impliedFormat":99},{"version":"c0a9c77d44f515c0729d952fd66f27748bf3f4197a9ed98294565880c7882772","impliedFormat":99},{"version":"c0af90161ff3f25a95d11029fa4f486f3a541a00fcd026c9d010b662695d7521","impliedFormat":99},{"version":"64570d5562fc4741e7eeb24c60757be98c2e58aa74484118bce4df6ac59a8651","impliedFormat":99},{"version":"94b5161d14dddcdc370617bc3c3ae0ba5b181a2e312b9570e992f76e8ad4135a","impliedFormat":99},{"version":"58fb9077c1eb954daacdbd52bf831915076450f39888cf4edda714bca2216042","impliedFormat":99},{"version":"613a0e8239ed1f14aa4729cc733d43a0e1f2a7f2f7875af5215aee55655b6e22","impliedFormat":99},{"version":"618cea80bc8c79e91decb999d7bb5bbf6928133db9bb76a8f4df19a4d18e0cdd","impliedFormat":99},{"version":"aec18e32a40d13d4990cc0b2e505b8f653459a27c8b85b3743fa98358b03bcb1","impliedFormat":99},{"version":"73739f40eacedc63d85e344e8ecbcf2a291439ff9466ad0e1e8f4edad56ccc65","impliedFormat":99},{"version":"ba85485f6e163ec59385259ae7ee5be3167dbc092b0aab77ca8621ba2942f43a","impliedFormat":99},{"version":"c1747451983fcb7eacc2e6ddbc33024dcbd05f02c3b42f3ef85403aaeb84c35a","impliedFormat":99},{"version":"b6e7fc2eeab5dcc3f7aa96294479474b8d584f10a05b5f473638574ffaf914ef","impliedFormat":99},{"version":"b9dffe8c2cc3ea64e6aa81eec0b7250e4dbb9093ea4b296a249430e15410ad83","impliedFormat":99},{"version":"fc0b155fd95c7ebdc4acbf0012f9afe5cf3c8500f691efe874790de0741fe5f5","impliedFormat":99},{"version":"fdef563856017d9de5afc2e27ed3f8561a59711802123f6dc4cde707e570d8ba","impliedFormat":99},{"version":"34282efaad54b2b67fdcc479f19d8916ced7706d4a2a2150fe6ce495d343e6df","impliedFormat":99},{"version":"619695efa4494df83ee77ed818daf837a842ebcb93873b2024f19072b6d18209","impliedFormat":99},{"version":"4f3be5c128a12ebee37fafabd356c9bd5da5e30497b552df06a4a04523e2286c","impliedFormat":99},{"version":"94a501970c1926170fbea64d103b71780e4a74c26a96d2f081e258d2272c7010","impliedFormat":99},{"version":"a9e51a219e7a4b180e553b2f0b80620198f94fd00813b571483053b421a3a423","impliedFormat":99},{"version":"4f8e05a35f853f4a6f76169db8bcb2d25fbe47e1fe948c2545ad47111bcb641c","impliedFormat":99},{"version":"f9013dd3a5f8a78f7be9f189ceefd0caeb07d032d73d06edf5d323c5c012be06","impliedFormat":99},{"version":"fd5fdf9cec63cdc9b057589eecd950a4c00835f2c57819d4467cb90afb7ceebc","impliedFormat":99},{"version":"07f234c3b2d8259a3c8e043934e064c1d57c9b6b870bbc82995d63150658cd2d","impliedFormat":99},{"version":"70537c49ad0ba23281776a451ec0e9a3124ce0aa6826e7e2c71f2048153914e2","impliedFormat":99},{"version":"7d1570bc8a51259f43980b1e1bbfec62edfc8e56bd75a0f9f5a541df303beb2a","impliedFormat":99},{"version":"35c0302ecbaba11503e339c8d6a14ef99c33bebe45fe22348a51ea1f851f4753","impliedFormat":99},{"version":"7d0ee70479273910f4998d3db9c624cc54a7ceec1f2fc32aeb5dd1da26cc6ecd","impliedFormat":99},{"version":"ee99391e7c005b9792ed1c4ad78f63d5612ea248121435e2f19cad13cc772102","impliedFormat":99},{"version":"a63057e247853b6a27b900de357d3b2cbbb0205a746ceeaf1bbb08b53d37a594","impliedFormat":99},{"version":"54b715e3569938c71fb6ccd89b5c9d2569c67a160bf07e395afe71a8c99f6719","impliedFormat":99},{"version":"6c51831173ccc1a13f0b2e7cec9c492474ba762a67fa729f59faee88e5fef2a1","impliedFormat":99},{"version":"58f36965de212113b644068e12226e4ec4f3dc11aa8acff4bc0eb506fad853ce","impliedFormat":99},{"version":"6e280d9e7f99a769d91ea5f242404d32caae0c23241598b4447ad8e2f651d0bc","impliedFormat":99},{"version":"f91354f5e4bdf93914bd4d8d4c513a525dae7cc58c29374e602499cb59b45792","impliedFormat":99},{"version":"69eec18f3024da9245e6f8800661032de02849fdb82f4e5754234b9753ab753d","impliedFormat":99},{"version":"f508d9b5b7aa6ac0eb6c7166d8a163907670737ab6cfed72cabb18ed4d27e93a","impliedFormat":99},{"version":"72035a7a97898aa687e1226a0e42428fed98d0d269fc5afb1da4de3c614b6afa","impliedFormat":99},{"version":"afa8f9f695190917b8e7aa763b476a64c3f3818ad4e465eb84a5c542aa5ab6d3","impliedFormat":99},{"version":"bdb48a412742f28266e91f8b9c3cb93ab5e5fc4efeaab20ac23ee923d1ffab85","impliedFormat":99},{"version":"1971d324a3cbe55f05b7902adb6453dfa9c26676636961a004f7c493eb53ed68","impliedFormat":99},{"version":"8e7b4e9532df3f35e655c3596dc2a1f9e9ff645e265fe674f05948185fc20aa0","impliedFormat":99},{"version":"6394c04842b451114e283a46cff22eda53fb6cd38cef53157fb09a5477e14ce7","impliedFormat":99},{"version":"525282d1c19684b19c0ce67c09111eeb9ecddb75402afd2575b2c43c7b72587b","impliedFormat":99},{"version":"a29812309236ff935f2a25f7e5cc7c3a471879cb4e7a807d812ac7c0528aabf5","impliedFormat":99},{"version":"c0e4577ccc1f5d23c7ec9786194fe5bea12f10237ec63bbed5daef44a90ced7e","impliedFormat":99},{"version":"dcb4979825df9ee8d826545f011caf031f5143fdda9483ec1711f01cebc6dd08","impliedFormat":99},{"version":"cdca391f6e1c7e0a3c1bafed3515ce7eb93bbcc45957301b182d4b359f4dd469","impliedFormat":99},{"version":"5322996149800e888007de5157125010eb3311fdba699fff1137975c115035ab","impliedFormat":99},{"version":"31cf8f21b25cf65e0b76ae854c5c325dc4bb1658e95058bcf68d2e499f70066c","impliedFormat":99},{"version":"e6b62986b66e8f6a6db255e4d2646be1d2ae3fc14a0d39fc4bac6ddd9c579ad2","impliedFormat":99},{"version":"ab48fa147efe99bd6a50484b62119207eac0dc8d79011cc0238ab243778107a4","impliedFormat":99},{"version":"438fc2adf109b7be5ec9a92057b98fda3ef8d2be1a1846fc245d57afc57a2a50","impliedFormat":99},{"version":"ae6522bd249c23edd46831c93bb59ef402b396c3a11b8eeed1b2b6d9036c3e6b","impliedFormat":99},{"version":"68036037cdf6e6446983edda42e4222cb7725cb333b3b561cdfdf0582f22d187","impliedFormat":99},{"version":"ee2a299893b6d975f7b8d65b4d2c642e429e39f1fe1f351f42ff4fde0c34eca4","impliedFormat":99},{"version":"8d5b46732d8296ce8118fc25d13da98f1947800b9dc8b6f0b4b2e8543ec368ad","impliedFormat":99},{"version":"e9ee952913d691cbcaa172cb143691391b8dc75b6f5a60ee35c92a25ef6479f6","impliedFormat":99},{"version":"39e2c467f0c117fdd706712396f80b4bbf4ebea829a68096e0d6d62366d03eb7","impliedFormat":99},{"version":"15906c60cd7e6b25f0cb90580cc1527584a5fd3d5973daf55a10ad4587510c64","impliedFormat":99},{"version":"406ab0f368fcd5ffb379b4c0fa84b3675fbca834c2c954591552462568994cee","impliedFormat":99},{"version":"656be0f49f0d32f32dfb42b4585494e48138c15e3e56ed7402b36b9316cc5176","impliedFormat":99},{"version":"eb8a51a88c818e8e3d8b4761346e886ae46fdb8179d7938236bdb6e5e26bcc53","impliedFormat":99},{"version":"7f7059a644e3499bf802d9c252b1d99b6bdc21556f438d7693758984877fdba0","impliedFormat":99},{"version":"525f80295ebccc0b8184bd7e03dba432371f3df96b1f88399112a230f1c48e82","impliedFormat":99},{"version":"b355b8f50ac9d87bf458fa0a2762e36c2a395691bec0c21ef6826cc631dcdd34","impliedFormat":99},{"version":"822399a2755ea28ae3d97f9ac2c20eb41148a15e014dec021988d2cc514f656d","impliedFormat":99},{"version":"0b1e14cb06770ed81cf2a7085c973fcdacfbf96455fc025aedba9539f724afed","impliedFormat":99},{"version":"f6b6aa4f55562260b06aabb08367195905565e5db2b8d541f4cba5a522d05187","impliedFormat":99},{"version":"04a49a60381726dbc52583896f1e888a727ea3f15ea719ddac3f133c699bab1f","impliedFormat":99},{"version":"55f38bfa0f4091158ed411e4a54a94bde8ec5105a48d468326350a6ff98c66f2","impliedFormat":99},{"version":"96112614a8d983c6aac682b05815b82cd5d2af174713f95df46b7a5d4393adcc","impliedFormat":99},{"version":"47178e74335c75f16d18b8f9997326d65774e1e490722c1ac592e8f62d37e63e","impliedFormat":99},{"version":"5fb86ff855a340505dd1e5a0c2475696df7865f303323d7e2d005141ea73a461","impliedFormat":99},{"version":"dfc8682fae1326ef7106770fd67db712f21ab6b812c693dcce24a451d951c1e2","impliedFormat":99},{"version":"1852cfb5ae7c11bba23047e44e198416c29334c8f8b832260964c350e00db46e","impliedFormat":99},{"version":"c69baa2cba8d9f66f7cb38cecfca8c5924d6304bb59b85da457dd724a46e8548","impliedFormat":99},{"version":"3cbe672c15126cde626ccf301ef8a5b4517f2e40d63cb4234cbf72de687260e0","impliedFormat":99},{"version":"1637612654e83a9027f2ce3c21609197bc33483029256cdc4e573e8ed95d930b","impliedFormat":99},{"version":"1402212882b04813ea796e08fd07bc53409bfe4262ae72d3232e685b31cfcc02","impliedFormat":99},{"version":"fd5b89584e1132fd39773ac3d10c8003d975640fbd5f317018b2f9e3105569a1","impliedFormat":99},{"version":"c80a1f303a1f70e1c84faa586318b46badfc440a8dbfe179d34cc334fe9da4e7","impliedFormat":99},{"version":"76c1d19e111d0823e8dad68a6b2a3d86ef73545f8a0d1cb4ed9e86dab55c5f67","impliedFormat":99},{"version":"5ad24d0e258dfdb0c8293415aca74f31f28f75863ca11d58547f82dfde2efe14","impliedFormat":99},{"version":"56d26c22fbe3af215f12b5044cd8a9a6b9501c913d20de70e26607df6ec7195e","impliedFormat":99},{"version":"f580e4a5c35390e943327174a1fcbdcbe1418c7f565789287e70b5468f3e59de","impliedFormat":99},{"version":"2f725113ae18657257f08cd2837c40e47d76c4018ed791aa9e9776f1933540d1","impliedFormat":99},{"version":"523265b33f1992dd3c53594efff46af60cbb160b73bff0a576d39cca6e1ee31c","impliedFormat":99},{"version":"8329ddcba0b13dc3c59bc9df2b1e7f3559ec42336fc7591fea51143f895827f8","impliedFormat":99},{"version":"ad88f437c1230d635e5ee3e535176dd291985fd55032f4e0d1c986f36ea54da0","impliedFormat":99},{"version":"4fe3e1aea7c6e4ac1ac824814152df4d0f63f70c287aa6a45796a1fd794cba47","impliedFormat":99},{"version":"4c1b974cc791e3c5b6d85786933258725b1bafbbde2c06f8c857fde6d1e1ec78","impliedFormat":99},{"version":"4d4fd98a081f7646284761857316e2d9f0b63666c9fd2e2e1d7b782aac7b28f5","impliedFormat":99},{"version":"7a9fe3be04c4bba6773310bbed8b62349479b36bb9e984b3482ab7df6b166238","impliedFormat":99},{"version":"16f0d7f408b62da56e251e90612a169938867cc9d242756738833ddf1fc2d481","impliedFormat":99},{"version":"c51568c9c91356250e18517b1188c6aa69ff47bc08a3bf24cd9439134fbdf683","impliedFormat":99},{"version":"72fbd780809660f9ab66b163f404177f034fe946d02b76a99206b95610577d59","impliedFormat":99},{"version":"1826918b53908dc00d488bb0dd0e5ed029dd08e0bfc9188d265bfb0053f5fb9f","impliedFormat":99},{"version":"5d7597bfcca496303256fd44744c6de4531233fa3ac03e6cc1e2d945f6a6d6e5","impliedFormat":99},{"version":"2bb8a9327d7ce4e43caa06281b0b2ddd2ca80af1293ec6ba2f339ad4932cc206","impliedFormat":99},{"version":"127a4bd80467304fb1a51a76b30e297f428fe1494b7a14d9984cf56a02f2b331","impliedFormat":99},{"version":"1c5a9c6d973bc268522676437ea5f1b24a27f736ccd8af8e74f1bf868e8dbbd6","impliedFormat":99},{"version":"3cc5c94b876b4c63eaa676bbced5bef59ff9812617bbc4ab659fa065a32c54de","impliedFormat":99},{"version":"36a8ae68755fa991c0f1685bd83a67362436ed2a6e8c1a8f32acc7adffd6168f","impliedFormat":99},{"version":"6db5e9847f3760e045bfafeb945cabd5acbf16ad51c3d066c78acf2844aee7c8","impliedFormat":99},{"version":"6484fdf2b87d910c6b21c6bdfc9d4cbcb936e9ab9c2a4b53e6bfa340cf7bde98","impliedFormat":99},{"version":"f73229533c0e1695f9c75a191a5be44989ae92ca77342b713af856a97e52e498","impliedFormat":99},{"version":"f7f312b313319eb4c92cdd342b04f3b3912ed8ab704414c863129177b49447d2","impliedFormat":99},{"version":"165759e2ed45d7c271753ce028ad801ae857aa8fbc6ed8a977cdd5b0518d057d","impliedFormat":99},{"version":"d96984a14d656474db73039a4407ece06d5022fb0eb30571551e62c8c6f81a59","impliedFormat":99},{"version":"119ac9413c8a428219878da202375e364b37dfaf2b47a32e309aec8d77e8f197","impliedFormat":99},{"version":"b0672eaba1a8cad5e85defcae3e0325e0ad3a6ad16af7e6aba509f0de9ae9a3b","impliedFormat":99},{"version":"8980fca73ab1cfb4923c9311587f26d2b61915b3f0ae94e84d3f108e41904471","impliedFormat":99},{"version":"5a9a55d4531486b41b7fb9475041c068553719cd2b93a5745e01111b0d836cdd","impliedFormat":99},{"version":"bf4f74ad2c7b5da8e34b85852a258ca9003710785f5a3757f2523d93bbdb260a","impliedFormat":99},{"version":"cd8871a352586220b17d6a764af77726e3bcf563adc43a570bdb25f8a134deba","impliedFormat":99},{"version":"472edc7768eae3d1cdd6f5527f9faa60636d40b39f1d26c9b255ba7d0f354846","impliedFormat":99},{"version":"a9751001b01ed9ba9ed6515f720c486d353f6c6374ea528c98caf6cfb9caccab","impliedFormat":99},{"version":"e9acd11c45ef37d94f1b9388c6a8519cf8ab7eb53ad3cb8cf4184764711b33b2","impliedFormat":99},{"version":"676b88d0772615ae9afa3903de127c23316a44ac41002ff53685bbe68722f355","impliedFormat":99},{"version":"acdc1359ae838f192b6d94cf15a3e8cedb99a9561922951c64c413557756e3c1","impliedFormat":99},{"version":"fa5d8cb6eb7afb104fd94847dd8a739029cfabded225f93b6f09f5449b6794b7","impliedFormat":99},{"version":"316f1486e15cbf7896425f0a16dfe12d447dd57cfb3244b8b119c77df870858f","impliedFormat":99},{"version":"bef4cb2537c6229e68225e976c9d7d894ae9000b351f839867fa9d2928ef944d","impliedFormat":99},{"version":"30dcc2f014b6ae7c0e0337a87c70cac19cfd1ffe8982dbf28e37411105d32594","impliedFormat":99},{"version":"8bd7fd57f990ff10242a6acd6f20f4d7a0a6a2fa0494f3f4680add55b867e0ab","impliedFormat":99},{"version":"f943375bde83d32a00db5fa8ea97b66440e5b30e89a0ba4d30c88d49229f4f6d","impliedFormat":99},{"version":"4ab7081fcca46702defd0e6e59be019981d9862735cf3641cf8a676a7a260687","impliedFormat":99},{"version":"955faf3ddeba7f9f1cf0d3019e61fb7f256833312398e340c5b42fb2ad8ad126","impliedFormat":99},{"version":"061638545629f8821137f657fa83b50f1fc3ef24c2eea3f489f2207bd3fe8604","impliedFormat":99},{"version":"2d6fc83d9e8d8485bc153a64058691f7483710059c3b693f6d66282409de3941","impliedFormat":99},{"version":"30ac578e4e17562acc6b4a3bb1aaf3a82a6659ab86ebc6f885a894aa3ff69d2f","impliedFormat":99},{"version":"7ed24e31337a41691afdf0ed7c051bc60c1b232ec28d118c1df5eedbdf278379","impliedFormat":99},{"version":"d3a2f956b8949ab7504d1ff606c5db6f0fe878e4da6992d9e53994eb6a818780","impliedFormat":99},{"version":"bf9c521c79f941180501e9c62c05020fc07b2c82b364b3f00cb76f54f8aee2fa","impliedFormat":99},{"version":"9c98c8c56a0f74be89122bc0aebe42d00936b04bba2aef2bc65b3b97e34c5b96","impliedFormat":99},{"version":"528797ce38e264de1a333fbaccadb315baef5485eab44c4e0e85097c1b3c86d7","impliedFormat":99},{"version":"82abeb2110eeae7a9ec63d3d44b43b4cbce2e684132e4403d0995785fe981b09","impliedFormat":99},{"version":"af437ea71c5035e813d10b56bc72321f1375c42f88f2fe0696717132d040c6d4","impliedFormat":99},{"version":"4bdaf0ba0f4d2323b1cc4ebe39a1f78d9fa385d918f4f8d4c4747cc5f72524f6","impliedFormat":99},{"version":"4c700a8ce85d38625530a4c7e026ffc10436fe8101dc392f09b331ad2c32a9ad","impliedFormat":99},{"version":"6dbebda906deea3021cfcebf32f0fe178eb917fc2c475f1cc8c76ca4a3d7f146","impliedFormat":99},{"version":"ce48d094c10f12813adebaaf391bc1310c012fcb13fc6c88b29b83ea1b51a6c5","impliedFormat":99},{"version":"6a0c2673328ac13d382c06191bbcee6c00686c65e44e6a78f84819f896fef3b9","impliedFormat":99},{"version":"8ec352eabf812f3fc4ae851be15ef57753436976060bf8704149bec2d4bdacf4","impliedFormat":99},{"version":"25103a0bf17c0419062cf1376273b26fe5262aa34da7bd58584045a5e18b8a4c","impliedFormat":99},{"version":"c164152a56d491a212a6e93531c49f6f957e9a38b4bb732429a73cbb234f9cbb","impliedFormat":99},{"version":"e726e7fee8e3297e15aff8e1668762323588e119aae6e4698da6111628af74a3","impliedFormat":99},{"version":"1aefe473a947c1178322a3526f52a83db490c8cce9e57b07c0224688be55f264","impliedFormat":99},{"version":"dfedf320784a8ebe0f9b0dade5fbb6adb95f624a63bbe5760b8593f41992657f","impliedFormat":99},{"version":"ba56cb9be18354c664754abdb7b6f5dd262a7883d336018459e1e54f24586916","impliedFormat":99},{"version":"ed85a7aa3450739e9e0c4026e93e16b89ca83eb3fe7abc8527ad6dfc640140a6","impliedFormat":99},{"version":"9bb3e67ae8e93957c194b32acbd8580cf17a9df8ba44625568190bfc16e8c15a","impliedFormat":99},{"version":"4f6dc8c84a068552e39ce66235ebe650d43863b42dcb7835cff33df1b1ce6e51","impliedFormat":99},{"version":"1381f2919bf6a8b2d891ada612c23784e17cae6300db12fbb7900e9381ecf4de","impliedFormat":99},{"version":"05bbf247a54330ced6a6a821412224bdae0869f0cab0b8d4d5e49f1a6f4577a6","impliedFormat":99},{"version":"8124828a11be7db984fcdab052fd4ff756b18edcfa8d71118b55388176210923","impliedFormat":99},{"version":"2b39c6cf59088713babbfc3e20ee85f1375d40e66953156fa658346b8346f24f","impliedFormat":99},{"version":"69bf2422313487956e4dacf049f30cb91b34968912058d244cb19e4baa24da97","impliedFormat":99},{"version":"6987dfb4b0c4e02112cc4e548e7a77b3d9ddfeffa8c8a2db13ceac361a4567d9","impliedFormat":99},{"version":"5e2ba3d18d78aebbde1f34bde356e41e9c76eeaeaeee56a37036596a9eff4211","impliedFormat":99},{"version":"8280ae8ccc0493b32d1742d585357ab9f0a508ea050af25a5a20d64010d0a5cf","impliedFormat":99},{"version":"7adfd9f9056ecd4ae6c65fde2a98654960c662714c73f048478959d04c09e144","impliedFormat":99},{"version":"437b7613a30a2fcde463f7b707c6d5567a8823fbc51de50b8641bf5b1d126fad","impliedFormat":99},{"version":"63ea959e28c110923f495576e614fb8b36c09b6828b467b2c7cd7f03b03ccf9f","impliedFormat":99},{"version":"1601a95dbb33059fc3d12638ed2a9aecff899e339c5c0f3a0b28768866d385b4","impliedFormat":99},{"version":"56fc978580577d30f4c2cdb5b1eb9217b66ed66537dd27141256f426e4b8dd68","impliedFormat":99},{"version":"2c5413050a2580becf9d82dd7e3006b95623e96f145356bf73230cd635352f70","impliedFormat":99},{"version":"860bedc71ead192ea4a0ea5ef4686e65724d14b391ebd1a6671a7044e6bd8e15","impliedFormat":99},{"version":"7c0a845bee4a084cbb8654709f48e5f13e2f6d45e5e2dde7c57cadf79fd9e3d5","impliedFormat":99},{"version":"7fa6fdc6eeeb3850e6b3166836f8c9199594c4f4bed3cee02cac0ca33d71894d","impliedFormat":99},{"version":"e53757f3e6688e8be16b36ccbeedc85637e607353fc67ff7b6665d6005aeaa12","impliedFormat":99},{"version":"88ba2660f5b024c7afd02ea700bc0c677687e17e34f0a94c3256ddb55e0f1c5d","impliedFormat":99},{"version":"7bbff6783e96c691a41a7cf12dd5486b8166a01b0c57d071dbcfca55c9525ec4","impliedFormat":99},{"version":"c2c2a861a338244d7dd700d0c52a78916b4bb75b98fc8ca5e7c501899fc03796","impliedFormat":1},{"version":"b6d03c9cfe2cf0ba4c673c209fcd7c46c815b2619fd2aad59fc4229aaef2ed43","impliedFormat":1},{"version":"adb467429462e3891de5bb4a82a4189b92005d61c7f9367c089baf03997c104e","impliedFormat":1},{"version":"adb467429462e3891de5bb4a82a4189b92005d61c7f9367c089baf03997c104e","impliedFormat":1},{"version":"670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","impliedFormat":1},{"version":"13b77ab19ef7aadd86a1e54f2f08ea23a6d74e102909e3c00d31f231ed040f62","impliedFormat":1},{"version":"069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","impliedFormat":1},{"version":"c1a2e05eb6d7ca8d7e4a7f4c93ccf0c2857e842a64c98eaee4d85841ee9855e6","impliedFormat":1},{"version":"835fb2909ce458740fb4a49fc61709896c6864f5ce3db7f0a88f06c720d74d02","impliedFormat":1},{"version":"6e5857f38aa297a859cab4ec891408659218a5a2610cd317b6dcbef9979459cc","impliedFormat":1},{"version":"ead8e39c2e11891f286b06ae2aa71f208b1802661fcdb2425cffa4f494a68854","impliedFormat":1},{"version":"82919acbb38870fcf5786ec1292f0f5afe490f9b3060123e48675831bd947192","impliedFormat":1},{"version":"e222701788ec77bd57c28facbbd142eadf5c749a74d586bc2f317db7e33544b1","impliedFormat":1},{"version":"09154713fae0ed7befacdad783e5bd1970c06fc41a5f866f7f933b96312ce764","impliedFormat":1},{"version":"8d67b13da77316a8a2fabc21d340866ddf8a4b99e76a6c951cc45189142df652","impliedFormat":1},{"version":"a91c8d28d10fee7fe717ddf3743f287b68770c813c98f796b6e38d5d164bd459","impliedFormat":1},{"version":"68add36d9632bc096d7245d24d6b0b8ad5f125183016102a3dad4c9c2438ccb0","impliedFormat":1},{"version":"3a819c2928ee06bbcc84e2797fd3558ae2ebb7e0ed8d87f71732fb2e2acc87b4","impliedFormat":1},{"version":"f6f827cd43e92685f194002d6b52a9408309cda1cec46fb7ca8489a95cbd2fd4","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"a270a1a893d1aee5a3c1c8c276cd2778aa970a2741ee2ccf29cc3210d7da80f5","impliedFormat":1},{"version":"add0ce7b77ba5b308492fa68f77f24d1ed1d9148534bdf05ac17c30763fc1a79","impliedFormat":1},{"version":"8926594ee895917e90701d8cbb5fdf77fc238b266ac540f929c7253f8ad6233d","impliedFormat":1},{"version":"2f67911e4bf4e0717dc2ded248ce2d5e4398d945ee13889a6852c1233ea41508","impliedFormat":1},{"version":"d8430c275b0f59417ea8e173cfb888a4477b430ec35b595bf734f3ec7a7d729f","impliedFormat":1},{"version":"69364df1c776372d7df1fb46a6cb3a6bf7f55e700f533a104e3f9d70a32bec18","impliedFormat":1},{"version":"6042774c61ece4ba77b3bf375f15942eb054675b7957882a00c22c0e4fe5865c","impliedFormat":1},{"version":"5a3bd57ed7a9d9afef74c75f77fce79ba3c786401af9810cdf45907c4e93f30e","impliedFormat":1},{"version":"ed8763205f02fb65e84eff7432155258df7f93b7d938f01785cb447d043d53f3","impliedFormat":1},{"version":"30db853bb2e60170ba11e39ab48bacecb32d06d4def89eedf17e58ebab762a65","impliedFormat":1},{"version":"e27451b24234dfed45f6cf22112a04955183a99c42a2691fb4936d63cfe42761","impliedFormat":1},{"version":"2316301dd223d31962d917999acf8e543e0119c5d24ec984c9f22cb23247160c","impliedFormat":1},{"version":"58d65a2803c3b6629b0e18c8bf1bc883a686fcf0333230dd0151ab6e85b74307","impliedFormat":1},{"version":"e818471014c77c103330aee11f00a7a00b37b35500b53ea6f337aefacd6174c9","impliedFormat":1},{"version":"d4a5b1d2ff02c37643e18db302488cd64c342b00e2786e65caac4e12bda9219b","impliedFormat":1},{"version":"29f823cbe0166e10e7176a94afe609a24b9e5af3858628c541ff8ce1727023cd","impliedFormat":1},{"version":"af2859c14db1493c3ea47c3c61d92bd90d720a5c0922c7bf67aff8c2579d04ed","affectsGlobalScope":true,"impliedFormat":1},{"version":"2faebfa830ae4cfbfb58e48b0ec20a2a63882d776f0ca36ec7155d45cf1b7f2d","impliedFormat":99},{"version":"dc6e3ce502651ecc523590588213bfb986c04b60f5265d37f76662b824425903","impliedFormat":99},"7de1a28185baf0176bd127f6cdbc393f419a52bf0b88756986751e6fdff3520b",{"version":"e400fd1422b244efc65d9cb0c48a2febd9f616cda1a59bdc5cc9ad9af019191f","signature":"4b96dd19fd2949d28ce80e913412b0026dc421e5bf6c31d87c7b5eb11b5753b4"},{"version":"155d2e6caadb7de14cd4c337164f7febade2bcefb7645c7094158cd80e4b9c1f","impliedFormat":99},{"version":"fcc60c64e9ff115a2ddb9fcaeb19d45668b353ccafc55054588c0ffb5bfb7a53","impliedFormat":99},{"version":"0c2f0f87ad46e9b8f458f4392e355a07d8231d07ab4648c9cb8b108d3c947bb0","impliedFormat":99},{"version":"d8bc0c5487582c6d887c32c92d8b4ffb23310146fcb1d82adf4b15c77f57c4ac","impliedFormat":1},{"version":"8cb31102790372bebfd78dd56d6752913b0f3e2cefbeb08375acd9f5ba737155","impliedFormat":1},{"version":"8c286b21cad586a26169a5dba15d2705baa54f226d6c2d4345a07ff7267fbaa1","signature":"f93266a224bf76eda2758fe9853a6ad4033c7c96e76bead2f657eb8409b49a78"},{"version":"afe7cd5d9653875a212af35e6b698ce7afa03ac01bfc96abeb164618dd36683f","signature":"cf366f6ce3416be02ad556b0d9a0b2e6b1d61e5afb5d6bbda37b817ff79599ec"},{"version":"a622c1cb5b9010d4cec126970a350c023ff889ba6828666a00a7ecc6422d68eb","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"61364ade746ea1645fcf6596f4ad192da2b363048bf037c867a56772370e7a2b","signature":"a7b4b83af52bdb2fc2648f92e2127831b85550256d61ac97cfd2b4e67acb5c62"},{"version":"ba8a633546c5af05c60a53ea9a9649234cbdd559aae0301d0fd7645b05b05d9c","impliedFormat":99},{"version":"8f8d0c92fbca772fd14f6e6aef274f3695e79a39696a2f235c6764a4d730775c","impliedFormat":99},{"version":"4c333af68c3e9ff249ec0cc325498c8b3426e3942eaa4021ec12b0b39e2a36ee","signature":"00937709cd1f0a80c131add145e7172c6914c10bd87c12c62fc8a913556a613b"},{"version":"fe93c474ab38ac02e30e3af073412b4f92b740152cf3a751fdaee8cbea982341","impliedFormat":1},{"version":"3255b97f3f24af29c79cc1aa88004efb13b6285ebdde0a567bf32e19bb65250d","impliedFormat":1},{"version":"1e00b8bf9e3766c958218cd6144ffe08418286f89ff44ba5a2cc830c03dd22c7","impliedFormat":1},{"version":"ac5f571dd7f1daefbed00a58081dc72c3a3da67c63644ab63f35e5f98b0d6f72","signature":"71f255c282738f3d1bd895a59df9a7270e2890169778e8e9f45032469555ffcb"},{"version":"b8e049e11e28043c79dab4129c374bdf419fd850883dea6728115ee338504537","impliedFormat":99},{"version":"56c7652b9e41b2acf8fc249f13bbf293f2fd5d20a6826a779fb13f2b41310285","impliedFormat":99},{"version":"c3a167d97f273863ebaab83d2542d6f65ad441c1ecd503941380ade6e1917d5c","impliedFormat":99},{"version":"7850d6321a180d766be2135754e02dad1abdf4c838c68af9a209bd1f58b65f4f","impliedFormat":99},{"version":"27f7e8c28ea53d110d4a4e3a365736dc2cdf2c46e3aa02e48c5ec22207123b9d","impliedFormat":99},{"version":"c5ee44dca52898ad7262cadc354f5e6f434a007c2d904a53ecfb4ee0e419b403","impliedFormat":99},{"version":"cb44dd6fd99ade30c70496a3fa535590aed5f2bb64ba7bc92aa34156c10c0f25","impliedFormat":99},{"version":"1dd1b5dbac5619a8cbec1534db4912fb630347d360083750dad29cf438a94118","impliedFormat":99},{"version":"0a7e9d7d7549e76e20b61d5ffeeedda9fc221db143c08980e9c55cf9909722cd","impliedFormat":99},{"version":"c350a902358c95ed32df253305e044aa109e96adfd66528c5d03fe75a45be7f7","impliedFormat":99},{"version":"553b96a938c932097c0416f529371833994889510c185a8b45630420428c1add","impliedFormat":99},{"version":"ed6fd0951de157501bfb5772742b7dddac9ca8e53f1ab201513af8c91f92de66","impliedFormat":99},{"version":"2ad00018e95065d0b14bbd4dcc4ececec08d104860651668452f5c6305692b41","impliedFormat":99},{"version":"c4dd27a0c3897b8f1b7082f70d70f38231f0e0973813680c8ca08ddf0e7d16c1","impliedFormat":99},{"version":"b23fad2190be146426a7de0fa403e24fccbc9c985d49d22f8b9f39803db47699","impliedFormat":99},{"version":"6ad179a688d2cc17c4450ff68d7736487513d84de3bcf56012be7695193abe0c","impliedFormat":99},{"version":"895d89df016d846222abdd633b1f6e3a7f4c820f56901dbda853916d302c16f2","impliedFormat":99},{"version":"eac382beb3caab54de8539a7a012aebca873032987acca9a6e60b65b8c5139bd","impliedFormat":99},{"version":"ab59a5f7526fc8309ee5a5a28e3e358f6ed457bdb599dd6542becb706c0419dc","impliedFormat":99},{"version":"3079f20851804cfff72cd1b8ca93d8c7a14ea60465176c56dc7ae713498d8c7d","impliedFormat":99},{"version":"986fc8888567348fbc70abaaa8e41f58f2b0fbcbe0d46f556389cd9750a7e406","impliedFormat":99},{"version":"da26ce433bffc096a52108d0ef4ac55881d13d70b0c371738d73cbd67591bad2","impliedFormat":99},{"version":"34b6847b168dd7aa74c772c0f5c68afe7c6b35348f5d3071681c1f26e276318d","impliedFormat":99},{"version":"5e8dab7ea4056d557b1ac48dc2905b97669a5fdea37c3c79a5563e2e126f1b29","impliedFormat":99},{"version":"9f2a41d65629c9d3218d3451b5b73dd96956f9078720e5ea2acf469ea6895240","impliedFormat":99},{"version":"2d1924bb4fa9f785437228ca40cd05162795b36295b9addaed7aaef2e8e5c7e5","impliedFormat":99},{"version":"99d62f5ac0911ef2a22c1a67a69e8441e1b409d1773837ba58361e8d574b4152","impliedFormat":99},{"version":"34c57354a2a1b8e654bc730ab55aeeb857ee342ebe848660a078803e0bbd940a","impliedFormat":99},{"version":"7c1c1d4c8fe888eecca43aa8d1bb12811c4915ffd27718b939c9bb127f2225bf","impliedFormat":99},{"version":"6977e71491b7a8ea4b4ae158be439ac1a3a596e143feb58a24ba4a44d0b15cc5","impliedFormat":99},{"version":"3b25ebad946a53bbf61fa93f8d5ff1dfd7b97ffa8b45cab0af0d1d98d4764940","impliedFormat":99},{"version":"5282413ed863194cc7cd873fe3f485168ad08658a91bf026c2a0a8e4db900196","impliedFormat":99},{"version":"84aa893c666ccd0e5a15b3fb7fd278b10fcdc0b6e1911fb46a711e3fd649120b","impliedFormat":99},{"version":"f5c0229716cab5de0c590cd12615c347ef2a6e9793381272f1b074d67ca5d416","impliedFormat":99},{"version":"28e51826c19447a3354ac4fae5023326269a2a59ad735e1c09ec42aff20acc1c","impliedFormat":99},{"version":"38f9e317ee90e3ad8cb39d4aafe8afeb784bcb84210bfbb7dd8788e769f1afb3","impliedFormat":99},{"version":"7ce4403d02c6b349ad44d71cd3e016013046a6509def1124cf6b47247d393163","impliedFormat":99},{"version":"b450cb686d0c95f4a828599f642f2f1a8de63a729678dc89dfcb06a52aedd123","impliedFormat":99},{"version":"7c16e0b561a1b5c3215896d7ef2029e73f1b1431a0e8eeb000a8f84d4b8e3c8b","impliedFormat":99},{"version":"815fb4112c165f37fd2732d5ccd19f5e81ae33b662fb5a3af933b8bfd7954b32","impliedFormat":99},{"version":"cda7c95ef6f305bdab792edf17cba63f8020898de687d94230735b702ede2c44","impliedFormat":99},{"version":"9a0514b8d9fc823de2efa2618853532c0587e6f2acf177574ac937452a57ab0b","impliedFormat":99},{"version":"d45ef31be79806fcc75cd3372344f0a9e192bfdc74a4f317d4067f905d5ee706","impliedFormat":99},{"version":"fe150492b61ddafa7107def7794e18c699c3251ed4bc5c396a40bb6f062caffb","impliedFormat":99},{"version":"6613416863489144bd552f14860da0156bae705b15431342d910399548c954d3","impliedFormat":99},{"version":"aba8091760d701c5e63a48fa98eba3c62c218e89e3bda7880feab56c6f3e6f09","impliedFormat":99},{"version":"b989caa8ec6c445b5449405d9306201c7ae6e620c45d58b65db162f766b00d18","impliedFormat":99},{"version":"a3c5413ba38000527d406a57f231838bff7b9b64c060a2247ebb972ca277c86b","impliedFormat":99},{"version":"9cc9e426a68c265748a862565ad3d0c50e3b83f95cbf729c578b15f0fe56960d","impliedFormat":99},{"version":"a772c1d8f7fc698119d0f1f959fbb156df11016290e17a39695f5bbb3988716d","impliedFormat":99},{"version":"956303bcd7c36333c6a57e35bcd68619a2e166b610f76338c02ee38e78d57a96","impliedFormat":99},{"version":"b281826abf5f6ed80f6c7513cc18d99604ed82dbb0c1c7129e8f38151ffb4120","impliedFormat":99},{"version":"4f0e1d79411d135edbc78d544b226de9e11c7ecdcf09518c5302d49517d0c4ee","impliedFormat":99},{"version":"edf177084b82c6fd23cb21c31b205929cbfb3cb3683da0ef943749aa01c51996","impliedFormat":99},{"version":"db7da89b083e353471f3911adb59288c2d4bda401b25433943e8128d654e0afc","impliedFormat":1},{"version":"fa2c48fd724dd8f0e11dfb04f20d727a2595890bfa95419c83b21ed575ed77d1","impliedFormat":99},{"version":"ffe2bdab10cc9bb3121784020df2d2449b9344c965a5d96857f9d7e6fc984322","impliedFormat":99},{"version":"20be44c04e883d5fe7840d630a8d0656e95b00c2d6eebab9ab253275e7170534","impliedFormat":99},{"version":"cc2958d8abd86edcdf05542bb1b40ba659db5bc5a2560720cde08e8950e63bc1","impliedFormat":99},{"version":"e44e0ea195d68c0aea951809bda325322085008c0622fc4ee44db5359f37b747","impliedFormat":99},{"version":"21053659ad72fe51b9dfbde4fa14dbbac0912359fa37c9a5aa75f188782b2ee8","impliedFormat":99},{"version":"828f8b38dff4e5c47b0112cb437da379c720f0360d40d392457c9775f30c8ae8","impliedFormat":99},{"version":"e297bdcb7db008d8d7d0481f2c935a9f7f0a338f41b7e5d1cec6a7744140a4ff","impliedFormat":99},{"version":"ef816ad6735a271c4c8035a1914c3a9beaaa90b3c174da312d26bce8736e56ec","impliedFormat":99},{"version":"5edf075cf255e9a0ff9693d5d5bb8d25065880c6e3c04a4d801bf1ef75ae2ffe","impliedFormat":99},{"version":"c1c545c407e4ad166b8285ae063ffffdc8f33ac38504acbaae8cc5692b9da7bb","impliedFormat":99},{"version":"b52f7568bb9b00bcee6c4929938226541c09d86b849b8ba8db2fe2a8bba46f49","impliedFormat":99},{"version":"d42e1872d53ebb213e7bbe15e5fecdcaa9a490d2f2a2b035ee9cf4a6d3f1e44e","impliedFormat":99},{"version":"9ab8801ec29c20243d783cb25b278af9ac836e4a65e3142838bfa82f98652b17","impliedFormat":99},{"version":"fd40c454d56e1d14e60ce13f3bc60c7fdb9bc70c6ef9c7bfafec1f0eb5d8075b","impliedFormat":1},{"version":"155ced96d70533d95c481061e2691802fae7cfb96869d7c85ac8622f53b51cb7","impliedFormat":1},{"version":"f4272c1409ba5ce42d17be35575083f37dfe282284cc5e350d5fa60481ff44eb","impliedFormat":99},{"version":"b7bd70307671536c735389e0a1748555c438c392dfceb6f2ac3aa0a50ca82530","impliedFormat":99},{"version":"5589e7f5a94a87a8dfc60e7bc81a610376925053a659f183606c3d76d3f92f84","impliedFormat":99},{"version":"d4a98ba517f71f7b8ab85f158859cdfc42ad9926e8623fc96337014e5d4dbb5b","impliedFormat":99},{"version":"94c33d70bcda3c3f98b8262340cd528344142133dbc8fcc7e2d4b2589b185db7","impliedFormat":99},{"version":"d11667aa2a6063fde3c4054da9ab98e3b9bc7e3da800beaca437f1eff2a17fe2","impliedFormat":99},{"version":"f3f79393ad9d2e7af9d36f2e4a9b21e89b8a3113fd184da2d8b1ac19086cbd90","impliedFormat":99},{"version":"eb232b9056d7407e248c5870944a5fccf7074d93809bb95ce7e010c77a39daae","impliedFormat":99},{"version":"f5fb9448b302836cc9cdeb2873af6535ec5330fbed104ac8fba4dd62f047a6a1","impliedFormat":99},{"version":"8332369dd6e1c14253cc3e199b2bf3ecaf887b5f55355b754260464abd710ba6","impliedFormat":99},{"version":"f14ca2879d5567141bd0edb2f4ddd1dee0ff9a59b772c48d8d61a01de49d666c","impliedFormat":99},{"version":"b9d9ae781d5049e168e20de0fb268a1461bc028ab6f597d7b9cb785f2f417f57","impliedFormat":99},{"version":"6c30925bb60342182cb75758dab585495418f806a74911b4a4c13b8e5f5a5e1c","impliedFormat":99},{"version":"885f283fffd4502b930e32663436c63223c7d9a422739fe2c6a672c2c5fad424","impliedFormat":99},"2d5f8312bd3a00e4fd437b187a056ec6f69b47958d78bff05dd8053deb4f9a2c","db177073d16a4393c7a96bcdc3a2a904e88c2432d54d138ca7715cc431982c17","b0c8d708aaa165b10633bb6181dea1af4b9976a71ad001d75f42785ddfbca458",{"version":"af4b65c62076b306207059d0747d0829b1a8f90ed2b969d95cfc045371aa9b58","impliedFormat":99},"e808770c9784c6782ab0538144bbdbe058feb27fb55ee952ffb10f09960cdcba",{"version":"71569f0c75a2a8bef0d5fded1490a109738d6445a545462f11ca833e450f1279","impliedFormat":99},{"version":"a999bad9add1841f11508785af282ca59730f0b06648b5cb0af605794f54a4eb","impliedFormat":99},{"version":"1260194c1f0de8c2984a431970c0d20c9d61f0448043bab5bca73dbd2773d6ec","impliedFormat":99},{"version":"408c6f3cf8ce0ae09c67aaf1b4dc64553b403e45d8c39420b2df56d80c0418c0","impliedFormat":99},{"version":"30ff7e28cac05f6e7366f9d88aebc3612acf1184f5b3e28d0f7ef0cfb0d77a20","impliedFormat":99},{"version":"8537a118c88490d5ac464bafd0d112388e3916317504360c0d4799779d70ca3b","impliedFormat":99},{"version":"c1c237dd2a809a141608e0baee0f40b797e24f5fa3870fdfdfeedaa1cf120628","impliedFormat":99},{"version":"916ae2004975ce782e32b89cca95ff478215c5bd0f132a11b52d716b3d7f8686","impliedFormat":99},{"version":"689ea0a46408e4e0b2dfce3e09f74a7188b88068b6e41e108a3e29b8a7d1b025","impliedFormat":99},{"version":"44c7f72b03940624ffb65fa4aa45d330ee4b3669c6976054438cb2754d89634b","impliedFormat":1},"a16bfef4594f0432e79680a20d9a338bb736187a5d8695ba593c86819791abb5","a8d6094e708c570767332d9798fa1bbc9ec8d4e50bc93e39bc9ce6fd737091e0","b48f3bde96e6aa8bf682784a4fc43a13f110d2a8c3b5a6e5d6fd2671f0d087d1","e5b58fb224466fdad906ab1368853d7d52d8315a4e9d23bdfd5d695288768b4f","1b25bd070f941eccadaa46ed9655fd304e377da3c7d176cac9e5959396ef66c7","95286eb2ad444fe5bb236abc46f19637ae47bd92c92fcd98a98652b4f59824f9","c1389da59359c6b98016d9d6e89cd355ddfe58bf44767ed65274440b43ae360e",{"version":"c57b441e0c0a9cbdfa7d850dae1f8a387d6f81cbffbc3cd0465d530084c2417d","impliedFormat":99},{"version":"2fbe402f0ee5aa8ab55367f88030f79d46211c0a0f342becaa9f648bf8534e9d","impliedFormat":1},{"version":"b94258ef37e67474ac5522e9c519489a55dcb3d4a8f645e335fc68ea2215fe88","impliedFormat":1},{"version":"8658354b90861a76abc7b3c04ece2124295c7da0cc4c4d31c2c78d8607188d03","impliedFormat":1},{"version":"024829c0b317972acf4f871bf701525f81896ad74015f1a52d46ae6036205cb9","impliedFormat":99},{"version":"a9373d52584b48809ffd61d74f5b3dfd127da846e3c4ee3c415560386df3994b","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"a9373d52584b48809ffd61d74f5b3dfd127da846e3c4ee3c415560386df3994b","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"0943a6e4e026d0de8a4969ee975a7283e0627bf41aa4635d8502f6f24365ac9b","impliedFormat":99},{"version":"1461efc4aefd3e999244f238f59c9b9753a7e3dfede923ebe2b4a11d6e13a0d0","impliedFormat":99},{"version":"a9373d52584b48809ffd61d74f5b3dfd127da846e3c4ee3c415560386df3994b","impliedFormat":99},{"version":"a9373d52584b48809ffd61d74f5b3dfd127da846e3c4ee3c415560386df3994b","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"7ec047b73f621c526468517fea779fec2007dd05baa880989def59126c98ef79","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"8dd450de6d756cee0761f277c6dc58b0b5a66b8c274b980949318b8cad26d712","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"904d6ad970b6bd825449480488a73d9b98432357ab38cf8d31ffd651ae376ff5","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"dfcf16e716338e9fe8cf790ac7756f61c85b83b699861df970661e97bf482692","impliedFormat":99},{"version":"31c30cc54e8c3da37c8e2e40e5658471f65915df22d348990d1601901e8c9ff3","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"36d8011f1437aecf0e6e88677d933e4fb3403557f086f4ac00c5a4cb6d028ac2","impliedFormat":99},{"version":"a9373d52584b48809ffd61d74f5b3dfd127da846e3c4ee3c415560386df3994b","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"8085954ba165e611c6230596078063627f3656fed3fb68ad1e36a414c4d7599a","impliedFormat":99},{"version":"a9373d52584b48809ffd61d74f5b3dfd127da846e3c4ee3c415560386df3994b","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"2c57db2bf2dbd9e8ef4853be7257d62a1cb72845f7b976bb4ee827d362675f96","impliedFormat":99},{"version":"a9373d52584b48809ffd61d74f5b3dfd127da846e3c4ee3c415560386df3994b","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"a9373d52584b48809ffd61d74f5b3dfd127da846e3c4ee3c415560386df3994b","impliedFormat":99},{"version":"a9373d52584b48809ffd61d74f5b3dfd127da846e3c4ee3c415560386df3994b","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"6b5f886fe41e2e767168e491fe6048398ed6439d44e006d9f51cc31265f08978","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"56a87e37f91f5625eb7d5f8394904f3f1e2a90fb08f347161dc94f1ae586bdd0","impliedFormat":99},{"version":"6b863463764ae572b9ada405bf77aac37b5e5089a3ab420d0862e4471051393b","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"a9373d52584b48809ffd61d74f5b3dfd127da846e3c4ee3c415560386df3994b","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"68b6a7501a56babd7bcd840e0d638ee7ec582f1e70b3c36ebf32e5e5836913c8","impliedFormat":99},{"version":"89783bd45ab35df55203b522f8271500189c3526976af533a599a86caaf31362","impliedFormat":99},{"version":"6da2e0928bdab05861abc4e4abebea0c7cf0b67e25374ba35a94df2269563dd8","impliedFormat":99},{"version":"e7b00bec016013bcde74268d837a8b57173951add2b23c8fd12ffe57f204d88f","impliedFormat":99},{"version":"a9373d52584b48809ffd61d74f5b3dfd127da846e3c4ee3c415560386df3994b","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"26e6c521a290630ea31f0205a46a87cab35faac96e2b30606f37bae7bcda4f9d","impliedFormat":99},{"version":"a9373d52584b48809ffd61d74f5b3dfd127da846e3c4ee3c415560386df3994b","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"71acd198e19fa38447a3cbc5c33f2f5a719d933fccf314aaff0e8b0593271324","impliedFormat":99},{"version":"044047026c70439867589d8596ffe417b56158a1f054034f590166dd793b676b","impliedFormat":99},{"version":"a9373d52584b48809ffd61d74f5b3dfd127da846e3c4ee3c415560386df3994b","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"89ad9a4e8044299f356f38879a1c2176bc60c997519b442c92cc5a70b731a360","impliedFormat":99},{"version":"71acd198e19fa38447a3cbc5c33f2f5a719d933fccf314aaff0e8b0593271324","impliedFormat":99},{"version":"a9373d52584b48809ffd61d74f5b3dfd127da846e3c4ee3c415560386df3994b","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"fd4f58cd6b5fc8ce8af0d04bfef5142f15c4bafaac9a9899c6daa056f10bb517","impliedFormat":99},{"version":"a9373d52584b48809ffd61d74f5b3dfd127da846e3c4ee3c415560386df3994b","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"2a00cea77767cb26393ee6f972fd32941249a0d65b246bfcb20a780a2b919a21","impliedFormat":99},{"version":"440cb5b34e06fabe3dcb13a3f77b98d771bf696857c8e97ce170b4f345f8a26b","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"5bc7f0946c94e23765bd1b8f62dc3ab65d7716285ca7cf45609f57777ddb436f","impliedFormat":99},{"version":"7d5a5e603a68faea3d978630a84cacad7668f11e14164c4dd10224fa1e210f56","impliedFormat":99},{"version":"a9373d52584b48809ffd61d74f5b3dfd127da846e3c4ee3c415560386df3994b","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"2535fc1a5fe64892783ff8f61321b181c24f824e688a4a05ae738da33466605b","impliedFormat":99},{"version":"cbfd5ef0c8fdb4983202252b5f5758a579f4500edc3b9ad413da60cffb5c3564","impliedFormat":99},{"version":"a9373d52584b48809ffd61d74f5b3dfd127da846e3c4ee3c415560386df3994b","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"9f7a3c434912fd3feb87af4aabdf0d1b614152ecb5e7b2aa1fff3429879cdd51","impliedFormat":99},{"version":"a9373d52584b48809ffd61d74f5b3dfd127da846e3c4ee3c415560386df3994b","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"99d1a601593495371e798da1850b52877bf63d0678f15722d5f048e404f002e4","impliedFormat":99},{"version":"a9373d52584b48809ffd61d74f5b3dfd127da846e3c4ee3c415560386df3994b","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"1179ef8174e0e4a09d35576199df04803b1db17c0fb35b9326442884bc0b0cce","impliedFormat":99},{"version":"9c580c6eae94f8c9a38373566e59d5c3282dc194aa266b23a50686fe10560159","impliedFormat":99},{"version":"a9373d52584b48809ffd61d74f5b3dfd127da846e3c4ee3c415560386df3994b","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"cc3738ba01d9af5ba1206a313896837ff8779791afcd9869e582783550f17f38","impliedFormat":99},{"version":"a80ec72f5e178862476deaeed532c305bdfcd3627014ae7ac2901356d794fc93","impliedFormat":99},{"version":"a9373d52584b48809ffd61d74f5b3dfd127da846e3c4ee3c415560386df3994b","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"4a5aa16151dbec524bb043a5cbce2c3fec75957d175475c115a953aca53999a9","impliedFormat":99},{"version":"a9373d52584b48809ffd61d74f5b3dfd127da846e3c4ee3c415560386df3994b","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"7a14bf21ae8a29d64c42173c08f026928daf418bed1b97b37ac4bb2aa197b89b","impliedFormat":99},{"version":"a9373d52584b48809ffd61d74f5b3dfd127da846e3c4ee3c415560386df3994b","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"c5013d60cbff572255ccc87c314c39e198c8cc6c5aa7855db7a21b79e06a510f","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"69ec8d900cfec3d40e50490fedbbea5c1b49d32c38adbc236e73a3b8978c0b11","impliedFormat":99},{"version":"a9373d52584b48809ffd61d74f5b3dfd127da846e3c4ee3c415560386df3994b","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"7fd629484ba6772b686885b443914655089246f75a13dd685845d0abae337671","impliedFormat":99},{"version":"a9373d52584b48809ffd61d74f5b3dfd127da846e3c4ee3c415560386df3994b","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"9c580c6eae94f8c9a38373566e59d5c3282dc194aa266b23a50686fe10560159","impliedFormat":99},{"version":"13dcccb62e8537329ac0448f088ab16fe5b0bbed71e56906d28d202072759804","impliedFormat":99},{"version":"a9373d52584b48809ffd61d74f5b3dfd127da846e3c4ee3c415560386df3994b","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"233267a4a036c64aee95f66a0d31e3e0ef048cccc57dd66f9cf87582b38691e4","impliedFormat":99},{"version":"ccb9fbe369885d02cf6c2b2948fb5060451565d37b04356bbe753807f98e0682","impliedFormat":99},"44c634567d7364c90736e4c51d4e0d3af8b86f6a173300c478cb44f3cef2f406","d05c276c74c39e8174c67c88ec0d8be0b84fb7586805a67e90360968ccf0c762","87d8d57d40a725aaa5f2057ca981e767c3ad9b41d9792d256e2dc54b4a8cd55b","e9ab4ae23fed53e9ebc280b4e259a146e45edf94cb756ed0c2a450b88e1b6d8b","2085bd915049ac9b8707b5ef59c79415f16ed216d911091e5e7fa8d6232614b4","e4f00cedf79b8936fac6a65f47a522e62f1bc554e8c394a7e4a7787c4e1c2795",{"version":"a9373d52584b48809ffd61d74f5b3dfd127da846e3c4ee3c415560386df3994b","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"8085954ba165e611c6230596078063627f3656fed3fb68ad1e36a414c4d7599a","impliedFormat":99},"00bacd53a5b51a56918f4aa067114d99a07cb3586daf6e6a20c9335b0661fd4f",{"version":"cbfd5ef0c8fdb4983202252b5f5758a579f4500edc3b9ad413da60cffb5c3564","impliedFormat":99},"fa18a2fa12602b411ec7b8c0016cea5746b5a1b3229254d6497c99e6f70bc0fe","6827fb8916a7d00d6ef8cf3cd461a1732dcd1652a8c6976c0fafdc8c0fd90f96","c2386f38554cb204f78ca398b2ccee13134766aaa731a06358b240450690fa9b","c3c7774ddf4f4a32ab260abe7001da57e0644d47ed7e6431466625c8c50e7ef9",{"version":"57ae71d27ee71b7d1f2c6d867ddafbbfbaa629ad75565e63a508dbaa3ef9f859","impliedFormat":99},{"version":"60924ca0c60f0674f208bfa1eaaa54e6973ced7650df7c7a81ae069730ef665a","impliedFormat":99},{"version":"e3181c7595a89dd03ba9a20eb5065fa37e0b0a514261bed774f6ae2241634470","impliedFormat":99},{"version":"c42d5cbf94816659c01f7c2298d0370247f1a981f8ca6370301b7a03b3ced950","impliedFormat":99},{"version":"18c18ab0341fd5fdfefb5d992c365be1696bfe000c7081c964582b315e33f8f2","impliedFormat":99},{"version":"dafbd4199902d904e3d4a233b5faf5dc4c98847fcd8c0ddd7617b2aed50e90d8","impliedFormat":99},{"version":"9fc866f9783d12d0412ed8d68af5e4c9e44f0072d442b0c33c3bda0a5c8cae15","impliedFormat":99},{"version":"5fc13d24a2d0328eac00c4e73cc052a987fbced2151bc0d3b7eb8f3ba4d0f4e2","impliedFormat":99},{"version":"2cef84bf00cbdb452fdc5d8ecfe7b8c0aa3fa788bdc4ad8961e2e636530dbb60","impliedFormat":99},{"version":"24104650185414f379d5cc35c0e2c19f06684a73de5b472bae79e0d855771ecf","impliedFormat":99},{"version":"799003c0ab928582fca04977f47b8d85b43a8de610f4eef0ad2d069fbb9f9399","impliedFormat":99},{"version":"b13dd41c344a23e085f81b2f5cd96792e6b35ae814f32b25e39d9841844ad240","impliedFormat":99},{"version":"17d8b4e6416e48b6e23b73d05fd2fde407e2af8fddbe9da2a98ede14949c3489","impliedFormat":99},{"version":"6d17b2b41f874ab4369b8e04bdbe660163ea5c8239785c850f767370604959e3","impliedFormat":99},{"version":"04b4c044c8fe6af77b6c196a16c41e0f7d76b285d036d79dcaa6d92e24b4982b","impliedFormat":99},{"version":"30bdeead5293c1ddfaea4097d3e9dd5a6b0bc59a1e07ff4714ea1bbe7c5b2318","impliedFormat":99},{"version":"e7df226dcc1b0ce76b32f160556f3d1550124c894aae2d5f73cefaaf28df7779","impliedFormat":99},{"version":"f2b7eef5c46c61e6e72fba9afd7cc612a08c0c48ed44c3c5518559d8508146a2","impliedFormat":99},{"version":"00f0ba57e829398d10168b7db1e16217f87933e61bd8612b53a894bd7d6371da","impliedFormat":99},{"version":"126b20947d9fa74a88bb4e9281462bda05e529f90e22d08ee9f116a224291e84","impliedFormat":99},{"version":"40d9e43acee39702745eb5c641993978ac40f227475eacc99a83ba893ad995db","impliedFormat":99},{"version":"8a66b69b21c8de9cb88b4b6d12f655d5b7636e692a014c5aa1bd81745c8c51d5","impliedFormat":99},{"version":"ebbb846bdd5a78fdacff59ae04cea7a097912aeb1a2b34f8d88f4ebb84643069","impliedFormat":99},{"version":"7321adb29ffd637acb33ee67ea035f1a97d0aa0b14173291cc2fd58e93296e04","impliedFormat":99},{"version":"320816f1a4211188f07a782bdb6c1a44555b3e716ce13018f528ad7387108d5f","impliedFormat":99},{"version":"b2cc8a474b7657f4a03c67baf6bff75e26635fd4b5850675e8cad524a09ddd0c","impliedFormat":99},{"version":"0d081e9dc251063cc69611041c17d25847e8bdbe18164baaa89b7f1f1633c0ab","impliedFormat":99},{"version":"a64c25d8f4ec16339db49867ea2324e77060782993432a875d6e5e8608b0de1e","impliedFormat":99},{"version":"0739310b6b777f3e2baaf908c0fbc622c71160e6310eb93e0d820d86a52e2e23","impliedFormat":99},{"version":"37b32e4eadd8cd3c263e7ac1681c58b2ac54f3f77bb34c5e4326cc78516d55a9","impliedFormat":99},{"version":"9b7a8974e028c4ed6f7f9abb969e3eb224c069fd7f226e26fcc3a5b0e2a1eba8","impliedFormat":99},{"version":"e8100b569926a5592146ed68a0418109d625a045a94ed878a8c5152b1379237c","impliedFormat":99},{"version":"594201c616c318b7f3149a912abd8d6bdf338d765b7bcbde86bca2e66b144606","impliedFormat":99},{"version":"03e380975e047c5c6ded532cf8589e6cc85abb7be3629e1e4b0c9e703f2fd36f","impliedFormat":99},{"version":"fae14b53b7f52a8eb3274c67c11f261a58530969885599efe3df0277b48909e1","impliedFormat":99},{"version":"c41206757c428186f2e0d1fd373915c823504c249336bdc9a9c9bbdf9da95fef","impliedFormat":99},{"version":"e961f853b7b0111c42b763a6aa46fc70d06a697db3d8ed69b38f7ba0ae42a62b","impliedFormat":99},{"version":"3db90f79e36bcb60b3f8de1bc60321026800979c150e5615047d598c787a64b7","impliedFormat":99},{"version":"639b6fb3afbb8f6067c1564af2bd284c3e883f0f1556d59bd5eb87cdbbdd8486","impliedFormat":99},{"version":"49795f5478cb607fd5965aa337135a8e7fd1c58bc40c0b6db726adf186dd403f","impliedFormat":99},{"version":"7d8890e6e2e4e215959e71d5b5bd49482cf7a23be68d48ea446601a4c99bd511","impliedFormat":99},{"version":"d56f72c4bb518de5702b8b6ae3d3c3045c99e0fd48b3d3b54c653693a8378017","impliedFormat":99},{"version":"4c9ac40163e4265b5750510d6d2933fb7b39023eed69f7b7c68b540ad960826e","impliedFormat":99},{"version":"8dfab17cf48e7be6e023c438a9cdf6d15a9b4d2fa976c26e223ba40c53eb8da8","impliedFormat":99},{"version":"38bdf7ccacfd8e418de3a7b1e3cecc29b5625f90abc2fa4ac7843a290f3bf555","impliedFormat":99},{"version":"9819e46a914735211fbc04b8dc6ba65152c62e3a329ca0601a46ba6e05b2c897","impliedFormat":99},{"version":"50f0dc9a42931fb5d65cdd64ba0f7b378aedd36e0cfca988aa4109aad5e714cb","impliedFormat":99},{"version":"894f23066f9fafccc6e2dd006ed5bd85f3b913de90f17cf1fe15a2eb677fd603","impliedFormat":99},{"version":"abdf39173867e6c2d6045f120a316de451bbb6351a6929546b8470ddf2e4b3b9","impliedFormat":99},{"version":"aa2cb4053f948fbd606228195bbe44d78733861b6f7204558bbee603202ee440","impliedFormat":99},{"version":"6911b41bfe9942ac59c2da1bbcbe5c3c1f4e510bf65cae89ed00f434cc588860","impliedFormat":99},{"version":"7b81bc4d4e2c764e85d869a8dd9fe3652b34b45c065482ac94ffaacc642b2507","impliedFormat":99},{"version":"895df4edb46ccdcbce2ec982f5eed292cf7ea3f7168f1efea738ee346feab273","impliedFormat":99},{"version":"8692bb1a4799eda7b2e3288a6646519d4cebb9a0bddf800085fc1bd8076997a0","impliedFormat":99},{"version":"239c9e98547fe99711b01a0293f8a1a776fc10330094aa261f3970aaba957c82","impliedFormat":99},{"version":"34833ec50360a32efdc12780ae624e9a710dd1fd7013b58c540abf856b54285a","impliedFormat":99},{"version":"647538e4007dcc351a8882067310a0835b5bb8559d1cfa5f378e929bceb2e64d","impliedFormat":99},{"version":"992d6b1abcc9b6092e5a574d51d441238566b6461ade5de53cb9718e4f27da46","impliedFormat":99},{"version":"938702305649bf1050bd79f3803cf5cc2904596fc1edd4e3b91033184eae5c54","impliedFormat":99},{"version":"1e931d3c367d4b96fe043e792196d9c2cf74f672ff9c0b894be54e000280a79d","impliedFormat":99},{"version":"05bec322ea9f6eb9efcd6458bb47087e55bd688afdd232b78379eb5d526816ed","impliedFormat":99},{"version":"4c449a874c2d2e5e5bc508e6aa98f3140218e78c585597a21a508a647acd780a","impliedFormat":99},{"version":"dae15e326140a633d7693e92b1af63274f7295ea94fb7c322d5cbe3f5e48be88","impliedFormat":99},{"version":"c2b0a869713bca307e58d81d1d1f4b99ebfc7ec8b8f17e80dde40739aa8a2bc6","impliedFormat":99},{"version":"6e4b4ff6c7c54fa9c6022e88f2f3e675eac3c6923143eb8b9139150f09074049","impliedFormat":99},{"version":"69559172a9a97bbe34a32bff8c24ef1d8c8063feb5f16a6d3407833b7ee504cf","impliedFormat":99},{"version":"86b94a2a3edcb78d9bfcdb3b382547d47cb017e71abe770c9ee8721e9c84857f","impliedFormat":99},{"version":"e3fafafda82853c45c0afc075fea1eaf0df373a06daf6e6c7f382f9f61b2deb3","impliedFormat":99},{"version":"a4ba4b31de9e9140bc49c0addddbfaf96b943a7956a46d45f894822e12bf5560","impliedFormat":99},{"version":"d8a7926fc75f2ed887f17bae732ee31a4064b8a95a406c87e430c58578ee1f67","impliedFormat":99},{"version":"9886ffbb134b0a0059fd82219eba2a75f8af341d98bc6331b6ef8a921e10ec68","impliedFormat":99},{"version":"c2ead057b70d0ae7b87a771461a6222ebdb187ba6f300c974768b0ae5966d10e","impliedFormat":99},{"version":"46687d985aed8485ab2c71085f82fafb11e69e82e8552cf5d3849c00e64a00a5","impliedFormat":99},{"version":"999ca66d4b5e2790b656e0a7ce42267737577fc7a52b891e97644ec418eff7ec","impliedFormat":99},{"version":"ec948ee7e92d0888f92d4a490fdd0afb27fbf6d7aabebe2347a3e8ac82c36db9","impliedFormat":99},{"version":"03ef2386c683707ce741a1c30cb126e8c51a908aa0acc01c3471fafb9baaacd5","impliedFormat":99},{"version":"66a372e03c41d2d5e920df5282dadcec2acae4c629cb51cab850825d2a144cea","impliedFormat":99},{"version":"ddf9b157bd4c06c2e4646c9f034f36267a0fbd028bd4738214709de7ea7c548b","impliedFormat":99},{"version":"3e795aac9be23d4ad9781c00b153e7603be580602e40e5228e2dafe8a8e3aba1","impliedFormat":99},{"version":"98c461ec5953dfb1b5d5bca5fee0833c8a932383b9e651ca6548e55f1e2c71c3","impliedFormat":99},{"version":"5c42107b46cb1d36b6f1dee268df125e930b81f9b47b5fa0b7a5f2a42d556c10","impliedFormat":99},{"version":"7e32f1251d1e986e9dd98b6ff25f62c06445301b94aeebdf1f4296dbd2b8652f","impliedFormat":99},{"version":"2f7e328dda700dcb2b72db0f58c652ae926913de27391bd11505fc5e9aae6c33","impliedFormat":99},{"version":"3de7190e4d37da0c316db53a8a60096dbcd06d1a50677ccf11d182fa26882080","impliedFormat":99},{"version":"a9d6f87e59b32b02c861aade3f4477d7277c30d43939462b93f48644fa548c58","impliedFormat":99},{"version":"2bce8fd2d16a9432110bbe0ba1e663fd02f7d8b8968cd10178ea7bc306c4a5df","impliedFormat":99},{"version":"798bedbf45a8f1e55594e6879cd46023e8767757ecce1d3feaa78d16ad728703","impliedFormat":99},{"version":"62723d5ac66f7ed6885a3931dd5cfa017797e73000d590492988a944832e8bc2","impliedFormat":99},{"version":"03db8e7df7514bf17fc729c87fff56ca99567b9aa50821f544587a666537c233","impliedFormat":99},{"version":"9b1f311ba4409968b68bf20b5d892dbd3c5b1d65c673d5841c7dbde351bc0d0b","impliedFormat":99},{"version":"2d1e8b5431502739fe335ceec0aaded030b0f918e758a5d76f61effa0965b189","impliedFormat":99},{"version":"e725839b8f884dab141b42e9d7ff5659212f6e1d7b4054caa23bc719a4629071","impliedFormat":99},{"version":"4fa38a0b8ae02507f966675d0a7d230ed67c92ab8b5736d99a16c5fbe2b42036","impliedFormat":99},{"version":"50ec1e8c23bad160ddedf8debeebc722becbddda127b8fdce06c23eacd3fe689","impliedFormat":99},{"version":"9a0aea3a113064fd607f41375ade308c035911d3c8af5ae9db89593b5ca9f1f9","impliedFormat":99},{"version":"8d643903b58a0bf739ce4e6a8b0e5fb3fbdfaacbae50581b90803934b27d5b89","impliedFormat":99},{"version":"19de2915ccebc0a1482c2337b34cb178d446def2493bf775c4018a4ea355adb8","impliedFormat":99},{"version":"9be8fc03c8b5392cd17d40fd61063d73f08d0ee3457ecf075dcb3768ae1427bd","impliedFormat":99},{"version":"a2d89a8dc5a993514ca79585039eea083a56822b1d9b9d9d85b14232e4782cbe","impliedFormat":99},{"version":"f526f20cae73f17e8f38905de4c3765287575c9c4d9ecacee41cfda8c887da5b","impliedFormat":99},{"version":"d9ec0978b7023612b9b83a71fee8972e290d02f8ff894e95cdd732cd0213b070","impliedFormat":99},{"version":"7ab10c473a058ec8ac4790b05cae6f3a86c56be9b0c0a897771d428a2a48a9f9","impliedFormat":99},{"version":"451d7a93f8249d2e1453b495b13805e58f47784ef2131061821b0e456a9fd0e1","impliedFormat":99},{"version":"21c56fe515d227ed4943f275a8b242d884046001722a4ba81f342a08dbe74ae2","impliedFormat":99},{"version":"d8311f0c39381aa1825081c921efde36e618c5cf46258c351633342a11601208","impliedFormat":99},{"version":"6b50c3bcc92dc417047740810596fcb2df2502aa3f280c9e7827e87896da168a","impliedFormat":99},{"version":"18a6b318d1e7b31e5749a52be0cf9bbce1b275f63190ef32e2c79db0579328ca","impliedFormat":99},{"version":"6a2d0af2c27b993aa85414f3759898502aa198301bc58b0d410948fe908b07b0","impliedFormat":99},{"version":"2da11b6f5c374300e5e66a6b01c3c78ec21b5d3fec0748a28cc28e00be73e006","impliedFormat":99},{"version":"0729691b39c24d222f0b854776b00530877217bfc30aac1dc7fa2f4b1795c536","impliedFormat":99},{"version":"ca45bb5c98c474d669f0e47615e4a5ae65d90a2e78531fda7862ee43e687a059","impliedFormat":99},{"version":"c1c058b91d5b9a24c95a51aea814b0ad4185f411c38ac1d5eef0bf3cebec17dc","impliedFormat":99},{"version":"3ab0ed4060b8e5b5e594138aab3e7f0262d68ad671d6678bcda51568d4fc4ccc","impliedFormat":99},{"version":"e2bf1faba4ff10a6020c41df276411f641d3fdce5c6bae1db0ec84a0bf042106","impliedFormat":99},{"version":"80b0a8fe14d47a71e23d7c3d4dcee9584d4282ef1d843b70cab1a42a4ea1588c","impliedFormat":99},{"version":"a0f02a73f6e3de48168d14abe33bf5970fdacdb52d7c574e908e75ad571e78f7","impliedFormat":99},{"version":"c728002a759d8ec6bccb10eed56184e86aeff0a762c1555b62b5d0fa9d1f7d64","impliedFormat":99},{"version":"586f94e07a295f3d02f847f9e0e47dbf14c16e04ccc172b011b3f4774a28aaea","impliedFormat":99},{"version":"cfe1a0f4ed2df36a2c65ea6bc235dbb8cf6e6c25feb6629989f1fa51210b32e7","impliedFormat":99},{"version":"8ba69c9bf6de79c177329451ffde48ddab7ec495410b86972ded226552f664df","impliedFormat":99},{"version":"15111cbe020f8802ad1d150524f974a5251f53d2fe10eb55675f9df1e82dbb62","impliedFormat":99},{"version":"782dc153c56a99c9ed07b2f6f497d8ad2747764966876dbfef32f3e27ce11421","impliedFormat":99},{"version":"cc2db30c3d8bb7feb53a9c9ff9b0b859dd5e04c83d678680930b5594b2bf99cb","impliedFormat":99},{"version":"46909b8c85a6fd52e0807d18045da0991e3bdc7373435794a6ba425bc23cc6be","impliedFormat":99},{"version":"e4e511ff63bb6bd69a2a51e472c6044298bca2c27835a34a20827bc3ef9b7d13","impliedFormat":99},{"version":"2c86f279d7db3c024de0f21cd9c8c2c972972f842357016bfbbd86955723b223","impliedFormat":99},{"version":"112c895cff9554cf754f928477c7d58a21191c8089bffbf6905c87fe2dc6054f","impliedFormat":99},{"version":"8cfc293b33082003cacbf7856b8b5e2d6dd3bde46abbd575b0c935dc83af4844","impliedFormat":99},{"version":"d2c5c53f85ce0474b3a876d76c4fc44ff7bb766b14ed1bf495f9abac181d7f5f","impliedFormat":99},{"version":"3c523f27926905fcbe20b8301a0cc2da317f3f9aea2273f8fc8d9ae88b524819","impliedFormat":99},{"version":"9ca0d706f6b039cc52552323aeccb4db72e600b67ddc7a54cebc095fc6f35539","impliedFormat":99},{"version":"a64909a9f75081342ddd061f8c6b49decf0d28051bc78e698d347bdcb9746577","impliedFormat":99},{"version":"7d8d55ae58766d0d52033eae73084c4db6a93c4630a3e17f419dd8a0b2a4dcd8","impliedFormat":99},{"version":"b8b5c8ba972d9ffff313b3c8a3321e7c14523fc58173862187e8d1cb814168ac","impliedFormat":99},{"version":"9c42c0fa76ee36cf9cc7cc34b1389fbb4bd49033ec124b93674ec635fabf7ffe","impliedFormat":99},{"version":"6184c8da9d8107e3e67c0b99dedb5d2dfe5ccf6dfea55c2a71d4037caf8ca196","impliedFormat":99},{"version":"4030ceea7bf41449c1b86478b786e3b7eadd13dfe5a4f8f5fe2eb359260e08b3","impliedFormat":99},{"version":"7bf516ec5dfc60e97a5bde32a6b73d772bd9de24a2e0ec91d83138d39ac83d04","impliedFormat":99},{"version":"e6a6fb3e6525f84edf42ba92e261240d4efead3093aca3d6eb1799d5942ba393","impliedFormat":99},{"version":"45df74648934f97d26800262e9b2af2f77ef7191d4a5c2eb1df0062f55e77891","impliedFormat":99},{"version":"3fe361e4e567f32a53af1f2c67ad62d958e3d264e974b0a8763d174102fe3b29","impliedFormat":99},{"version":"28b520acee4bc6911bfe458d1ad3ebc455fa23678463f59946ad97a327c9ab2b","impliedFormat":99},{"version":"121b39b1a9ad5d23ed1076b0db2fe326025150ef476dccb8bf87778fcc4f6dd7","impliedFormat":99},{"version":"f791f92a060b52aa043dde44eb60307938f18d4c7ac13df1b52c82a1e658953f","impliedFormat":99},{"version":"df09443e7743fd6adc7eb108e760084bacdf5914403b7aac5fbd4dc4e24e0c2c","impliedFormat":99},{"version":"eeb4ff4aa06956083eaa2aad59070361c20254b865d986bc997ee345dbd44cbb","impliedFormat":99},{"version":"ed84d5043444d51e1e5908f664addc4472c227b9da8401f13daa565f23624b6e","impliedFormat":99},{"version":"146bf888b703d8baa825f3f2fb1b7b31bda5dff803e15973d9636cdda33f4af3","impliedFormat":99},{"version":"b4ec8b7a8d23bdf7e1c31e43e5beac3209deb7571d2ccf2a9572865bf242da7c","impliedFormat":99},{"version":"3fba0d61d172091638e56fba651aa1f8a8500aac02147d29bd5a9cc0bc8f9ec2","impliedFormat":99},{"version":"a5a57deb0351b03041e0a1448d3a0cc5558c48e0ed9b79b69c99163cdca64ad8","impliedFormat":99},{"version":"9bcecf0cbc2bfc17e33199864c19549905309a0f9ecc37871146107aac6e05ae","impliedFormat":99},{"version":"d6a211db4b4a821e93c978add57e484f2a003142a6aef9dbfa1fe990c66f337b","impliedFormat":99},{"version":"bd4d10bd44ce3f630dd9ce44f102422cb2814ead5711955aa537a52c8d2cae14","impliedFormat":99},{"version":"08e4c39ab1e52eea1e528ee597170480405716bae92ebe7a7c529f490afff1e0","impliedFormat":99},{"version":"625bb2bc3867557ea7912bd4581288a9fca4f3423b8dffa1d9ed57fafc8610e3","impliedFormat":99},{"version":"d1992164ecc334257e0bef56b1fd7e3e1cea649c70c64ffc39999bb480c0ecdf","impliedFormat":99},{"version":"a53ff2c4037481eb357e33b85e0d78e8236e285b6428b93aa286ceea1db2f5dc","impliedFormat":99},{"version":"4fe608d524954b6857d78857efce623852fcb0c155f010710656f9db86e973a5","impliedFormat":99},{"version":"b53b62a9838d3f57b70cc456093662302abb9962e5555f5def046172a4fe0d4e","impliedFormat":99},{"version":"9866369eb72b6e77be2a92589c9df9be1232a1a66e96736170819e8a1297b61f","impliedFormat":99},{"version":"43abfbdf4e297868d780b8f4cfdd8b781b90ecd9f588b05e845192146a86df34","impliedFormat":99},{"version":"582419791241fb851403ae4a08d0712a63d4c94787524a7419c2bc8e0eb1b031","impliedFormat":99},{"version":"18437eeb932fe48590b15f404090db0ab3b32d58f831d5ffc157f63b04885ee5","impliedFormat":99},{"version":"0c5eaedf622d7a8150f5c2ec1f79ac3d51eea1966b0b3e61bfdea35e8ca213a7","impliedFormat":99},{"version":"fac39fc7a9367c0246de3543a6ee866a0cf2e4c3a8f64641461c9f2dac0d8aae","impliedFormat":99},{"version":"3b9f559d0200134f3c196168630997caedeadc6733523c8b6076a09615d5dec8","impliedFormat":99},{"version":"932af64286d9723da5ef7b77a0c4229829ce8e085e6bcc5f874cb0b83e8310d4","impliedFormat":99},{"version":"adeb9278f11f5561157feee565171c72fd48f5fe34ed06f71abf24e561fcaa1e","impliedFormat":99},{"version":"2269fef79b4900fc6b08c840260622ca33524771ff24fda5b9101ad98ea551f3","impliedFormat":99},{"version":"73d47498a1b73d5392d40fb42a3e7b009ae900c8423f4088c4faa663cc508886","impliedFormat":99},{"version":"7efc34cdc4da0968c3ba687bc780d5cacde561915577d8d1c1e46c7ac931d023","impliedFormat":99},{"version":"3c20a3bb0c50c819419f44aa55acc58476dad4754a16884cef06012d02b0722f","impliedFormat":99},{"version":"4569abf6bc7d51a455503670f3f1c0e9b4f8632a3b030e0794c61bfbba2d13be","impliedFormat":99},{"version":"98b2297b4dc1404078a54b61758d8643e4c1d7830af724f3ed2445d77a7a2d57","impliedFormat":99},{"version":"952ba89d75f1b589e07070fea2d8174332e3028752e76fd46e1c16cc51e6e2af","impliedFormat":99},{"version":"b6c9a2deefb6a57ff68d2a38d33c34407b9939487fc9ee9f32ba3ecf2987a88a","impliedFormat":99},{"version":"f6b371377bab3018dac2bca63e27502ecbd5d06f708ad7e312658d3b5315d948","impliedFormat":99},{"version":"31947dd8f1c8eeb7841e1f139a493a73bd520f90e59a6415375d0d8e6a031f01","impliedFormat":99},{"version":"95cd83b807e10b1af408e62caf5fea98562221e8ddca9d7ccc053d482283ddda","impliedFormat":99},{"version":"19287d6b76288c2814f1633bdd68d2b76748757ffd355e73e41151644e4773d6","impliedFormat":99},{"version":"fc4e6ec7dade5f9d422b153c5d8f6ad074bd9cc4e280415b7dc58fb5c52b5df1","impliedFormat":99},{"version":"3aea973106e1184db82d8880f0ca134388b6cbc420f7309d1c8947b842886349","impliedFormat":99},{"version":"765e278c464923da94dda7c2b281ece92f58981642421ae097862effe2bd30fa","impliedFormat":99},{"version":"de260bed7f7d25593f59e859bd7c7f8c6e6bb87e8686a0fcafa3774cb5ca02d8","impliedFormat":99},{"version":"b5c341ce978f5777fbe05bc86f65e9906a492fa6b327bda3c6aae900c22e76c6","impliedFormat":99},{"version":"686ddbfaf88f06b02c6324005042f85317187866ca0f8f4c9584dd9479653344","impliedFormat":99},{"version":"7f789c0c1db29dd3aab6e159d1ba82894a046bf8df595ac48385931ae6ad83e0","impliedFormat":99},{"version":"8eb3057d4fe9b59b2492921b73a795a2455ebe94ccb3d01027a7866612ead137","impliedFormat":99},{"version":"1e43c5d7aee1c5ec20611e28b5417f5840c75d048de9d7f1800d6808499236f8","impliedFormat":99},{"version":"d42610a5a2bee4b71769968a24878885c9910cd049569daa2d2ee94208b3a7a5","impliedFormat":99},{"version":"f6ed95506a6ed2d40ed5425747529befaa4c35fcbbc1e0d793813f6d725690fa","impliedFormat":99},{"version":"a6fcc1cd6583939506c906dff1276e7ebdc38fbe12d3e108ba38ad231bd18d97","impliedFormat":99},{"version":"ed13354f0d96fb6d5878655b1fead51722b54875e91d5e53ef16de5b71a0e278","impliedFormat":99},{"version":"1193b4872c1fb65769d8b164ca48124c7ebacc33eae03abf52087c2b29e8c46c","impliedFormat":99},{"version":"af682dfabe85688289b420d939020a10eb61f0120e393d53c127f1968b3e9f66","impliedFormat":99},{"version":"0dca04006bf13f72240c6a6a502df9c0b49c41c3cab2be75e81e9b592dcd4ea8","impliedFormat":99},{"version":"79d6ac4a2a229047259116688f9cd62fda25422dee3ad304f77d7e9af53a41ef","impliedFormat":99},{"version":"64534c17173990dc4c3d9388d16675a059aac407031cfce8f7fdffa4ee2de988","impliedFormat":99},{"version":"ba46d160a192639f3ca9e5b640b870b1263f24ac77b6895ab42960937b42dcbb","impliedFormat":99},{"version":"5e5ddd6fc5b590190dde881974ab969455e7fad61012e32423415ae3d085b037","impliedFormat":99},{"version":"1c16fd00c42b60b96fe0fa62113a953af58ddf0d93b0a49cb4919cf5644616f0","impliedFormat":99},{"version":"eb240c0e6b412c57f7d9a9f1c6cd933642a929837c807b179a818f6e8d3a4e44","impliedFormat":99},{"version":"4a7bde5a1155107fc7d9483b8830099f1a6072b6afda5b78d91eb5d6549b3956","impliedFormat":99},{"version":"3c1baaffa9a24cc7ef9eea6b64742394498e0616b127ca630aca0e11e3298006","impliedFormat":99},{"version":"87ca1c31a326c898fa3feb99ec10750d775e1c84dbb7c4b37252bcf3742c7b21","impliedFormat":99},{"version":"d7bd26af1f5457f037225602035c2d7e876b80d02663ab4ca644099ad3a55888","impliedFormat":99},{"version":"2ad0a6b93e84a56b64f92f36a07de7ebcb910822f9a72ad22df5f5d642aff6f3","impliedFormat":99},{"version":"523d1775135260f53f672264937ee0f3dc42a92a39de8bee6c48c7ea60b50b5a","impliedFormat":99},{"version":"e441b9eebbc1284e5d995d99b53ed520b76a87cab512286651c4612d86cd408e","impliedFormat":99},{"version":"76f853ee21425c339a79d28e0859d74f2e53dee2e4919edafff6883dd7b7a80f","impliedFormat":99},{"version":"00cf042cd6ba1915648c8d6d2aa00e63bbbc300ea54d28ed087185f0f662e080","impliedFormat":99},{"version":"f57e6707d035ab89a03797d34faef37deefd3dd90aa17d90de2f33dce46a2c56","impliedFormat":99},{"version":"cc8b559b2cf9380ca72922c64576a43f000275c72042b2af2415ce0fb88d7077","impliedFormat":99},{"version":"1a337ca294c428ba8f2eb01e887b28d080ee4a4307ae87e02e468b1d26af4a74","impliedFormat":99},{"version":"5a15362fc2e72765a908c0d4dd89e3ab3b763e8bc8c23f19234a709ecfd202fe","impliedFormat":99},{"version":"2dffdfe62ac8af0943853234519616db6fd8958fc7ff631149fd8364e663f361","impliedFormat":99},{"version":"5dbdb2b2229b5547d8177c34705272da5a10b8d0033c49efbc9f6efba5e617f2","impliedFormat":99},{"version":"6fc0498cd8823d139004baff830343c9a0d210c687b2402c1384fb40f0aa461c","impliedFormat":99},{"version":"8492306a4864a1dc6fc7e0cc0de0ae9279cbd37f3aae3e9dc1065afcdc83dddc","impliedFormat":99},{"version":"c011b378127497d6337a93f020a05f726db2c30d55dc56d20e6a5090f05919a6","impliedFormat":99},{"version":"f4556979e95a274687ae206bbab2bb9a71c3ad923b92df241d9ab88c184b3f40","impliedFormat":99},{"version":"50e82bb6e238db008b5beba16d733b77e8b2a933c9152d1019cf8096845171a4","impliedFormat":99},{"version":"d6011f8b8bbf5163ef1e73588e64a53e8bf1f13533c375ec53e631aad95f1375","impliedFormat":99},{"version":"693cd7936ac7acfa026d4bcb5801fce71cec49835ba45c67af1ef90dbfd30af7","impliedFormat":99},{"version":"195e2cf684ecddfc1f6420564535d7c469f9611ce7a380d6e191811f84556cd2","impliedFormat":99},{"version":"1dc6b6e7b2a7f2962f31c77f4713f3a5a132bbe14c00db75d557568fe82e4311","impliedFormat":99},{"version":"add93b1180e9aaac2dae4ef3b16f7655893e2ecbe62bd9e48366c305f0063d89","impliedFormat":99},{"version":"594bd896fe37c970aafb7a376ebeec4c0d636b62a5f611e2e27d30fb839ad8a5","impliedFormat":99},{"version":"b1c6a6faf60542ba4b4271db045d7faea56e143b326ef507d2797815250f3afc","impliedFormat":99},{"version":"8c8b165beb794260f462679329b131419e9f5f35212de11c4d53e6d4d9cbedf6","impliedFormat":99},{"version":"ee5a4cf57d49fcf977249ab73c690a59995997c4672bb73fcaaf2eed65dbd1b2","impliedFormat":99},{"version":"f9f36051f138ab1c40b76b230c2a12b3ce6e1271179f4508da06a959f8bee4c1","impliedFormat":99},{"version":"9dc2011a3573d271a45c12656326530c0930f92539accbec3531d65131a14a14","impliedFormat":99},{"version":"091521ce3ede6747f784ae6f68ad2ea86bbda76b59d2bf678bcad2f9d141f629","impliedFormat":99},{"version":"202c2be951f53bafe943fb2c8d1245e35ed0e4dfed89f48c9a948e4d186dd6d4","impliedFormat":99},{"version":"c618aead1d799dbf4f5b28df5a6b9ce13d72722000a0ec3fe90a8115b1ea9226","impliedFormat":99},{"version":"9b0bf59708549c3e77fddd36530b95b55419414f88bbe5893f7bc8b534617973","impliedFormat":99},{"version":"7e216f67c4886f1bde564fb4eebdd6b185f262fe85ad1d6128cad9b229b10354","impliedFormat":99},{"version":"cd51e60b96b4d43698df74a665aa7a16604488193de86aa60ec0c44d9f114951","impliedFormat":99},{"version":"b63341fb6c7ba6f2aeabd9fc46b43e6cc2d2b9eec06534cfd583d9709f310ec2","impliedFormat":99},{"version":"be2af50c81b15bcfe54ad60f53eb1c72dae681c72d0a9dce1967825e1b5830a3","impliedFormat":99},{"version":"be5366845dfb9726f05005331b9b9645f237f1ddc594c0def851208e8b7d297b","impliedFormat":99},{"version":"5ddd536aaeadd4bf0f020492b3788ed209a7050ce27abec4e01c7563ff65da81","impliedFormat":99},{"version":"e243b24da119c1ef0d79af2a45217e50682b139cb48e7607efd66cc01bd9dcda","impliedFormat":99},{"version":"5b1398c8257fd180d0bf62e999fe0a89751c641e87089a83b24392efda720476","impliedFormat":99},{"version":"1588b1359f8507a16dbef67cd2759965fc2e8d305e5b3eb71be5aa9506277dff","impliedFormat":99},{"version":"4c99f2524eee1ec81356e2b4f67047a4b7efaf145f1c4eb530cd358c36784423","impliedFormat":99},{"version":"b30c6b9f6f30c35d6ef84daed1c3781e367f4360171b90598c02468b0db2fc3d","impliedFormat":99},{"version":"79c0d32274ccfd45fae74ac61d17a2be27aea74c70806d22c43fc625b7e9f12a","impliedFormat":99},{"version":"1b7e3958f668063c9d24ac75279f3e610755b0f49b1c02bb3b1c232deb958f54","impliedFormat":99},{"version":"779d4022c3d0a4df070f94858a33d9ebf54af3664754536c4ce9fd37c6f4a8db","impliedFormat":99},{"version":"e662f063d46aa8c088edffdf1d96cb13d9a2cbf06bc38dc6fc62b4d125fb7b49","impliedFormat":99},{"version":"d1d612df1e41c90d9678b07740d13d4f8e6acec2f17390d4ff4be5c889a6d37d","impliedFormat":99},{"version":"c95933fe140918892d569186f17b70ef6b1162f851a0f13f6a89e8f4d599c5a1","impliedFormat":99},{"version":"1d8d30677f87c13c2786980a80750ac1e281bdb65aa013ea193766fe9f0edd74","impliedFormat":99},{"version":"4661673cbc984b8a6ee5e14875a71ed529b64e7f8e347e12c0db4cecc25ad67d","impliedFormat":99},{"version":"7f980a414274f0f23658baa9a16e21d828535f9eac538e2eab2bb965325841db","impliedFormat":99},{"version":"20fb747a339d3c1d4a032a31881d0c65695f8167575e01f222df98791a65da9b","impliedFormat":99},{"version":"dd4e7ebd3f205a11becf1157422f98db675a626243d2fbd123b8b93efe5fb505","impliedFormat":99},{"version":"43ec6b74c8d31e88bb6947bb256ad78e5c6c435cbbbad991c3ff39315b1a3dba","impliedFormat":99},{"version":"b27242dd3af2a5548d0c7231db7da63d6373636d6c4e72d9b616adaa2acef7e1","impliedFormat":99},{"version":"e0ee7ba0571b83c53a3d6ec761cf391e7128d8f8f590f8832c28661b73c21b68","impliedFormat":99},{"version":"072bfd97fc61c894ef260723f43a416d49ebd8b703696f647c8322671c598873","impliedFormat":99},{"version":"e70875232f5d5528f1650dd6f5c94a5bed344ecf04bdbb998f7f78a3c1317d02","impliedFormat":99},{"version":"8e495129cb6cd8008de6f4ff8ce34fe1302a9e0dcff8d13714bd5593be3f7898","impliedFormat":99},{"version":"0345bc0b1067588c4ea4c48e34425d3284498c629bc6788ebc481c59949c9037","impliedFormat":99},{"version":"e30f5b5d77c891bc16bd65a2e46cd5384ea57ab3d216c377f482f535db48fc8f","impliedFormat":99},{"version":"f113afe92ee919df8fc29bca91cab6b2ffbdd12e4ac441d2bb56121eb5e7dbe3","impliedFormat":99},{"version":"49d567cc002efb337f437675717c04f207033f7067825b42bb59c9c269313d83","impliedFormat":99},{"version":"1d248f707d02dc76555298a934fba0f337f5028bb1163ce59cd7afb831c9070f","impliedFormat":99},{"version":"5d8debffc9e7b842dc0f17b111673fe0fc0cca65e67655a2b543db2150743385","impliedFormat":99},{"version":"5fccbedc3eb3b23bc6a3a1e44ceb110a1f1a70fa8e76941dce3ae25752caa7a9","impliedFormat":99},{"version":"f4031b95f3bab2b40e1616bd973880fb2f1a97c730bac5491d28d6484fac9560","impliedFormat":99},{"version":"dbe75b3c5ed547812656e7945628f023c4cd0bc1879db0db3f43a57fb8ec0e2b","impliedFormat":99},{"version":"b754718a546a1939399a6d2a99f9022d8a515f2db646bab09f7d2b5bff3cbb82","impliedFormat":99},{"version":"2eef10fb18ed0b4be450accf7a6d5bcce7b7f98e02cac4e6e793b7ad04fc0d79","impliedFormat":99},{"version":"c46f471e172c3be12c0d85d24876fedcc0c334b0dab48060cdb1f0f605f09fed","impliedFormat":99},{"version":"7d6ddeead1d208588586c58c26e4a23f0a826b7a143fb93de62ed094d0056a33","impliedFormat":99},{"version":"7c5782291ff6e7f2a3593295681b9a411c126e3736b83b37848032834832e6b9","impliedFormat":99},{"version":"3a3f09df6258a657dd909d06d4067ee360cd2dccc5f5d41533ae397944a11828","impliedFormat":99},{"version":"ea54615be964503fec7bce04336111a6fa455d3e8d93d44da37b02c863b93eb8","impliedFormat":99},{"version":"2a83694bc3541791b64b0e57766228ea23d92834df5bf0b0fcb93c5bb418069c","impliedFormat":99},{"version":"b5913641d6830e7de0c02366c08b1d26063b5758132d8464c938e78a45355979","impliedFormat":99},{"version":"46c095d39c1887979d9494a824eda7857ec13fb5c20a6d4f7d02c2975309bf45","impliedFormat":99},{"version":"f6e02ca076dc8e624aa38038e3488ebd0091e2faea419082ed764187ba8a6500","impliedFormat":99},{"version":"4d49e8a78aba1d4e0ad32289bf8727ae53bc2def9285dff56151a91e7d770c3e","impliedFormat":99},{"version":"63315cf08117cc728eab8f3eec8801a91d2cd86f91d0ae895d7fd928ab54596d","impliedFormat":99},{"version":"a14a6f3a5636bcaebfe9ec2ccfa9b07dc94deb1f6c30358e9d8ea800a1190d5e","impliedFormat":99},{"version":"21206e7e81876dabf2a7af7aa403f343af1c205bdcf7eff24d9d7f4eee6214c4","impliedFormat":99},{"version":"cd0a9f0ffec2486cad86b7ef1e4da42953ffeb0eb9f79f536e16ff933ec28698","impliedFormat":99},{"version":"f609a6ec6f1ab04dba769e14d6b55411262fd4627a099e333aa8876ea125b822","impliedFormat":99},{"version":"6d8052bb814be030c64cb22ca0e041fe036ad3fc8d66208170f4e90d0167d354","impliedFormat":99},{"version":"851f72a5d3e8a2bf7eeb84a3544da82628f74515c92bdf23c4a40af26dcc1d16","impliedFormat":99},{"version":"59692a7938aab65ea812a8339bbc63c160d64097fe5a457906ea734d6f36bcd4","impliedFormat":99},{"version":"8cb3b95e610c44a9986a7eab94d7b8f8462e5de457d5d10a0b9c6dd16bde563b","impliedFormat":99},{"version":"f571713abd9a676da6237fe1e624d2c6b88c0ca271c9f1acc1b4d8efeea60b66","impliedFormat":99},{"version":"16c5d3637d1517a3d17ed5ebcfbb0524f8a9997a7b60f6100f7c5309b3bb5ac8","impliedFormat":99},{"version":"ca1ec669726352c8e9d897f24899abf27ad15018a6b6bcf9168d5cd1242058ab","impliedFormat":99},{"version":"bffb1b39484facf6d0c5d5feefe6c0736d06b73540b9ce0cf0f12da2edfd8e1d","impliedFormat":99},{"version":"f1663c030754f6171b8bb429096c7d2743282de7733bccd6f67f84a4c588d96e","impliedFormat":99},{"version":"dd09693285e58504057413c3adc84943f52b07d2d2fd455917f50fa2a63c9d69","impliedFormat":99},{"version":"d94c94593d03d44a03810a85186ae6d61ebeb3a17a9b210a995d85f4b584f23d","impliedFormat":99},{"version":"c7c3bf625a8cb5a04b1c0a2fbe8066ecdbb1f383d574ca3ffdabe7571589a935","impliedFormat":99},{"version":"7a2f39a4467b819e873cd672c184f45f548511b18f6a408fe4e826136d0193bb","impliedFormat":99},{"version":"f8a0ae0d3d4993616196619da15da60a6ec5a7dfaf294fe877d274385eb07433","impliedFormat":99},{"version":"2cca80de38c80ef6c26deb4e403ca1ff4efbe3cf12451e26adae5e165421b58d","impliedFormat":99},{"version":"0070d3e17aa5ad697538bf865faaff94c41f064db9304b2b949eb8bcccb62d34","impliedFormat":99},{"version":"53df93f2db5b7eb8415e98242c1c60f6afcac2db44bce4a8830c8f21eee6b1dd","impliedFormat":99},{"version":"d67bf28dc9e6691d165357424c8729c5443290367344263146d99b2f02a72584","impliedFormat":99},{"version":"932557e93fbdf0c36cc29b9e35950f6875425b3ac917fa0d3c7c2a6b4f550078","impliedFormat":99},{"version":"e3dc7ec1597fb61de7959335fb7f8340c17bebf2feb1852ed8167a552d9a4a25","impliedFormat":99},{"version":"b64e15030511c5049542c2e0300f1fe096f926cf612662884f40227267f5cd9f","impliedFormat":99},{"version":"1932796f09c193783801972a05d8fb1bfef941bb46ac76fbe1abb0b3bfb674fa","impliedFormat":99},{"version":"d9575d5787311ee7d61ad503f5061ebcfaf76b531cfecce3dc12afb72bb2d105","impliedFormat":99},{"version":"5b41d96c9a4c2c2d83f1200949f795c3b6a4d2be432b357ad1ab687e0f0de07c","impliedFormat":99},{"version":"38ec829a548e869de4c5e51671245a909644c8fb8e7953259ebb028d36b4dd06","impliedFormat":99},{"version":"20c2c5e44d37dac953b516620b5dba60c9abd062235cdf2c3bfbf722d877a96b","impliedFormat":99},{"version":"875fe6f7103cf87c1b741a0895fda9240fed6353d5e7941c8c8cbfb686f072b4","impliedFormat":99},{"version":"c0ccccf8fbcf5d95f88ed151d0d8ce3015aa88cf98d4fd5e8f75e5f1534ee7ae","impliedFormat":99},{"version":"1b1f4aba21fd956269ced249b00b0e5bfdbd5ebd9e628a2877ab1a2cf493c919","impliedFormat":99},{"version":"939e3299952dff0869330e3324ba16efe42d2cf25456d7721d7f01a43c1b0b34","impliedFormat":99},{"version":"f0a9b52faec508ba22053dedfa4013a61c0425c8b96598cef3dea9e4a22637c6","impliedFormat":99},{"version":"d5b302f50db61181adc6e209af46ae1f27d7ef3d822de5ea808c9f44d7d219fd","impliedFormat":99},{"version":"19131632ba492c83e8eeadf91a481def0e0b39ffc3f155bc20a7f640e0570335","impliedFormat":99},{"version":"4581c03abea21396c3e1bb119e2fd785a4d91408756209cbeed0de7070f0ab5b","impliedFormat":99},{"version":"ebcd3b99e17329e9d542ef2ccdd64fddab7f39bc958ee99bbdb09056c02d6e64","impliedFormat":99},{"version":"4b148999deb1d95b8aedd1a810473a41d9794655af52b40e4894b51a8a4e6a6d","impliedFormat":99},{"version":"1781cc99a0f3b4f11668bb37cca7b8d71f136911e87269e032f15cf5baa339bf","impliedFormat":99},{"version":"33f1b7fa96117d690035a235b60ecd3cd979fb670f5f77b08206e4d8eb2eb521","impliedFormat":99},{"version":"01429b306b94ff0f1f5548ce5331344e4e0f5872b97a4776bd38fd2035ad4764","impliedFormat":99},{"version":"c1bc4f2136de7044943d784e7a18cb8411c558dbb7be4e4b4876d273cbd952af","impliedFormat":99},{"version":"5470f84a69b94643697f0d7ec2c8a54a4bea78838aaa9170189b9e0a6e75d2cf","impliedFormat":99},{"version":"36aaa44ee26b2508e9a6e93cd567e20ec700940b62595caf962249035e95b5e3","impliedFormat":99},{"version":"f8343562f283b7f701f86ad3732d0c7fd000c20fe5dc47fa4ed0073614202b4d","impliedFormat":99},{"version":"a53c572630a78cd99a25b529069c1e1370f8a5d8586d98e798875f9052ad7ad1","impliedFormat":99},{"version":"4ad3451d066711dde1430c544e30e123f39e23c744341b2dfd3859431c186c53","impliedFormat":99},{"version":"8069cbef9efa7445b2f09957ffbc27b5f8946fdbade4358fb68019e23df4c462","impliedFormat":99},{"version":"cd8b4e7ad04ba9d54eb5b28ac088315c07335b837ee6908765436a78d382b4c3","impliedFormat":99},{"version":"d533d8f8e5c80a30c51f0cbfe067b60b89b620f2321d3a581b5ba9ac8ffd7c3a","impliedFormat":99},{"version":"33f49f22fdda67e1ddbacdcba39e62924793937ea7f71f4948ed36e237555de3","impliedFormat":99},{"version":"710c31d7c30437e2b8795854d1aca43b540cb37cefd5900f09cfcd9e5b8540c4","impliedFormat":99},{"version":"b2c03a0e9628273bc26a1a58112c311ffbc7a0d39938f3878837ab14acf3bc41","impliedFormat":99},{"version":"a93beb0aa992c9b6408e355ea3f850c6f41e20328186a8e064173106375876c2","impliedFormat":99},{"version":"efdcba88fcd5421867898b5c0e8ea6331752492bd3547942dea96c7ebcb65194","impliedFormat":99},{"version":"a98e777e7a6c2c32336a017b011ba1419e327320c3556b9139413e48a8460b9a","impliedFormat":99},{"version":"ea44f7f8e1fe490516803c06636c1b33a6b82314366be1bd6ffa4ba89bc09f86","impliedFormat":99},{"version":"c25f22d78cc7f46226179c33bef0e4b29c54912bde47b62e5fdaf9312f22ffcb","impliedFormat":99},{"version":"d57579cfedc5a60fda79be303080e47dfe0c721185a5d95276523612228fcefc","impliedFormat":99},{"version":"a41630012afe0d4a9ff14707f96a7e26e1154266c008ddbd229e3f614e4d1cf7","impliedFormat":99},{"version":"298a858633dfa361bb8306bbd4cfd74f25ab7cc20631997dd9f57164bc2116d1","impliedFormat":99},{"version":"921782c45e09940feb232d8626a0b8edb881be2956520c42c44141d9b1ddb779","impliedFormat":99},{"version":"06117e4cc7399ce1c2b512aa070043464e0561f956bda39ef8971a2fcbcdbf2e","impliedFormat":99},{"version":"daccf332594b304566c7677c2732fed6e8d356da5faac8c5f09e38c2f607a4ab","impliedFormat":99},{"version":"4386051a0b6b072f35a2fc0695fecbe4a7a8a469a1d28c73be514548e95cd558","impliedFormat":99},{"version":"78e41de491fe25947a7fd8eeef7ebc8f1c28c1849a90705d6e33f34b1a083b90","impliedFormat":99},{"version":"3ccd198e0a693dd293ed22e527c8537c76b8fe188e1ebf20923589c7cfb2c270","impliedFormat":99},{"version":"2ebf2ee015d5c8008428493d4987e2af9815a76e4598025dd8c2f138edc1dcae","impliedFormat":99},{"version":"0dcc8f61382c9fcdafd48acc54b6ffda69ca4bb7e872f8ad12fb011672e8b20c","impliedFormat":99},{"version":"9db563287eb527ead0bcb9eb26fbec32f662f225869101af3cabcb6aee9259cf","impliedFormat":99},{"version":"068489bec523be43f12d8e4c5c337be4ff6a7efb4fe8658283673ae5aae14b85","impliedFormat":99},{"version":"838212d0dc5b97f7c5b5e29a89953de3906f72fce13c5ae3c5ade346f561d226","impliedFormat":99},{"version":"ddc78d29af824ad7587152ea523ed5d60f2bc0148d8741c5dacf9b5b44587b1b","impliedFormat":99},{"version":"019b522e3783e5519966927ceeb570eefcc64aba3f9545828a5fb4ae1fde53c6","impliedFormat":99},{"version":"b34623cc86497a5123de522afba770390009a56eebddba38d2aa5798b70b0a87","impliedFormat":99},{"version":"d2a8cbeb0c0caaf531342062b4b5c227118862879f6a25033e31fad00797b7eb","impliedFormat":99},{"version":"14891c20f15be1d0d42ecbbd63de1c56a4d745e3ea2b4c56775a4d5d36855630","impliedFormat":99},{"version":"e55a1f6b198a39e38a3cea3ffe916aab6fde7965c827db3b8a1cacf144a67cd9","impliedFormat":99},{"version":"f7910ccfe56131e99d52099d24f3585570dc9df9c85dd599a387b4499596dd4d","impliedFormat":99},{"version":"9409ac347c5779f339112000d7627f17ede6e39b0b6900679ce5454d3ad2e3c9","impliedFormat":99},{"version":"22dfe27b0aa1c669ce2891f5c89ece9be18074a867fe5dd8b8eb7c46be295ca1","impliedFormat":99},{"version":"684a5c26ce2bb7956ef6b21e7f2d1c584172cd120709e5764bc8b89bac1a10eb","impliedFormat":99},{"version":"93761e39ce9d3f8dd58c4327e615483f0713428fa1a230883eb812292d47bbe8","impliedFormat":99},{"version":"c66be51e3d121c163a4e140b6b520a92e1a6a8a8862d44337be682e6f5ec290a","impliedFormat":99},{"version":"66e486a9c9a86154dc9780f04325e61741f677713b7e78e515938bf54364fee2","impliedFormat":99},{"version":"d211bc80b6b6e98445df46fe9dd3091944825dd924986a1c15f9c66d7659c495","impliedFormat":99},{"version":"8dd2b72f5e9bf88939d066d965144d07518e180efec3e2b6d06ae5e725d84c7d","impliedFormat":99},{"version":"949cb88e315ab1a098c3aa4a8b02496a32b79c7ef6d189eee381b96471a7f609","impliedFormat":99},{"version":"bc43af2a5fa30a36be4a3ed195ff29ffb8067bf4925aa350ace9d9f18f380cc2","impliedFormat":99},{"version":"36844f94161a10af6586f50b95d40baa244215fea31055f27bcbea42cd30373e","impliedFormat":99},{"version":"8428e71f6d1b63acf55ceb56244aad9cf07678cf9626166e4aded15e3d252f8a","impliedFormat":99},{"version":"11505212ab24aa0f06d719a09add4be866e26f0fc15e96a1a2a8522c0c6a73a8","impliedFormat":99},{"version":"55828c4ddfee3bc66d533123ff52942ae67a2115f7395b2a2e0a22cea3ca64e7","impliedFormat":99},{"version":"c44bb0071cededc08236d57d1131c44339c1add98b029a95584dfe1462533575","impliedFormat":99},{"version":"7a4935af71877da3bbc53938af00e5d4f6d445ef850e1573a240447dcb137b5c","impliedFormat":99},{"version":"4e313033202712168ecc70a6d830964ad05c9c93f81d806d7a25d344f6352565","impliedFormat":99},{"version":"8a1fc69eaf8fc8d447e6f776fbfa0c1b12245d7f35f1dbfb18fbc2d941f5edd8","impliedFormat":99},{"version":"afb9b4c8bd38fb43d38a674de56e6f940698f91114fded0aa119de99c6cd049a","impliedFormat":99},{"version":"1d277860f19b8825d027947fca9928ee1f3bfaa0095e85a97dd7a681b0698dfc","impliedFormat":99},{"version":"6d32122bb1e7c0b38b6f126d166dff1f74c8020f8ba050248d182dcafc835d08","impliedFormat":99},{"version":"cfac5627d337b82d2fbeff5f0f638b48a370a8d72d653327529868a70c5bc0f8","impliedFormat":99},{"version":"8a826bc18afa4c5ed096ceb5d923e2791a5bae802219e588a999f535b1c80492","impliedFormat":99},{"version":"73e94021c55ab908a1b8c53792e03bf7e0d195fee223bdc5567791b2ccbfcdec","impliedFormat":99},{"version":"5f73eb47b37f3a957fe2ac6fe654648d60185908cab930fc01c31832a5cb4b10","impliedFormat":99},{"version":"cb6372a2460010a342ba39e06e1dcfd722e696c9d63b4a71577f9a3c72d09e0a","impliedFormat":99},{"version":"1e289698069f553f36bbf12ee0084c492245004a69409066faceb173d2304ec4","impliedFormat":99},{"version":"f1ca71145e5c3bba4d7f731db295d593c3353e9a618b40c4af0a4e9a814bb290","impliedFormat":99},{"version":"ac12a6010ff501e641f5a8334b8eaf521d0e0739a7e254451b6eea924c3035c7","impliedFormat":99},{"version":"97395d1e03af4928f3496cc3b118c0468b560765ab896ce811acb86f6b902b5c","impliedFormat":99},{"version":"7dcfbd6a9f1ce1ddf3050bd469aa680e5259973b4522694dc6291afe20a2ae28","impliedFormat":99},{"version":"6e545419ad200ae4614f8e14d32b7e67e039c26a872c0f93437b0713f54cde53","impliedFormat":99},{"version":"efc225581aae9bb47d421a1b9f278db0238bc617b257ce6447943e59a2d1621e","impliedFormat":99},{"version":"8833b88e26156b685bc6f3d6a014c2014a878ffbd240a01a8aee8a9091014e9c","impliedFormat":99},{"version":"7a2a42a1ac642a9c28646731bd77d9849cb1a05aa1b7a8e648f19ab7d72dd7dc","impliedFormat":99},{"version":"4d371c53067a3cc1a882ff16432b03291a016f4834875b77169a2d10bb1b023e","impliedFormat":99},{"version":"99b38f72e30976fd1946d7b4efe91aa227ecf0c9180e1dd6502c1d39f37445b4","impliedFormat":99},{"version":"df1bcf0b1c413e2945ce63a67a1c5a7b21dbbec156a97d55e9ea0eed90d2c604","impliedFormat":99},{"version":"6e2011a859fa435b1196da1720be944ed59c668bb42d2f2711b49a506b3e4e90","impliedFormat":99},{"version":"b4bfa90fac90c6e0d0185d2fe22f059fec67587cc34281f62294f9c4615a8082","impliedFormat":99},{"version":"036d363e409ebe316a6366aff5207380846f8f82e100c2e3db4af5fe0ad0c378","impliedFormat":99},{"version":"5ae6642588e4a72e5a62f6111cb750820034a7fbe56b5d8ec2bcb29df806ce52","impliedFormat":99},{"version":"6fca09e1abc83168caf36b751dec4ddda308b5714ec841c3ff0f3dc07b93c1b8","impliedFormat":99},{"version":"2f7268e6ac610c7122b6b416e34415ce42b51c56d080bef41786d2365f06772d","impliedFormat":99},{"version":"9a07957f75128ed0be5fc8a692a14da900878d5d5c21880f7c08f89688354aa4","impliedFormat":99},{"version":"8b6f3ae84eab35c50cf0f1b608c143fe95f1f765df6f753cd5855ae61b3efbe2","impliedFormat":99},{"version":"992491d83ff2d1e7f64a8b9117daee73724af13161f1b03171f0fa3ffe9b4e3e","impliedFormat":99},{"version":"12bcf6af851be8dd5f3e66c152bb77a83829a6a8ba8c5acc267e7b15e11aa9ab","impliedFormat":99},{"version":"e2704efc7423b077d7d9a21ddb42f640af1565e668d5ec85f0c08550eff8b833","impliedFormat":99},{"version":"e0513c71fd562f859a98940633830a7e5bcd7316b990310e8bb68b1d41d676a3","impliedFormat":99},{"version":"712071b9066a2d8f4e11c3b8b3d5ada6253f211a90f06c6e131cff413312e26d","impliedFormat":99},{"version":"5a187a7bc1e7514ef1c3d6eaafa470fc45541674d8fca0f9898238728d62666a","impliedFormat":99},{"version":"0c06897f7ab3830cef0701e0e083b2c684ed783ae820b306aedd501f32e9562d","impliedFormat":99},{"version":"56cc6eae48fd08fa709cf9163d01649f8d24d3fea5806f488d2b1b53d25e1d6c","impliedFormat":99},{"version":"57a925b13947b38c34277d93fb1e85d6f03f47be18ca5293b14082a1bd4a48f5","impliedFormat":99},{"version":"9d9d64c1fa76211dd529b6a24061b8d724e2110ee55d3829131bca47f3fe4838","impliedFormat":99},{"version":"c13042e244bb8cf65586e4131ef7aed9ca33bf1e029a43ed0ebab338b4465553","impliedFormat":99},{"version":"54be9b9c71a17cb2519b841fad294fa9dc6e0796ed86c8ac8dd9d8c0d1c3a631","impliedFormat":99},{"version":"10881be85efd595bef1d74dfa7b9a76a5ab1bfed9fb4a4ca7f73396b72d25b90","impliedFormat":99},{"version":"925e71eaa87021d9a1215b5cf5c5933f85fe2371ddc81c32d1191d7842565302","impliedFormat":99},{"version":"faed0b3f8979bfbfb54babcff9d91bd51fda90931c7716effa686b4f30a09575","impliedFormat":99},{"version":"53c72d68328780f711dbd39de7af674287d57e387ddc5a7d94f0ffd53d8d3564","impliedFormat":99},{"version":"51129924d359cdebdccbf20dbabc98c381b58bfebe2457a7defed57002a61316","impliedFormat":99},{"version":"7270a757071e3bc7b5e7a6175f1ac9a4ddf4de09f3664d80cb8805138f7d365b","impliedFormat":99},{"version":"ea7b5c6a79a6511cdeeedc47610370be1b0e932e93297404ef75c90f05fc1b61","impliedFormat":99},"ea7a1b1f7a1d44d222d98a01a836f19ac22602324d1c3faf755303adf270f0fb","183e02d315b3fc619b0dcd0a5762647534473f62a4e9018b76744f3ba55967bc",{"version":"e516240bc1e5e9faef055432b900bc0d3c9ca7edce177fdabbc6c53d728cced8","impliedFormat":99},{"version":"5402765feacf44e052068ccb4535a346716fa1318713e3dae1af46e1e85f29a9","impliedFormat":99},{"version":"e16ec5d4796e7a765810efee80373675cedc4aa4814cf7272025a88addf5f0be","impliedFormat":99},{"version":"1f57157fcd45f9300c6efcfc53e2071fbe43396b0a7ed2701fbd1efb5599f07f","impliedFormat":99},{"version":"9f1886f3efddfac35babcada2d454acd4e23164345d11c979966c594af63468b","impliedFormat":99},{"version":"a3541c308f223863526df064933e408eba640c0208c7345769d7dc330ad90407","impliedFormat":99},{"version":"59af208befeb7b3c9ab0cb6c511e4fec54ede11922f2ffb7b497351deaf8aa2e","impliedFormat":99},{"version":"928b16f344f6cddaba565da8238f4cf2ddf12fe03eb426ab46a7560e9b3078fa","impliedFormat":99},{"version":"120bdf62bccef4ea96562a3d30dd60c9d55481662f5cf31c19725f56c0056b34","impliedFormat":99},{"version":"39e0da933908de42ba76ea1a92e4657305ae195804cfaa8760664e80baac2d6a","impliedFormat":99},{"version":"55ce6ca8df9d774d60cef58dd5d716807d5cc8410b8b065c06d3edac13f2e726","impliedFormat":99},{"version":"788a0faf3f28d43ce3793b4147b7539418a887b4a15a00ffb037214ed8f0b7f6","impliedFormat":99},{"version":"a3e66e7b8ccdab967cd4ada0f178151f1c42746eabb589a06958482fd4ed354e","impliedFormat":99},{"version":"bf45a2964a872c9966d06b971d0823daecbd707f97e927f2368ba54bb1b13a90","impliedFormat":99},{"version":"39973a12c57e06face646fb79462aabe8002e5523eec4e86e399228eb34b32c9","impliedFormat":99},{"version":"f01091e9b5028acfb38208113ae051fad8a0b4b8ec1f7137a2a5cf903c47eefc","impliedFormat":99},{"version":"b3e87824c9e7e3a3be7f76246e45c8d603ce83d116733047200b3aa95875445b","impliedFormat":99},{"version":"7e1f7f9ae14e362d41167dc861be6a8d76eca30dde3a9893c42946dc5a5fc686","impliedFormat":99},{"version":"9308ef3b9433063ac753a55c3f36d6d89fa38a8e6c51e05d9d8329c7f1174f24","impliedFormat":99},{"version":"cd3bb1aa24726a0abd67558fde5759fe968c3c6aa3ec7bad272e718851502894","impliedFormat":99},{"version":"1ae0f22c3b8420b5c2fec118f07b7ebd5ae9716339ab3477f63c603fe7a151c8","impliedFormat":99},{"version":"919ff537fff349930acc8ad8b875fd985a17582fb1beb43e2f558c541fd6ecd9","impliedFormat":99},{"version":"4e67811e45bae6c44bd6f13a160e4188d72fd643665f40c2ac3e8a27552d3fd9","impliedFormat":99},{"version":"3d1450fd1576c1073f6f4db9ebae5104e52e2c4599afb68d7d6c3d283bdbaf4f","impliedFormat":99},{"version":"c072af873c33ff11af126c56a846dfada32461b393983a72b6da7bff373e0002","impliedFormat":99},{"version":"de66e997ea5376d4aeb16d77b86f01c7b7d6d72fbb738241966459d42a4089e0","impliedFormat":99},{"version":"d77ea3b91e4bc44d710b7c9487c2c6158e8e5a3439d25fc578befeb27b03efd7","impliedFormat":99},{"version":"a3d5c695c3d1ebc9b0bd55804afaf2ac7c97328667cbeedf2c0861b933c45d3e","impliedFormat":99},{"version":"270724545d446036f42ddea422ee4d06963db1563ccc5e18b01c76f6e67968ae","impliedFormat":99},{"version":"85441c4f6883f7cfd1c5a211c26e702d33695acbabec8044e7fa6831ed501b45","impliedFormat":99},{"version":"0f268017a6b1891fdeea69c2a11d576646d7fd9cdfc8aac74d003cd7e87e9c5a","impliedFormat":99},{"version":"9ece188c336c80358742a5a0279f2f550175f5a07264349d8e0ce64db9701c0b","impliedFormat":99},{"version":"cf41b0fc7d57643d1a8d21af07b0247db2f2d7e2391c2e55929e9c00fbe6ab9a","impliedFormat":99},{"version":"11e7ddddd9eddaac56a6f23d8699ae7a94c2a55ae8c986fdabc719d3c3e875a1","impliedFormat":99},{"version":"dd129c2d348be7dbf9f15d34661defdfc11ee00628ca6f7161bead46095c6bc3","impliedFormat":99},{"version":"c38d8e7cfc64bbfc14a63346388249c1cfa2cc02166c5f37e5a57da4790ce27f","impliedFormat":99},"0c018ef233861ab82b9807d4e50fd7c22ee5a4c7f9387e17abf5272b8c80b58a",{"version":"56208c500dcb5f42be7e18e8cb578f257a1a89b94b3280c506818fed06391805","impliedFormat":1},{"version":"0c94c2e497e1b9bcfda66aea239d5d36cd980d12a6d9d59e66f4be1fa3da5d5a","impliedFormat":1},{"version":"eb9271b3c585ea9dc7b19b906a921bf93f30f22330408ffec6df6a22057f3296","impliedFormat":1},{"version":"aa4a927d0c7239dff845a64e676c71aeed2bbda89a7fb486baab22eb7688ba1d","impliedFormat":1},{"version":"340a990742a00862049b378aaa482b5bb8323d443c799dded51ce711f4f8eb51","impliedFormat":1},{"version":"89eeeebbc612a079c6e7ebe0bde08e06fbc46cfeaebf6157ea3051ed55967b10","impliedFormat":1},{"version":"4c72f66622e266b542fb097f4d1fe88eb858b88b98414a13ef3dd901109e03a1","impliedFormat":1},{"version":"23a933d83f3a8d595b35f3827c5e68239fb4f6eb44e96389269d183fe7ff09ba","impliedFormat":1},{"version":"2acad3ae616a9fb5a8c3d4d7bb5edb11d1d0102372ee939e7fc64359fec4046e","impliedFormat":1},{"version":"c812eabb7d2e13c8e72e216208448f92341a4094dd107cbb0bdb2cb23d1a83e7","impliedFormat":1},{"version":"f734b58ea162765ff4d4a36f671ee06da898921e985a2064510f4925ec1ed062","affectsGlobalScope":true,"impliedFormat":1},{"version":"55c0569d0b70dbc0bb9a811469a1e2a7b8e2bab2d70c013f2e40dfb2d2803d05","impliedFormat":1},{"version":"37f96daaddc2dd96712b2e86f3901f477ac01a5c2539b1bc07fd609d62039ee1","impliedFormat":1},{"version":"9c5c84c449a3d74e417343410ba9f1bd8bfeb32abd16945a1b3d0592ded31bc8","impliedFormat":1},{"version":"a7f09d2aaf994dbfd872eda4f2411d619217b04dbe0916202304e7a3d4b0f5f8","impliedFormat":1},{"version":"a66ebe9a1302d167b34d302dd6719a83697897f3104d255fe02ff65c47c5814e","impliedFormat":99},{"version":"a7f23fecdccf1504dae27c359db676d0a1fbaaeb400b55959078924e4c3a4992","impliedFormat":1},{"version":"bee66a62aa1da254412bb2c3c8c1a0dd12efea0722d35cc6ea7b5fdaa6778fd1","impliedFormat":1},{"version":"05d80364872e31465f8a1eaf2697e4fc418f78aa336f4cea68620a23f1379f6f","impliedFormat":1},{"version":"7345ba3b9eb2182d8cdc4c961b62847c3c9918985179ddefd5ca58a80d8b9e6a","impliedFormat":1},{"version":"81c4a0e6de3d5674ec3a721e04b3eb3244180bda86a22c4185ecac0e3f051cd8","impliedFormat":1},{"version":"39975a01d837394bcac2559639e88ecdc4cfd22433327b46ea6f78eb2c584813","impliedFormat":1},{"version":"7261cabedede09ebfd50e135af40be34f76fb9dbc617e129eaec21b00161ae86","impliedFormat":1},{"version":"ea554794a0d4136c5c6ea8f59ae894c3c0848b17848468a63ed5d3a307e148ae","impliedFormat":1},{"version":"2c378d9368abcd2eba8c29b294d40909845f68557bc0b38117e4f04fc56e5f9c","impliedFormat":1},{"version":"9b048390bcffe88c023a4cd742a720b41d4cd7df83bc9270e6f2339bf38de278","affectsGlobalScope":true,"impliedFormat":1},{"version":"c60b14c297cc569c648ddaea70bc1540903b7f4da416edd46687e88a543515a1","impliedFormat":1},{"version":"acfa00e5599216bcb8c9f3095e5fec4aeddfcc65aabe0eac7e8dbc51e33691c9","impliedFormat":1},{"version":"922d8f0f46dbe9fb80def96f7bcd9d5c1a6c0022d71023afa9eb7b45189d61f2","impliedFormat":1},{"version":"90588fb5ef85f4a8a4234e8062eb97bd3c8114dfb86a0c67f62685969222da8b","impliedFormat":1},{"version":"6ce50ada4bc9d2ad69927dce35cead36da337a618de0a2daaaeeafe38c692597","impliedFormat":1},{"version":"13b8d0a9b0493191f15d11a5452e7c523f811583a983852c1c8539ab2cfdae7c","impliedFormat":1},{"version":"8932771f941e3f8f153a950c65707d0611f30f577256aa59d4b92eda1c3d8f32","impliedFormat":1},{"version":"df6251bd4b5fad52759bfe96e8ab8f2ce625d0b6739b825209b263729a9c321e","impliedFormat":1},{"version":"846068dbe466864be6e2cae9993a4e3ac492a5cb05a36d5ce36e98690fde41f4","impliedFormat":1},{"version":"94c8c60f751015c8f38923e0d1ae32dd4780b572660123fa087b0cf9884a68a8","impliedFormat":1},{"version":"db8747c785df161ef65237bac36a7716168e5ebf18976ab16fd2fff69cf9c6ce","impliedFormat":1},{"version":"3085abdf921a6d225ad037c89eb2ba26a4c3b2c262f842dd3061949d1969b784","impliedFormat":1},{"version":"8e8f7b36675be31c4e9538529c30a552538c42ff866ba59fe70f23ba18479c5a","impliedFormat":1},{"version":"f4f7fbf0e5bf2097ddee2c998cca04b063f6f9cdcb255e728c0e85967119f9e5","impliedFormat":1},{"version":"c5b47653a15ec7c0bde956e77e5ca103ddc180d40eb4b311e4a024ef7c668fb0","impliedFormat":1},{"version":"223709d7c096b4e2bb00390775e43481426c370ac8e270de7e4c36d355fc8bc9","impliedFormat":1},{"version":"0528a80462b04f2f2ad8bee604fe9db235db6a359d1208f370a236e23fc0b1e0","impliedFormat":1},{"version":"17fb3716df78592be07500e9a90bd8c9424dd70c6201226886a8e71b9d2af396","impliedFormat":1},{"version":"82ef7d775e89b200380d8a14dc6af6d985a45868478773d98850ea2449f1be56","impliedFormat":1},{"version":"b86720947f763bbb869c2b183f8e58bca9fa089ed8f9c5a1574b2bea18cfbc02","impliedFormat":1},{"version":"fb7e20b94d23d989fa7c7d20fccebef31c1ef2d3d9ca179cadba6516e4e918ad","impliedFormat":1},{"version":"8326f735a1f0d2b4ad20539cda4e0d2e7c5fc0b534e3c0d503d5ed20a5711009","impliedFormat":1},{"version":"8d720cd4ee809af1d81f4ce88f02168568d5fded574d89875afd8fe7afd9549e","impliedFormat":1},{"version":"df87c2628c5567fd71dc0b765c845b0cbfef61e7c2e56961ac527bfb615ea639","impliedFormat":1},{"version":"659a83f1dd901de4198c9c2aa70e4a46a9bd0c41ce8a42ee26f2dbff5e86b1f3","impliedFormat":1},{"version":"1db5c2491eebd894eb9be03408601cddfe1b08357d021aeb86c3fb6c329a7843","impliedFormat":1},{"version":"224f85b48786de61fb0b018fbea89620ebec6289179daa78ed33c0f83014fc75","impliedFormat":1},{"version":"05fbfcb5c5c247a8b8a1d97dd8557c78ead2fff524f0b6380b4ac9d3e35249fb","impliedFormat":1},{"version":"322f70408b4e1f550ecc411869707764d8b28da3608e4422587630b366daf9de","impliedFormat":1},{"version":"acb93abc527fa52eb2adc5602a7c3c0949861f8e4317a187bb5c3372f872eff4","impliedFormat":1},{"version":"c4ef9e9e0fcb14b52c97ce847fb26a446b7d668d9db98a7de915a22c46f44c37","impliedFormat":1},{"version":"0e447b14e81b5b3e5d83cbea58b734850f78fb883f810e46d3dedba1a5124658","impliedFormat":1},{"version":"045f36d3a830b5ae1b7586492e1a2368d0e4b4209fa656f529fd6f6bb9ac7ced","impliedFormat":1},{"version":"929939785efdef0b6781b7d3a7098238ea3af41be010f18d6627fd061b6c9edf","impliedFormat":1},{"version":"fca68ac3b92725dbf3dac3f9fbc80775b66d2a9c642e75595a4a11a2095b3c9a","impliedFormat":1},{"version":"245d13141d7f9ec6edd36b14844b247e0680950c1c3289774d431cbbd47e714e","impliedFormat":1},{"version":"4326dc453ff5bf36ad778e93b7021cdd9abcfc4efe75a5c04032324f404af558","impliedFormat":1},{"version":"27b47fbd2f2d0d3cd44b8c7231c800f8528949cc56f421093e2b829d6976f173","impliedFormat":1},{"version":"0795a213434963328e8b60e65a9d03a88efc138ae171bbcca39d9000c040e7a4","impliedFormat":1},{"version":"fc745bebefc96e2a518a2d559af6850626cada22a75f794fd40a17aae11e2d54","impliedFormat":1},{"version":"2b0fe9ba00d0d593fb475d4204214a0f604ad8a56f22a5f05c378b52205ef36b","impliedFormat":1},{"version":"3d94a259051acf8acd2108cee57ad58fee7f7b278de76a7a5746f0656eecbff6","impliedFormat":1},{"version":"46097d076be332463ea64865c41d232865614cf358a11af75095dd9cef2871cc","impliedFormat":1},{"version":"6e18a70a7c64e6fe578a8f3ecc1dd562cd0bf6843bbf8e65fde37cf63b9a8ea8","impliedFormat":1},{"version":"3f3526aea8d29f0c53f8fb99201c770c87c357b5e87349aca8494bfd0c145c26","impliedFormat":1},{"version":"6ee92d844e5a1c0eb562d110676a3a17f00d2cd2ea2aaaff0a98d7881b9a4041","impliedFormat":1},{"version":"b9dc36d1f7c5c2350feafb55c090127104e59b7d2a20729b286dab00d70e283d","impliedFormat":1},{"version":"45d3f1d53fa99783a5e3c29debb065d6060d0db650a6a1055308a8619bd6b263","impliedFormat":1},{"version":"a14febaf38fd75a88620a0808732cf9841afc403da2dc3de7a6fc9a49d36bdbc","impliedFormat":1},{"version":"6052522a593f094cfee0e99c76312a229cf2d49ac2e75095af83813ec9f4b109","impliedFormat":1},{"version":"a0ceb6ce93981581494bae078b971b17e36b67502a36a056966940377517091d","impliedFormat":1},{"version":"a63ce903dd08c662702e33700a3d28ca66ed21ac0591e1dbf4a0b309ae80e690","impliedFormat":1},{"version":"2b63d2725550866e0f2b56b2394ce001ebf1145cb4b04dc9daa29d73867b878c","impliedFormat":1},{"version":"e885933b92f26fa3204403999eddc61651cd3109faf8bffa4f6b6e558b0ab2fa","impliedFormat":1},{"version":"bd834465d4395ac3d8d55e94bf2a39c1f5e9be719c99340957b3b6a3a85ec66a","impliedFormat":1},{"version":"fca1059bad0f439021325957b33c933bca31475e4a3a36dda02140f47ffaf8ed","impliedFormat":1},{"version":"6e2d2b63c278fd1c8dd54da2328622c964f50afa62978ed1a73ccd85e99a4fc7","impliedFormat":1},{"version":"e151e41c82004cf09b7ea863f591348c9035e0f7a69d4189cbac89cc9611b89d","impliedFormat":1},{"version":"0778cfe0d671f153a9d30655b81d5721dc7af6ebe4b654c57417b7cba3649b1c","impliedFormat":1},{"version":"b83ffe71adbac91c5596133251e5ec0c9e6664017ee5b776841effe93de8f466","impliedFormat":1},{"version":"61ecf051972c69e7c992bab9cf74c511ecba51b273c4e1590574d97a542bd4ea","impliedFormat":1},{"version":"068f5afbae92a20a5fcd9cfce76f7b90de2c59a952396b5da225b61f95a1d60a","impliedFormat":1},{"version":"bdf5e07a22e661de2c7115e8364b98ef399c24c9fe62035dc1ac945a9dd3372a","impliedFormat":1},{"version":"4e024e2530feda4719448af6bdd0c0c7cfa28d1a4887900f4886bec70cd48fea","impliedFormat":1},{"version":"99c88ea4f93e883d10c04961dbf37c403c4f3c8444948b86effec0bf52176d0e","impliedFormat":1},{"version":"e88f3729fcc3d38d2a1b3cdcbd773d13d72ea3bdf4d0c0c784818e3bfbe7998d","impliedFormat":1},{"version":"f25b1264b694a647593b0a9a044a267098aaf249d646981a7f0503b8bb185352","impliedFormat":1},{"version":"964d0862660f8e46675c83793f42ab2af336f3d6106dee966a4053d5dc433063","impliedFormat":1},{"version":"292ad4203c181f33beb9eb8fe7c6aaae29f62163793278a7ffc2fcc0d0dbed19","impliedFormat":1},{"version":"aa8e5ac3f73eede931d5da74ef1797c174b00854ac701ead5c4a7d6ce4a49029","impliedFormat":1},{"version":"f1a4ca3688d951daa2d7740da5a0827fa34d4a7709eed7b8225215986ee87108","impliedFormat":1},{"version":"08e159b5ef9d14bdd329457c5cbe181e84f13c4ff2546a24b9eb9129b0c71c46","impliedFormat":1},{"version":"f8453a3fe0fe49ab718357120bec2b8205e15eb91ff62eada60a4780458fa91e","impliedFormat":1},{"version":"06f186bb9a6408ef8563dbf17d53cbe23e68422518b49b96afac732844ddbaa1","impliedFormat":1},{"version":"525f9c06245b5b43b1237cfd757396fd7fd8090e5d6a4ded758c7ce17a04bf42","impliedFormat":1},{"version":"04bc74b8fa987f140989e9f4d6dc37f04a307417af3e0a3767baa1eef4964e10","impliedFormat":1},{"version":"6a9d3aa58228faa62ec3d9e305f472a24441f22a8d028234577beb592ec295b2","impliedFormat":1},{"version":"683e2d454f64394931d233740b762dabc379e3ce5c4c4ad4747cdbd6d5fd8e8d","impliedFormat":1},{"version":"18594ddc7900f3e477645819bce4d824989ad296e3d70bdcdce13cabc5d97335","impliedFormat":1},{"version":"9376cce4d849f1d6ad2cb0048807c77cfeb78cee6e29b61dcfe74c7ab2980e18","impliedFormat":1},{"version":"2698935791615907eb632186119dfc307363d6a163f26017084009e44ea261f2","impliedFormat":1},{"version":"4edfc4848068bf58016856dfeb27341c15679884575e1a501e2389a1fea5c579","impliedFormat":1},{"version":"0c3d7a094ef401b3c36c8e3d88382a7e7a8b1e4f702769eba861d03db559876b","impliedFormat":1},{"version":"d3c3280f081f28e846239d27c2f77a41417e6a19f39267d20a282fd07ef36b96","impliedFormat":1},{"version":"7e3a4800683a39375bc99f0d53b21328b0a0377ab7cbb732c564ca7ca04d9b37","impliedFormat":1},{"version":"c777b498a93261d6caa5dbd1187090b79f0263a03526c64ea4f844a679e8299e","impliedFormat":1},{"version":"b4677e9d8802a82455a0f03a211b85f5d4b04cfbc89fc9aa691695b8e70df326","impliedFormat":1},{"version":"7cb0d946957daea11f78a31b85de435e00bcd8964eba66d3e8056ba9d14b9c55","impliedFormat":1},{"version":"b3e441cdb9d9e55e6e120052fe8bf2a8b5e5a46287f21d5bc39561594574e1a9","impliedFormat":1},{"version":"0870e8eb0527c044e844a1d83127f020aa7f79048218a62b2875e818355f8cb2","impliedFormat":1},{"version":"6b7446f89f9e5d47835117416e6d7656bac2bf700513d330254ae979260ce99f","impliedFormat":1},{"version":"9750752db342b88df1b860958a20fac9fd6a507f67c5cfb6bd5cfa8759338b1e","impliedFormat":1},{"version":"946de511c5e04659d9dfaf5ef83770122846d26d3ffe30e636d3339482bbf35a","impliedFormat":1},{"version":"fbcc201a8fc377a92714567491e3f81e204750b612d51a1720af452f1a254760","impliedFormat":1},{"version":"6dd704b0ba0131eb9e707aeedc39be6a224b4669544e518217a75eb7f5dd65c2","impliedFormat":1},{"version":"6effa89f483e5c83c0e0063df5f1d8b006d9d0f1de7eed2233886642424dc8fb","impliedFormat":1},{"version":"84a8c844f9562da8994c07b44dd2777178a147e06020c62a7f6e349e695e7149","impliedFormat":1},{"version":"d43130c35762a80da2299f8b59a4321b6e64acfb0b11a36183379b4c7b83314b","impliedFormat":1},{"version":"6bf44b890824799af8e20c0387ffa987e890fac5c5954a3a7352351eefe55d5d","impliedFormat":1},{"version":"892b19153694b7a3c9a69bcedb54e1c8ad3b9fa370076db4d3522838afd2cd60","impliedFormat":1},{"version":"5461fca70947a4d8fa272d3dda4c729317cec825141313352adf33bc94de142a","impliedFormat":1},{"version":"f83afa274e0f11860c6609198ecca220f5df60690923b990ca06cae21771016e","impliedFormat":1},{"version":"af31f37264ea5d5349eec50786ceca75c572ed3be91bdd7cb428fdd8cd14b17c","impliedFormat":1},{"version":"85e4673ec8507aef18afd4a9acfae0294bdfaac29458ede0b8b56f5a63738486","impliedFormat":1},{"version":"40683566071340b03c74d0a4ffa84d49fedb181a691ce04c97e11b231a7deee4","impliedFormat":1},{"version":"81c8ab81daa2286241ad27468d6fc7ad3ecc62da04b18b77ce9b9b437f6b0863","impliedFormat":1},{"version":"f158721f7427976b5510660c8e53389d5033c915496c028558c66caaf3d1db1c","impliedFormat":1},{"version":"8e56db8febfe127a9142435940c9a5a1ad17ddb2b2a6d8e9e8984785a76db1fd","impliedFormat":1},{"version":"6113c2f172a875db117357f0aa35aa7c1b6316516e813977ef98dc3b4b8baf2a","impliedFormat":1},{"version":"f25c9802b1316afbf667dd8fa6db4ed23aa5e7acc076a1054ca45d7bc9c8e811","impliedFormat":1},{"version":"e99285f74c22ad823c0b9fac55316b84144e15eb91830034badd9eb0fafe71bf","impliedFormat":1},"fb8c051c994dffd3d099651789cbb6736ca39745c710f38463fca9faa0090063","f16272ee586be4ad380e30a943ef44518910519c676a3be5e0208d23afff658c","72558c21409eca7e4b927e731da5b32a3308de64b6ab45eece203905eb3e8b85",{"version":"7459d85c80f2971be954b562724106b13d5a2a57e8bfde51723e94e838f6fcbf","impliedFormat":99},{"version":"c24ab9ac84d65b417a807ada25456697bb2adf1189fa80cb240625dfb3e61c42","impliedFormat":99},{"version":"2f0fa19ebe34e7d2cf7823063555ee4439857c69edb03b6a705b97ce95a69070","impliedFormat":99},{"version":"959ffb2edd511f72c17bb07c9192443bc512f7dd707b0127c513ef3fe13b397f","impliedFormat":99},{"version":"4a950137dbff496fdca742066964f48efdaa748794668dd552419d43a6125603","impliedFormat":99},{"version":"4b15cc0373f1ca84bdb230115a283869f9016d7246b22ee76d2b93af5d2f1004","impliedFormat":99},{"version":"4d857105510df8011cfb5b3769dec55624a1df92e85d399cd03bc82bb89d090c","impliedFormat":99},{"version":"0027415abaae3a127e25fabad82bb581b09d89235c553a1eb847fa14faf69bc9","impliedFormat":99},{"version":"2e10e08e6ab5ebb88025cb0309457f86f59af9e4ae87186df0d096b53802445c","impliedFormat":99},{"version":"21e5c69ad89ff162b5de9fee105994d98d63fa3fe7a5673ba8fe8e366a75d7da","impliedFormat":99},{"version":"cfaf4f60b3290259d7cb24e27644fe868da003713f3f389602e6607ed7a9b1c6","impliedFormat":99},{"version":"61d1912d86dffc312be80f1126bd65f1f6dd2e3ca6b4539eb029a209a77f408f","impliedFormat":99},{"version":"97bc6fd88a4a101f9132ae93bc684a0c195a4ee401eab1492c6248f6bf012375","impliedFormat":99},{"version":"00ec6732d15b24c301e967de238c4a75cf7b8b87d5b0e9924052d0bc97978193","impliedFormat":99},{"version":"eb7f907ec09c730f66cfaef2aee237c86e43eed68bcb794db7f81fcecb01c577","impliedFormat":99},{"version":"59a69685139ba76cc6e0c9a0a596ac5aff1041f3874949c5e89decb555e43cff","impliedFormat":99},{"version":"144a4e5780b800c0553949169f50be285eccbdb0298afd83ef2ae03fef77e2d2","impliedFormat":99},{"version":"66aeb47bf8638d6767f7b4ff684c2d794391c981590073025e98f98e1afed499","impliedFormat":99},{"version":"26748898fec8579096c776866e8e6f07754845b3d08f5ae98c3a59baa9e85c2e","impliedFormat":99},{"version":"6d805abd62920edbd9ed4b20be26d040d01529f3ce53fdab9ca4d0fa9b589f02","impliedFormat":99},{"version":"9cb3e4826879023518628e2d6b3cc936a1dc1c558e3e65c450263886dd060703","impliedFormat":99},{"version":"7009f30d921edd039a57942d50060fd7f856159384075a53e6405a5c03fd603f","impliedFormat":99},{"version":"97b02501eb45f487174d5a0ff89b6a95690d50e9eae242e2162118edd5f2705c","impliedFormat":99},{"version":"2b4276dde46aa2faf0dd86119999c76b81e6488cd6b0d0fcf9fb985769cd11c0","impliedFormat":99},{"version":"38d4cff03e87dc58bfd50ffe5a3fb25e6e6d4136a1282883285baf71d35967c5","impliedFormat":99},{"version":"5ecea63968444d55f7c3cf677cbec9525db9229953b34f06be0386a24b0fffd2","impliedFormat":99},{"version":"6ea9c8bf2ae4d47a0dbc2a1f9ac1e36c639b2ac9225c4d271c2f63a2faf24831","impliedFormat":99},{"version":"a3d603c46b55d51493799241b8a456169d36301cc926ff72c75f5480e7eb25bf","impliedFormat":99},{"version":"ad98c359284db8c984e88949b2c3394e4a35158880767b772491489788a6c5a0","impliedFormat":99},{"version":"5c117cca0b75ed634fe3085142a931df2e2214e26f2bbcb34c592b767f13c1e8","impliedFormat":99},{"version":"773c18e2bcc18598df8f8b2be930eb26b22608edf368e42e9ca3484828ec4122","impliedFormat":99},{"version":"c385a1392fbde5ad2e29d1bda89b5438ba11d99f03108d4465cb3af50a26fdff","impliedFormat":99},{"version":"425a03d68f43164e0214b1c333cd58e777d4186f412b530467c18ef0d2b37a80","impliedFormat":99},{"version":"26cfaec143443411bc7d5363f274f885ced430b8f4bee25a81f7827248848d7b","impliedFormat":99},{"version":"f9a591e5fe0be6728cc84e70325aacafffcf203b051ddef37d65651b43c05056","impliedFormat":99},{"version":"4594572155e436ee22bff36cd0c41990b644797530e1d5ac0ae44d7bd9a9b6d7","impliedFormat":99},{"version":"de8b4c367880fe92a0a740b706f08a46d1cf9e3981d55c2701e82423e81ef0ef","impliedFormat":99},{"version":"4a056a71ffda9ff3f2adec60c0189c906f7e46976a0c6650fa196674ff8c4dff","impliedFormat":99},{"version":"3a3fd6f5ca85ceeb293f2a010125f9455404958122b6dd0ba0b34f7dab74feb5","impliedFormat":99},{"version":"42b58bc8da11e9181ecf4ac498d41c74930c73c8ebef091474d0f8cf971b50ac","impliedFormat":99},{"version":"0458fbed073aeebfe0ce055b9bcc450627f5fc9aaec7634a6b9c44ff10431d8e","impliedFormat":99},{"version":"fc30f37a98ab20a8db1309801095f4f7234f4840f0a9281dc63251e9dd75fad1","impliedFormat":99},{"version":"951e9556f7441d86eef0b6160779e2f97c0d43da6110951b4fff87d493143ac7","impliedFormat":99},{"version":"d2746ea0021f79365dcff95fc255ac529b6ef7f51981fc8e9cff62e65a2087a6","impliedFormat":99},{"version":"9fe94c8f6b36cb41acd30d89567761a52246932dece21e1ce104baa2e84b07ac","impliedFormat":99},{"version":"d0d58671b91fad1b24b87186a81bac181d07a6d61c58dc067f79b38c8c1e2b88","impliedFormat":99},{"version":"c5aa3449a1a90686b5bb9e9c389b88e9a6fd8ed410289fff3c8d9359e4d510aa","impliedFormat":99},{"version":"e96bd939a55117abe6ccbc02839f2f4d9ce3893368fea528ca91c59ebddf496f","impliedFormat":99},{"version":"81f6bf27eedb1ed92466abfcee33795a6b2304691ae01f42e60f8c76894fade7","impliedFormat":99},{"version":"4b05275d33bc4acbc41634e6c38d95da3771c23182ca12c00139b6069c66a15c","impliedFormat":99},{"version":"26a0c2d883e1ed55ba00810d957dedcde5d16d637e33063686e2bc3f58a5c64a","impliedFormat":99},{"version":"b2c697a96a297c1a207d9bc9b3fd4cb92b95bac1c0717c94a364f3590c25fda6","impliedFormat":99},{"version":"bfb900f7de2066a4be644c269285fda8ccca40b065476a27b082173014d00467","impliedFormat":99},{"version":"0817f58fceb66836eb354fb16f1b20093f9bc3d475995b2d20f3621a2e5dd3f0","impliedFormat":99},{"version":"7e2b8299e85423435784cc6244e2d559ea862d226e7b0ec871c6a53f88e5139f","impliedFormat":99},{"version":"8eca47167dadd486582ecd4e41f7fba6ae66cc4a4c5202f1f7acf34129a0dadf","impliedFormat":99},{"version":"5f6aa85935176c45e47cfed4d6af31c2c53fa4a24ccb92ea32ff9c9a915a1908","impliedFormat":99},{"version":"fea899959c19f5d41eb556cfb29e0d6722c470463b27036b23e672aaa4da70f5","impliedFormat":99},{"version":"062c0cf9641ca90ff3ad8edc61c2e06299fe6585fb9a4014a8acdf7f11810d51","impliedFormat":99},{"version":"745db40747b91a21d6b87a140dbf26c995545994c87ad2297a4033d6192113a8","impliedFormat":99},{"version":"5db46b90fabb0e78d84d231fe090aff47e09d2cacb4a38b6b06bc5a2f9c73cb0","impliedFormat":99},{"version":"0eb30dfdea5fb0bc646ece93f7e368e39f63a846c28728eaa3714ae67ebf4a4b","impliedFormat":99},{"version":"533fe789a14f6087b274308c257964da60cce305b42f55f5e9483315e5ac19b6","impliedFormat":99},{"version":"2a1fc3ab59c5d74c4e7bec3880b98c1e11d48276173b314eaccd9b34c4aceaa7","impliedFormat":99},{"version":"112c5c25a4e75f0bd1bcdda0630afddd634d96f74263c0d0c98a14505577c7ba","impliedFormat":99},{"version":"0751c7fbc7fd80df189156cd8b277d1b537e6b711b316db0b6aa35b9c674a6fa","impliedFormat":99},{"version":"d8f7ba1d7a0eb2191ac0b656a4ff4624cc7c615c9f0209760a664aa4f2993ba4","impliedFormat":99},{"version":"62d30429d222ea6faafe408fe136c3a1e9df0cde180b0dba5fa4ebd77c0807ee","impliedFormat":99},{"version":"ea2276e4ce7ceab26d8a340f53554db2ace013d85903d7b5e781ace26c3eee41","impliedFormat":99},{"version":"dbe63b3e06a26a1a3e74b407474745d3a9148775f2bf96588863099d64d1e54c","impliedFormat":99},{"version":"fd41f8da8f9ee3606b5460e3810572ada02d29726e2f0180fcdac1be260a6da7","impliedFormat":99},{"version":"3bbde357e5d8d70cd29460e158586f4ff7c57e12d4ae997ad5368d6431a5e892","impliedFormat":99},{"version":"d2000199162496a4e85e7ddc9ea0ab05286737b6acb6b8390100fac220e8cb77","impliedFormat":99},{"version":"aaebbcd44c28c0e088dda4bd1c94aabc126318a96938dc849c0fc21d5ce0afc7","impliedFormat":99},{"version":"faf9a217d8d237b02ab6d95508d8736ae431bbeb38d98885eb5b8fb6dbe48cec","impliedFormat":99},{"version":"d5633ef9a26db101247322db090e95c7b0eef123503cc53099850d35fcb4fe8b","impliedFormat":99},{"version":"838c1878bc1ec773ca2b72ecc544d0f5b8913711fa8cb2b7f14cef8259743669","impliedFormat":99},{"version":"74b564cd3da8f83d5e472a5b0cc53bf7e276b25576097cb89e6f67caf95b12dc","impliedFormat":99},{"version":"68333289edbcca548c7f8370f9c1dcb71694136a11f418e38691f05bd2c299ce","impliedFormat":99},{"version":"ae3a1d96127f7c759d2b6c466d2f3e96657c830356bde016f89c44075add8da6","impliedFormat":99},{"version":"cce820aba9ba9d1984461c67d0d543d8eba7ea25c6a1be7a47c31cc18907a631","impliedFormat":99},{"version":"6a1e5cea457be906011d1736eea8d0ae82e883cff9fe4a91f3218c5c9cd84e13","impliedFormat":99},{"version":"51b6335f5a8e177306647558a3eefa1f6abe259b283c6462223be3d7d0f33300","impliedFormat":99},{"version":"4674cb63fb87b9ccd97b95106de31583132dac5ab544c414e5902d10db34699a","impliedFormat":99},{"version":"3ffe7d5bb7b38b8133e65f41e7b17d8799479418fdae3e352c891a64d14f65ac","impliedFormat":99},{"version":"474dcc8f8d16e3b9c43fddd9b1930fbed50d26a66dc75cf17a2888ffc654c0bb","impliedFormat":99},{"version":"cbf0390e81de86db9f6979227deaa5cf4f6bc4df00d1b034716a5adf1044e079","impliedFormat":99},{"version":"136bde95f389f316a60b40bbf0f53c2a30474d8941b3554dba2d246f14dd254b","impliedFormat":99},{"version":"be31399eb87d9773cdf0d109ff2af942a6a22c82efdaa3c389102c287c419e8b","impliedFormat":99},{"version":"079a563e723579e9f4b37c0a26e88437fae2716e976273425615c939b821cdff","impliedFormat":99},{"version":"667d3df98d1432158d20452fd0c175b0fffade57db9c7cecdd3922567f23c7e8","impliedFormat":99},{"version":"d16321086fd36596aaf00d9590c2de1812f8204c6f870ac8f0d8fecde70570b5","impliedFormat":99},{"version":"46a2c32879b8082fb031f575977bbdec9f3041167bf8acc9abba34b498e49443","impliedFormat":99},{"version":"2d09c2f8b415e6973baa6b314f9023612c47f76fda13d542c711b08eba4b6f6e","impliedFormat":99},{"version":"f5593ebceb9e3ea81f78c9ea001d8b22e86210a03ba1de9c6d66eaddc667b797","impliedFormat":99},{"version":"2c285a3af1b420020956dc9d315bd73861aa943df786143d0aab6580053d0b77","impliedFormat":99},{"version":"fb732d4dfd6387d8efd99f0757c3a68a1664e9b16a0461e4572bb2cf1b1f978b","impliedFormat":99},{"version":"7804e6d8dd4e50c1ee6b4466eca30dedcff424c04113c23a0083afb5a588b9b8","impliedFormat":99},{"version":"a79f09851a1353dc376b19bedf96bb7191402ec01890308119f6ab8cb33b9726","impliedFormat":99},{"version":"d5897465eb4696de9518faa21172441ee95ce80a0b1d7c8b90dbcf70d3db7e67","impliedFormat":99},{"version":"e8d2d8e7bf7eb324f9e5c9f323384d4066f508f7182a0506dbf7336cf70e1f4e","impliedFormat":99},{"version":"b6bdd50d0e977f5fb48d01ec58387c4ea4ca4061180896d92667a121d8c359ce","impliedFormat":99},{"version":"aaa93af07b03d69f6d7f49380ef42d13b41a2c6169b248c2e07552bb94c08faf","impliedFormat":99},{"version":"b62d96002ec0c8710d0e99aa3175434e1df0f22f5a09291b19e5ec05e8a877e6","impliedFormat":99},{"version":"d93c145cb04df5d21c2d0f66194700d2f1d6f8e04abe7ef723651e915bc6bc4e","impliedFormat":99},{"version":"6e085274a812504f697c8130336ad47a6b249eab56a547a2a34f9b2c294e9a3a","impliedFormat":99},{"version":"5834c68c6e0f55055514834fe00e65ebe8d0ed8f8e127ab071ce2ced36eb0967","impliedFormat":99},{"version":"433839016857a5a785134d2d5e760fdcc9819d241a3ffb5cb76985e666a34a8c","impliedFormat":99},{"version":"fe75ad82fe44452125aba2301647fb1197bd611ecc5857e225d022f9d95469eb","impliedFormat":99},{"version":"23a55ad8067538d0d1cb0b55b1aff47b6a5979b9ef2e46c6e9b0160377a46616","impliedFormat":99},{"version":"66cd137411911fea6db4b352a98279470e386eb3b1cac5db3de1efad678a9015","impliedFormat":99},{"version":"f8d95db2d66d268765d447b554dffdb3f1cd2a22e8da7f6f57dfdcad6a19a1e8","impliedFormat":99},{"version":"bdceae6ab40835cb0a1fa08e0367ec3fc43cfcecb1840d3a90ea75bcfe605ddf","impliedFormat":99},{"version":"e38a172f8912eebc79671e07b81687a304a9d366a47933fde9f97ad79f8ac08a","impliedFormat":99},{"version":"42f60dc9ecd3ef8ae7ef6c883f648243cdc645ea7f539d16eb2ce043f9ca3d27","impliedFormat":99},{"version":"6082ee8fee6b3736c8bcd0a1d9dfff7125a406039020316f9512d88ab21b4206","impliedFormat":99},{"version":"f6ba66f3f6c4409e878f48161529c585b3c0e687c8917dd8f6c6464fc5cd4f8e","impliedFormat":99},{"version":"0366e97d9c966d748ad91b782e8ce843ebb692d93a1d211ef5b84cccbe8f53a8","impliedFormat":99},{"version":"aa74551dc1eea3e902560acc832ac63a78ae05fe5f3b04c6813fe2ec57511456","impliedFormat":99},{"version":"b86777df5a816b1b1a2b12a017a8ef8f14ea2fb1a533d1e18e956ced70ac9d28","impliedFormat":99},{"version":"ce9e6f87c3a69558b58fe849abe2ed9a105cd5195809851d99397395a4442bc0","impliedFormat":99},{"version":"8c85110d99da8adc0da3cc811023d6f7e0f6ee28564d10a26b27c190f34e200c","impliedFormat":99},{"version":"ab95baa99c5dc2a49bd1d1c00d90955088463e675f4eb869008a357b5b02d6fe","impliedFormat":99},{"version":"7980ab0dad3e7e1eb6e9873231d45f3860864c84c48608267864e4774c4bf39d","impliedFormat":99},{"version":"845b523a3ca13e3fbd496a579aaf51875d60e15ee56f4be60a358dfd87699afe","impliedFormat":99},{"version":"53c3302d92c8cf76bc6557a1f762fc2f7ee6156af5bc7a2ef22c591d53cbc4cf","impliedFormat":99},{"version":"32c98d5e98a05f108f4e405c853db481f83c5a1a9cd6c53870501d8248f9afad","impliedFormat":99},{"version":"d7ce891d302b15d9f28cae31eddc6a88be37c290c512fb1247735e7f923b1104","impliedFormat":99},{"version":"147ca4dfd1729f9b34c3c074589cdf518c0b80fd1efa29ef75bdb39507b23153","impliedFormat":99},{"version":"ea8f093cdf681d9487034f80323bdd4168c727eb9d5c985f250e3c4488d64639","impliedFormat":99},{"version":"09b8b299789b2ac464776895e96f64cca0ffa6449a178d775adea0401d9b49fb","impliedFormat":99},{"version":"15abcaa279117eb516a90c09c4b60c53fb29c1242c7f67bb1003e0cce06f7d19","impliedFormat":99},{"version":"df506f8ab6bcab64cd24be5e65bcf12b959d1d00cd9127d73afc59ba4062867c","impliedFormat":99},{"version":"ecb5aeb3771bea2795b5f4c0f79036c061c3a2bfe0b1d5a83d9183a43e38cd9c","impliedFormat":99},{"version":"8a5ff6c3f290223a222cd540136d2bf4880d1c13d94f62503d7029ff74533b41","impliedFormat":99},{"version":"eabb41775a846406c423449b13eca4e43214c0bab2ab00b4e22b01e39d510023","impliedFormat":99},{"version":"015ed10c7e81ea426199e7d9b92978416f420466088487b25577bea09b469a54","impliedFormat":99},{"version":"d5da26af31358a4883edb6112879018b14c7c1fbcc457aa36961b03ee17bedea","impliedFormat":99},{"version":"4e93fb2d2c59bbc1f1a5211b36c447efe4d0af568d682ef1e5eb5f84ca6ccc2e","impliedFormat":99},{"version":"3d13fe973e92e708ad3dbbf1b2385bb799f8e70c8da71a1ac72fcb5521c8a5e9","impliedFormat":99},{"version":"16f3f66b5182e57c554d0e374e29fdc0a899c1321b3f94fa997d19abf9faf931","impliedFormat":99},{"version":"a8d6a3a562196c0a6e193e303ff1b2c6932a6a16a631ce14f2110dcb1667f622","impliedFormat":99},{"version":"556079af6cfdcb562e1a7408e73ac2203ed8fad6cc768d498238b137ac06247d","impliedFormat":99},{"version":"17096b785db48bd6b340542cf9752db28508b637e9721022e9993aa15372367a","impliedFormat":99},{"version":"e177a7a7a17e5d282c4379cc20c3b21f3bcd22abdb88557695eb83c4d51b186b","impliedFormat":99},{"version":"49f41e28b536a2a1722017672ef24a0720b2d0a37f66f1a272c7d8595b3b3a39","impliedFormat":99},{"version":"dfa5ecdeea6492f56d1a1b7905fe3fc24a2ab44a5420ca23fc9133da991015e7","impliedFormat":99},{"version":"ca359d684454111a2118c60f361166ad3595b74fd7b9c8eea5c7de05d9ba13a3","impliedFormat":99},{"version":"c61abe93e13d89322bef06b0d2063ffcca5e0c547722fcea7a57c6f435cd58a4","impliedFormat":99},{"version":"2ab01a0368f65b3b891e25416ae785dca54808f70d8f6204b99589ed4f7f1d2f","impliedFormat":99},{"version":"43b5886036965659dae63950130d2aa6c4728c336fe1ffd09b0832fbeb027b15","impliedFormat":99},{"version":"0e93b1f86d8778076f04fe97295548d6d10b31d29daaa3980568929da4c94b5f","impliedFormat":99},{"version":"2984438b44f77f375cf80075b7c26e84d593aa56490e3703ebe094e34626e183","impliedFormat":99},{"version":"b594999319e34d99ba2048dbdeb0fb2660044d4fd2e26456275f4d6a43f61f65","impliedFormat":99},{"version":"7bae4a3f50a844fcbdc504d717f5f13dd7178ca99f131b230305db6b55e1dbc3","impliedFormat":99},{"version":"214c393513df9438d6956ad5b738efcb1538c301c81d60e0adb9f2113c780265","impliedFormat":99},{"version":"58977c552caa6b5993e10d48a8d97bb7e636516b1526cfbcfd045c144476597d","impliedFormat":99},{"version":"2288fdc58bb7180154bf4e3e20b01f2f0a279a5ff253679baa8d326bbc3c0020","impliedFormat":99},{"version":"dbf382db41bc652896fe67296a9bd1880836cd2ddc16a3811bfd7bb9c2fec1ea","impliedFormat":99},{"version":"f49e8feb6d7473579a5ceb5872598bbc1be3723da653993472720629c72fa0ba","impliedFormat":99},{"version":"14c727434cfe6a078b51a88d005033ad01a76bec36292d7b47369d82e48e1cb0","impliedFormat":99},{"version":"d909cc4d55736652a82d5f76be92980a1cfb14b6beb65137171deb4c7cbb608c","impliedFormat":99},{"version":"0a37887a4d2c6a6ed5e5ddd3619d04165079eda5477340fa56e635510333e8a3","impliedFormat":99},{"version":"53adb1224146150628fd59d35c5a3f3f69629a649052c34ef6ee5186cc911c81","impliedFormat":99},{"version":"f645ed7ab08689c3fc4afec989000af708f562adb32819d1079762c027f225e7","impliedFormat":99},{"version":"b03aa91aef645f9856216a2223a47001a84954caf37b7ffb1d63d1327b4231fe","impliedFormat":99},{"version":"2d982c7dba93b9bcabb045898b00e62dd09919b2b35ee63c42880b22494a7ad8","impliedFormat":99},{"version":"cfcb85724714ed6320c09fddcffed5ac71069125cd5b9957406c920dfd4c16ec","impliedFormat":99},{"version":"7142177cf3158dad7b42726ea15c78512dbad6370117509c8eadefcedae72534","impliedFormat":99},{"version":"9322da0c85b107feebedf3005249cb863f4e03736c4b8ab3edcbfcc29981d13b","impliedFormat":99},{"version":"54a730e06094b37f96436ccc8e736bb65b74d256439bf1663344e3fab16d2246","impliedFormat":99},{"version":"e502cb97a6fa3ea9268d2c2b2bcad7a1c8cfaade589f501a30cbf542e098f4a8","impliedFormat":99},{"version":"19586f37701483574eb9615faa417281f9b417225c0595c2a242031f6c86e267","impliedFormat":99},{"version":"4e8b929462a5c46c53151f6e7519a06e31ea6754a735c942d9ac5d8b535a46fd","impliedFormat":99},{"version":"d2e6d9f45141863efb1ce3846875ca23fca7b731496c45006e4931837c3ff3e4","impliedFormat":99},{"version":"d06ad53b5004aefc1adffde50247af521e0e10d334392fc0cdfa8fa965d7243f","impliedFormat":99},{"version":"8f1eceb25b3591bc9222483317ca1bd13d4be70aff908d9d26fa3c18b7f7ce2b","impliedFormat":99},{"version":"b56026fce41fba17e89346ef0ad03b2f5fcd04c1120176e4eac77a7d72dcd8e9","impliedFormat":99},{"version":"d3aa309128e84a97c160e41f2cd9408e19e43e3a6373b72b37fcec94fd3f2c7d","impliedFormat":99},{"version":"0513d6c3cb14947d45f1471345eab07dfa5b9237124f639c9e0dc056df236584","impliedFormat":99},{"version":"a4a1f24de17edfa0b47c4e939390b38f229d9e42ded4f53639e9df475fe453be","impliedFormat":99},{"version":"366c1b30d171d42458d361430d16dac31854cff2db854abb59ff4a5df3e349c3","impliedFormat":99},{"version":"ab2dc76864097e3d2dc5a0553376474ebf026fc5f25e10adbb5e81b1247b03d7","impliedFormat":99},{"version":"8e68a48d38419d478b823e2f04c8418fc348fb6d4d370b15743cde4d48392506","impliedFormat":99},{"version":"a93626ded4c88421ac4e27150b0e11a514683a25f54d6639347a66652e118c9a","impliedFormat":99},{"version":"5804ffbc65b78751fd510218b90827a7ca677ca34a45b4709a00783b658cbaba","impliedFormat":99},{"version":"5bc28e22162587d3940c3f73668bfd191a65d7381ad7c242901ed7a395e04198","impliedFormat":99},{"version":"31dad812abb967c21c2ba11f6c1ade44ed75a7441c2df7e6fa78f6af0f112eba","impliedFormat":99},{"version":"ff9e2545e5c4e207179f01a1ec905d0fbbfa1d162501679a01cc75591fd5bfe1","impliedFormat":99},{"version":"1c247df73ee92991ea75d19419b5625e37a9da3bef05f015d7097a35c66a1fc0","impliedFormat":99},{"version":"c29921af69f3db7348ed27915972a51cddde446ac029fface772271c085eacbb","impliedFormat":99},{"version":"e4a58769bce747f03a3606f55e84690c2003f754ab4354a27ac6aba30eef01bb","impliedFormat":99},{"version":"78bd82da60d7021316b170afa284acb4a0400d52eb34ed089e38861bd3c53d10","impliedFormat":99},{"version":"1ce699f32fea004f388368e19e9cadb41dd52ecc72c9d6b353c9d9e01abe2cf4","impliedFormat":99},{"version":"597fc3b46d5654c4f8361c36ded591d5f12826dd1df9e7643e8bcf1f0803cbd9","impliedFormat":99},{"version":"b56a743deaeb1ec9be37a9a8e5599e1cccd267267d4fc41c01e0c5371892a70b","impliedFormat":99},{"version":"d8fbed05640e6df144bbc9bc1ce7586d6e020119968f9491c157ab670c97f003","impliedFormat":99},{"version":"ac782435f9434aeda13f2d65fe840eb282bdbe2405549b166b2a89bcdea2396e","impliedFormat":99},{"version":"98ef9c3f5f15c18abcd6fa9f12e93e1bbd608225501151603cce97642dbc961d","impliedFormat":99},{"version":"c80a56a10f1a8e01c4b7f08df6e9260ae076c910402dae8173fa6c7dcacc51fe","impliedFormat":99},{"version":"809cabbaee3df008c5c31e842047b487417eca144d2f4a4b0e04940827a3d062","impliedFormat":99},{"version":"30d726e77d959648e8f6fe104bacdc29ee4e1cfc6e8ea7c952141b3a3482d007","impliedFormat":99},{"version":"7dfcc5f32fd73d26d849530d15ab3459a60d296c13dee963fb2cbc5b78052d0f","impliedFormat":99},{"version":"930c6bd33500b62b1338a60a9a5bc3a2d57267ac49ba66d75917cb1fda319238","impliedFormat":99},{"version":"3612c99dd83ed479d269970994dac77984c951cd7b9a52a291051517cc09e6de","impliedFormat":99},{"version":"32b344c3765dc7c383516f3326c108ca84c33df44ece8ac789fce47d47ba8810","impliedFormat":99},{"version":"88a44d532be7c83da9c55d744c23721edd5c7401e7319207d957cc0afa36a341","impliedFormat":99},{"version":"ae8a68cf0adad59ea1b6e86f51588d809fca647b917bb0f92c155b6023b09e4d","impliedFormat":99},{"version":"606d6d2855288bbd8da341607890f38aae30cd54be6a13246b901db07dc0b041","impliedFormat":99},{"version":"6ae92eaaaef30fae975de604d3af31d5b00eca7f02d89fab589152df926685fd","impliedFormat":99},{"version":"cef2c14946e957c2c4a5d99837c6a9f730390158c08ce313fc7248baeee0cde3","impliedFormat":99},{"version":"f1363ec1f8aafcad89a89c7cfaf805dc709107294c32ffcca1cede004ccfbba0","impliedFormat":99},{"version":"9f074f00a892947b04f99252866ce01cbdad4899eab96d1ea2d090419b9d0383","impliedFormat":99},{"version":"94f793b66dcb1a755800090817a189e5ffa519d524f0223e6b918f9e20df92e8","impliedFormat":99},{"version":"b96130e763eeb5392b6501ffabcec57fe110780ffcaeeef061e7cdeca4d65960","impliedFormat":99},{"version":"4a0be6234a190079827c8909b3ec1949d44434ada4d898450b5fb330cc64551d","impliedFormat":99},{"version":"28bdaf936bc3792e20a906ce59550aa56fbe62ec1a575421202cca5bb347941c","impliedFormat":99},{"version":"52d0e4a995a1328cafd0c0a9441b729136bbdeea7896789c253aece60e4ec2c7","impliedFormat":99},{"version":"68337576317652e5fccf4c687020c06c00728c1bb0dc60a10fd8d78cc15091bc","impliedFormat":99},{"version":"06ef9e335bec6e052d9df473a06a08552d34dca231a5a31a04fe0e05c194e933","impliedFormat":99},{"version":"8fd2aa139269a583dc70ef2f34fbbf57bbfa7490136ddead980ee23a408029f5","impliedFormat":99},{"version":"89dba06f08c33ff2006e6ca98e01284846927a6be23a9aa7be6856a8d7242939","impliedFormat":99},{"version":"8e551cda9ceaeac0ed69fa73b16de6ec53b41a07309b2af1922425132e90ca8f","impliedFormat":99},{"version":"706b3fd6ff575b15077a97851686c5a8d4f563f096050a397c5fb15cd9ce0b78","impliedFormat":99},{"version":"2ca97aeaca4ac5be7b3815c3468c86f512e3c8504ab6ad0599e418d2feef1b5c","impliedFormat":99},{"version":"85a60f3f0491c3c835a7679464349048513bb8e4d61fe865a9b1833229ebc9e9","impliedFormat":99},{"version":"7194c45f80a22684e43fea3a9aeaeb69845361d8039d6f013f50230c78792f21","impliedFormat":99},{"version":"4f81fb228ca91355a6210787a2db9fb9ebeb7b45fda1b577af6b2da1cc40702a","impliedFormat":99},{"version":"57b1def459ec822d42eba31a62d69cc6d0329a88d45331ec987c6ec60d46ed82","impliedFormat":99},{"version":"2ae910ab09cdf74168412a94bdb35966a1f62fe396e478cd20a734c98a360782","impliedFormat":99},{"version":"2b5177892e7b27a3597ecb4769c9e048dff0610ac1a5312202f2ba595f2b09d2","impliedFormat":99},{"version":"dffbd270006e6d1eb7e54019953f568f745fbad1f286e6b6f9700c713dd9d71d","impliedFormat":99},{"version":"3209d42dcb86b35a13c127fc39981a644b61a1fb0e59524038d0f3bd7fe25768","impliedFormat":99},{"version":"a165816fd744d55bb0b17e7851eb07c3e372081f0de12b37ab18b5241bb8777a","impliedFormat":99},{"version":"e8da9d04f0bb044998c238d339d6fce0afbd773827eb0921fa5b11b804740242","impliedFormat":99},{"version":"415295fdda8d3f2630dcba09d2c6ac1ad737e9b5c8e91880514029953eb629dd","impliedFormat":99},{"version":"57a75ba33c112c59a783a2e7595294b86c6ab4a5fcc65a537ff9356a3b23abc2","impliedFormat":99},{"version":"f846b7cc91e29c0ddd12b8d817abc81f4e3ba1c37dceaaacc82a896031a771a1","impliedFormat":99},{"version":"070062b01eed7a9d7c7763eb25d98c6581182edcd39bfe6d84aa64ffb9b980be","impliedFormat":99},{"version":"128cd80e8980123fd5174b2ab5c1295add61e51a5659a1e8d4fcfb82884edbda","impliedFormat":99},{"version":"fa6df0af2818d39dcccafa76a485baf0944292ecaf7acc623acdc5832149f796","impliedFormat":99},{"version":"bf2f4914e8b356a9907f7b347f984d4cb8efd2fd359d443793c52d55d9f2abb6","impliedFormat":99},{"version":"f8d6e2784bb518d523898f614b8c0ae55341968c982d4617f08867b5d11cf354","impliedFormat":99},{"version":"b47f1dc9eccc82752263ec4d70ff7464f0412469102bd22537a5005ec298aa68","impliedFormat":99},{"version":"7b75a17e8586b0d83e4d3732ffe41a10812873a89eafec329b879988537fa83e","impliedFormat":99},{"version":"768989d7bcc666427495223f2e78c1e5b541e16b6542e64abb92d54f0f37b7cb","impliedFormat":99},{"version":"a171b8cb18c8c2e92ed5c39ca1ed713b803722352829b948e3c84cd463b2b617","impliedFormat":99},{"version":"a2c7210b0f2be82aed4cdfc51ca084b3ac017a2d2e9baf5b519732fafb6feff7","impliedFormat":99},{"version":"f10d4445bd7db9939402b239776287476b42d1ac4bc8e6b80a7ab7013b9c9981","impliedFormat":99},{"version":"4df8dc56ba9be273bee231caa239d04fb28293b92c109c32f4fc027f65e5aca8","impliedFormat":99},{"version":"7458750d4c17b31f538c9faa569a75ece0bad5ff89be08b54aa7ebf485ec1dcb","impliedFormat":99},{"version":"2dc42bdd932c6f6c33203ef3adf9a3c3f9c92e55119967c4b8eca75048527ec8","impliedFormat":99},{"version":"a8a30971ee06a579685d25fa7135d8226f1faf0fa6571a3dadeceacb9291f2ed","impliedFormat":99},{"version":"e2aafc728d8f60a248d640eb447028edcf9b80d9d99f50c465b06011d885bd6a","impliedFormat":99},{"version":"3015667b8858f86fee317668c4572b9bddc3b14df96d23383507d618edcdc577","impliedFormat":99},{"version":"f46d9c50782b5c3d0d0a1114188c704288224e91dec2d078fb50180621d58c1d","impliedFormat":99},{"version":"edf1398a29effd40893b4e850271ea22bdeb0d3d6a901eb08ad2516f13b8bd05","impliedFormat":99},{"version":"73421be7cc17957418f22a7be68c4e6b8d818f1597585bb3020aeb6ef7006f9c","impliedFormat":99},{"version":"d80c3265f6b0717428e089d897e503d19debb1f5348dc5d286f3a850e93d5061","impliedFormat":99},{"version":"5bb81a9aa2387411321b9f1f5c021b6303428634bee563c9a8f1cd388b1be443","impliedFormat":99},{"version":"30522d15d4f6aadebfabfa0d23ad5adf467335a6ef7bc8508db50e8dc388b3fa","impliedFormat":99},{"version":"9c160cf18020aec7bd1deac84fb3bda1a03c590ceae2bc5c150ab037dd226886","impliedFormat":99},{"version":"4b966b4f48c930b166a0058b0d8aadcf0b111135b99a6297aaaad1528c42ed97","impliedFormat":99},{"version":"113fd627693c4050016f9da31114c196ed3e55d1a94ea023bd6bc829dca4c550","impliedFormat":99},{"version":"bd90ad1350bb360f83082e98021e7cfbeb6bbc75565b76c70bd2ebf9ba936a23","impliedFormat":99},{"version":"c2ef4463c7d697365ca578709c801077009dd3caef689c5dba0a8521969a95eb","impliedFormat":99},{"version":"15b34f0a2bc3d983723e394aa54333b2f4cd41e391a5e68aa5bb782351e359fe","impliedFormat":99},{"version":"ac5b9f2d5cbd50ec86d5856917c5eb5ab6fc7152fb182598c9b9fc2bf458b8d4","impliedFormat":99},{"version":"1d44832eaee499d791379ab65c32f9b72ed807613b72d7efe0e4dabec955d21b","impliedFormat":99},{"version":"db17327ad596824321aefdfa22cc1d45d9fe3192fc8fefe4ad17dafe93c739c3","impliedFormat":99},{"version":"0819b4f64eb1b87f884d52895505d8e913a3f84e1eb164bdf96ea2b50354e7d6","impliedFormat":99},{"version":"60e6c7ed01a617453bb91682fe4958e698292ec3ab2e8473a3123c3b6daf0676","impliedFormat":99},{"version":"8d426454bc1da7cdd3408c926c58228bce4dcc30c8a962bb0141cc13b1d81018","impliedFormat":99},{"version":"f04c3edcb4544775f079ade30ad601d9e50aef13a19fcc0325bb1d33fadc3f58","impliedFormat":99},{"version":"025c17c748488159fcafcd87b95b08a029ecdbd25000f598804bdd7788b1b6f6","impliedFormat":99},{"version":"4c22848e2508e85af2c9f8e895d5ed64d92e1b02711f45c751e709086e4da919","impliedFormat":99},{"version":"7b928049f4bb3f15bca40fc7d57ff661cdb6c24a7b235fc8fa083f4dc863ede3","impliedFormat":99},{"version":"2693d3e219283d2bb133924f0bdfd8aed628ff62b3857a6de107282a4c145dd9","impliedFormat":99},{"version":"d1a2690ce0378c3d377e7bd07614bb3c7e2bec52dd7f660198475a550dc13cc6","impliedFormat":99},{"version":"46b171ad2ab9b534979ea5086fbe669948fb8e31eeb2b7ad3d45d6a9ded78748","impliedFormat":99},{"version":"2e73ce1cc735fa0c03af07b0dd40b90bfc7bd5cc11d6271a9a965f0403cf69d9","impliedFormat":99},{"version":"753b3efbdc07a3d9993a8fff8295f7b4f95663e308ea85efc7a0c1ffd2ef116f","impliedFormat":99},{"version":"b08d54872af7b7df6fa9533cfe07b2e7aa2f50f5a84f172d292d53c75a54f8cc","impliedFormat":99},{"version":"e9e0b502312db594634de99abc4a0becaa67c69faf5531f66d7495e0bd5f5e0b","impliedFormat":99},{"version":"427bcc746c725d19ef8e041226bf8a60e20acc421e08cc723b0239b599a97482","impliedFormat":99},{"version":"bd012f6cfbb374e40d238c255eacd604243d1bf5bb065e216bd72bbb57aa2182","impliedFormat":99},{"version":"29ea832df7ac71578ed701393fb6e3e158cc643dfd1d3cc80b41a4c289e86524","impliedFormat":99},{"version":"df7600c69bc9611d77639d13248b087203b232e2acba76b3b4cdaa4cbc25d0e4","impliedFormat":99},{"version":"8be849acfdb4ade6d987865b17febdda1b9a6e320e87c746deec0e555121567b","impliedFormat":99},{"version":"cdc0b51f289385c35e0befb4db66c36821431bc4275369d51b2e2d3f3652049d","impliedFormat":99},{"version":"c79752b70dcb13137ee7bf01e6add89298c15e0d773d4c6faf56c1caa5d997bb","impliedFormat":99},{"version":"7e44cb4862e072b762134c46b95bc3e86124439931ae85159e845d0ca2166bb0","impliedFormat":99},{"version":"eb76bb4ca060b378e6bab61d7dd24e2cd7ca61a5c448e1bb327c63baa96ea6c3","impliedFormat":99},{"version":"9376146c27f8e0cace730fbf789648da353877c78e990e173391befa191e70ed","impliedFormat":99},{"version":"c7f6096a62192ee567f7de6cba63e1a19e32e6cf51e11725126446ae6ffa3d31","impliedFormat":99},{"version":"e8682dbf2be4ee767cc14576f3e461a8b8c2b1e59a7f787e89d22d1cb6876377","impliedFormat":99},{"version":"f9791fdca540b14eb2d745e95ce1904716f1f81f7b8955bccc96e4a0501fba00","impliedFormat":99},{"version":"2673620ee9cb5e62777ceeea4e84f0c53a2bea44d74f103ece49bfb7efe95aec","impliedFormat":99},{"version":"525f82081df6786aee16931dbb571de908e7235f3d0e55a774e71eb855cd4ae3","impliedFormat":99},{"version":"87fed3456418e122f03bde7afa0c512c55bfcd2ba6d6305385dd6c5e3c71ff6d","impliedFormat":99},{"version":"2ea4160e3867a56867f27637c7ecc3ab01a1d7534f892493582af82b24bff97f","impliedFormat":99},{"version":"dc9875d80504e711826648ca27882ffc145a136db37031e6f250b31fd357b8f0","impliedFormat":99},{"version":"e73198b060fba5d556b7b411073ac48383a539227522afbe5a3a9156edea2fdf","impliedFormat":99},{"version":"bd40604dce7f9329f800afebad8601fe708f32012c464fcab62c68cbf2fd39d7","impliedFormat":99},{"version":"b95561e98ee78519d7c2e98f86da7a9342b936b0e52cbc42894a517c38682f4b","impliedFormat":99},{"version":"91a9ebdd32734499d34fc812087ff1f59a70d2c6185981f229fcc2679a33b8e8","impliedFormat":99},{"version":"c0ff7336db1bb822f6e38dd91d58ba77f107309f453e8d5ed85d7bccaaa7863e","impliedFormat":99},{"version":"c42858690ca5e76a83277a2234057c126033a927b1419228f98011caf9332e22","impliedFormat":99},{"version":"b8b9141324d97526669e3b9c2914d5707c5fc2d1f4842d76f74c902b7a03549e","impliedFormat":99},{"version":"80b6ab00ab7bd0bfdebe92d387ca33446a7102ec4f5ae67a7aa392311f0647ab","impliedFormat":99},{"version":"3c9e08a6171b77f9409f6fbeee92cc7cec90295165305f4749c15b66984094b7","impliedFormat":99},{"version":"d5f52fef25eebd772b28fe3acd0ef103cb3d338c73fd23dae81235aa3d3216f3","impliedFormat":99},{"version":"a1d51984613f1b5faef052fb04f81743b8209fce70f8d1a1d73f2fb9be6d6912","impliedFormat":99},{"version":"e313dde308495525f7e18a1e3a62d49407e562d389661bff3def7aa6718547b4","impliedFormat":99},{"version":"b6fc849fefcf2d80c9f877a4b609da4e913a1b960adf9b8ee78dcebf2ccb1a18","impliedFormat":99},{"version":"ad93293f86fb21b8941415ebc7785f728d4fe8389f855f185dbc77dba548fe53","impliedFormat":99},{"version":"d582707b4fbb409fd9e62253e66631a521a79e57ec8a79ba205e6364877d3c0f","impliedFormat":99},{"version":"a1d1ddfa2b0d806b2778b931ef3221e5a16cf993005eed4b74b2561d7020864f","impliedFormat":99},{"version":"c71b08b656ec67568f366241678b35569c65fe7df5b1b1d450bee7e9b06f8ff5","impliedFormat":99},{"version":"4866caa6f66072a9029b8081a0b0614ddff5995126486d8b96414a8d2a22285c","impliedFormat":99},{"version":"6d37cb963c5288b5225af7fa9d072c429920718fa87d8352f72b5b80978aaf0b","impliedFormat":99},{"version":"e429692aefa26a42888b1e63959688bc0c75ef34fd3eb7c246f32b8872aeeb31","impliedFormat":99},{"version":"d97cf67eb2772d68fbc0ba44ac3c6d6f4d5ae620d8980084690acd049be0cc28","impliedFormat":99},{"version":"79182cb8300ae458110b9014011f3bce7a1f5983223128b1635f429ca4962b81","impliedFormat":99},{"version":"9bb8a03e0015254999c1e96830242fa3764856fd14958d3b097149f4491b1fa6","impliedFormat":99},{"version":"21655de6cf9d8df920b2dd8aaa5d6b4f88630c5c6f4df66947f4a2c4e59f7c79","impliedFormat":99},{"version":"7db915f07d1dec500718675edd2881ccd140132b7954eecb1bbc4313597ab4b0","impliedFormat":99},{"version":"7981d90e43327e29911a56c198f090dd816c5f2a15335c294c3f010f02b8f01b","impliedFormat":99},{"version":"5819a2787a272ae1b20f1cc8c81d98ddf09b163ad24cd1318719113a61205970","impliedFormat":99},{"version":"7f45ae699788ef0d76c10eaf0ed2fd3843ae12514355842c7ec6d5403925ace1","impliedFormat":99},{"version":"c565deb632ba928f5ca6e1ad8fea0410a7695b6fabbd1132618f0d329cda0f50","impliedFormat":99},{"version":"111346e95c27db969bebdf620d68008685571fb01e07c4f9c722f600f5fdda3e","impliedFormat":99},{"version":"a482905e0aed325e2f3cfd61de96fbf7c11e068e79c65f1974948d8962b85c2e","impliedFormat":99},{"version":"21ba214033e94c069266f184870db915957890ba80ee669cdca6f2c2346644d7","impliedFormat":99},{"version":"8dd2b29d482fb6746cfdcff57c1441d105f41ee91daaf346e1d11fd47650c783","impliedFormat":99},{"version":"4b3035f436869dc5da9815cb51a371a972fe31e2515c5dc594b3d74ddb701bee","impliedFormat":99},{"version":"13e18664181a3e017dcd8d6da49baf9d039092717810b0c7ca28fa50e3c8734f","impliedFormat":99},{"version":"8d2a9a4b17120c5c34ff1016a92b33b90e72f9430d8f58f16504beac3f5eba81","impliedFormat":99},{"version":"580307f6deb46c1f0045f9e74281cc285d2e7e39c96b378e31c251ba09521c9b","impliedFormat":99},{"version":"5b800f6a5c739360992423332074038edd736bc74b5565373448162289e933af","impliedFormat":99},{"version":"b78a24b52dea49fa0b8651db08e733debc94c4289700d1ebc89601972daabcbe","impliedFormat":99},{"version":"e1ce38cfb5b10848859e3c4dfbe9c42521967c4e91042e1f3c40c59c17432dda","impliedFormat":99},{"version":"a6835ba7439febe71eb3106bb4d26584794dc0f4855cd4c2af3ac2c9f5b25377","impliedFormat":99},{"version":"85948b36914a06d93bd22ee8580794b8e8486fcd814c301ffbbdce2371dea86d","impliedFormat":99},{"version":"ec455fb31d11dc3782f7c7bc81bc1ffee91e360b66ee6a55ee8135c896a9b0cd","impliedFormat":99},{"version":"d8f1e5f8e2f59c9ace3deedff9f1d5fd9aea1fd6abea384dde6f9ca132b5fe79","impliedFormat":99},{"version":"7022da6a9c58eee4317bc9ed61af467e92ade72a59f9e3785ab7fe8badcb9a35","impliedFormat":99},{"version":"5692c147dca7d616c0c8f2e8c533515c94457b7232fa255970102aebebaf3fc2","impliedFormat":99},{"version":"e75a927cc44a75ceadbe2e95ed18cf0b9ba904e14d37c1e2bd24b17b9ae7843b","impliedFormat":99},{"version":"a97e0fea0ab50bceccc582e21eab30bdcfb4336df84ba51ac633fc1331ad6e90","impliedFormat":99},{"version":"2ae624226a9bcb73293716bf1054b244938ba91eb3926f4cbc81157e3252513e","impliedFormat":99},{"version":"59ec53aae4cb5a602660390aab1cbddfc30a8ade8827395ee2e3b30e579377a5","impliedFormat":99},{"version":"2dca9b2566990a7508270b19ff7a36bce81d829509214a4ac87564ae2bb386fd","impliedFormat":99},{"version":"cd0c217d59afc04deccdffbe56c75fcfd86170e18252990c7bd8c67725e07132","impliedFormat":99},{"version":"9737c5818211975651a00a350f9dd836dd13c4de1fd8e5557e208bcecf5a6cea","impliedFormat":99},{"version":"2d0a4e661dac6ba0e8b6b8e0672d62e5dafea155223d185d9a9298acf2d14665","impliedFormat":99},{"version":"d6828477d01712f5841330b674ce2f6a76ae298a926f6fdbe67ba7660ec3ace3","impliedFormat":99},{"version":"347290356c13d55723dd8a866f9f1c85c463b2d00463a72ad072a55600fc8616","impliedFormat":99},{"version":"642899659eb387a4ced2f61d5d6a2fd20d792b68a3ee4321c446e014da5bf9e1","impliedFormat":99},{"version":"8fc9c4434476710427388af587998bac7a347cc68329b7da3a57fb11b72d12f3","impliedFormat":99},{"version":"d64fd4bea85624039b7b0441454419bbedd4501b553395a71bcbf8656f8df237","impliedFormat":99},{"version":"016e62f3268bdd7223c7ae9b9dc48acad3703ab46d83551b40c448bf24988426","impliedFormat":99},{"version":"ec3602337c24adb3702d9057f07a2b8751783059303663316736830011d4b474","impliedFormat":99},{"version":"c8a2414eda9226c6c50af454a9ea1536c176e58432e755ba5fcb229f996d9133","impliedFormat":99},{"version":"d14328f8d67ccb14c3cff684f2232433977c7eea206444561fa2f379702408eb","impliedFormat":99},{"version":"6c924e274aa22a4e099fc378a61cadbc90c4fbea075cd1fd577e2a0e9afaf182","impliedFormat":99},{"version":"393d1b40f1541ea9861b860564c623e3a40e3d959147382af1f49eed8b84be43","impliedFormat":99},{"version":"7ffda1567fdd3b535ef60e5b8cbab6bb2d11f8fc998e88060c30e595bf61452f","impliedFormat":99},{"version":"164af37e5cde8d2d830b5a5f2aaa6be547b8004e4e98b33fd6977581f8be4d4a","impliedFormat":99},{"version":"3f677da0a7ddc370dcab43603da691955a7e0479dac12086696355af9741b5ac","impliedFormat":99},{"version":"e0ace1698102560c3b8090c2dd1f63ecd0a2b8601b4cb4b16df8642793fd036f","impliedFormat":99},{"version":"cfb10af0ff7ca1449f9cfe9ab9ea22717f78e7b7d1ca41a88095c584316a4515","impliedFormat":99},{"version":"e038fcb79d0716bd68af2421b6ed71d35f665b9c6f54948688366284e264c1bd","impliedFormat":99},{"version":"9052804c912704d31ad2107e130ceca04774b52abaf25735b0b3bdea8e1494b2","impliedFormat":99},{"version":"9c31f13604ee809712dd2c1e5c78283ec52cdad5b8713f5664c554b8d772e71b","impliedFormat":99},"d0f4e9c0edcd72cfe7618d93ac8a1f693b193b90c5d3a2247ab05e9993c6e85e",{"version":"bb703864a1bc9ca5ac3589ffd83785f6dc86f7f6c485c97d7ffd53438777cb9e","impliedFormat":1},"ee487439f7946c510aee90e571a926a0692c4996f563e134b39266ae2aaa6984","7836a6339a3e3794cec8ded8e146264ce62c9e885139486cdd80a403a121c14b","545bc2f1778a9388f3ee1ac904f043e18cc2d4cea56b062423a6967bc4ac1694",{"version":"e7441be68f390975c6155c805cea8f54cc1b7f3656b6b9440ecbbbd7753499e6","impliedFormat":99},"4be7765c14449bb7885f7a79e2b6b8b635138d56bb52d9f221f75263417d6428","ef8c41cd5beef2fed32d6f7e1995d94e3330dd61f892c3042f266f6692df3a40","36790362365485fc1916026197f00e5a705a7ef6d61f75ed8f4773d9c4003dfb","a29dba1b765b22b9a8fa48ca9a4b8da3f2f89be3ea7641b1a416b485d3e8d2c3",{"version":"71acd198e19fa38447a3cbc5c33f2f5a719d933fccf314aaff0e8b0593271324","impliedFormat":99},{"version":"6ce55335012d76737df504baabc950805760acf3be988142d1985aa4893f919e","impliedFormat":1},{"version":"88efe27bebddb62da9655a9f093e0c27719647e96747f16650489dc9671075d6","impliedFormat":1},{"version":"e348f128032c4807ad9359a1fff29fcbc5f551c81be807bfa86db5a45649b7ba","impliedFormat":1},{"version":"8ee6b07974528da39b7835556e12dd3198c0a13e4a9de321217cd2044f3de22e","impliedFormat":1},{"version":"deefd8c43b40f9797c3921d78d3f9243959621a17b817be7f5d95c149f23a9dd","impliedFormat":1},{"version":"5f12132800d430adbe59b49c2c0354d85a71ada7d756e34250a655baa8ad4ae5","impliedFormat":1},{"version":"1996d1cd7d585a8359a35878f67abdd73cc35b1f675c9c6b147b202fdd8dfc3f","impliedFormat":1},{"version":"b16e757e4c35434065120a2b3bf13a518fc9e621dc9c2ed668f91635a9dc4e75","impliedFormat":1},{"version":"d22cd2e880dc30d21cf20b26b6341e0478f3505ea645d1504c7e9c14cdff1198","impliedFormat":1},{"version":"d02ced7accb512e6198b796b8d284e7979abde0f089b0a77969747a5f27bfb23","impliedFormat":1},{"version":"4374cefdde5c6e9bad52b0436e887b8325b8f407c12035194ad02c28f1553a3a","impliedFormat":1},{"version":"5f1ba0898eb0a54a644cb9c95c2240beaa961d87fd080cbb90807a6cc03daeb3","impliedFormat":1},{"version":"8e92ee8710ba85b158c5d91b0bbc9d0d033f5e062b6e70178063f01b20f63a14","impliedFormat":1},{"version":"ee933420aacba1f60aa70fb8ba47c5e69001b005073b71973114587089a13c7f","impliedFormat":1},{"version":"0a0714999d0a5bdfacd15c7b34cffbcc6f263f6cb0ccb42076cdc541c6987797","impliedFormat":1},{"version":"56584bfc655f9df64afc0f22f7d1122c29e5b74b342c203b891e19de9fa37de8","impliedFormat":1},{"version":"40ec58f0fadd0b3981b3d383e1c12fa0680115ae9f018387fc2cfc0bbcf23204","impliedFormat":1},{"version":"849b9e7283b7309a4556c9b90bb8e2dfc27751f157798065bbc513dcddb09a8c","impliedFormat":1},{"version":"76bba0c97594248c1be19af32d5799f7eff51cec2926d8e4dd59267d7636a0b4","impliedFormat":1},{"version":"10e109212c7be8a9f66e988e5d6c2a8900c9d14bf6beadf5fa70d32ada3425cf","impliedFormat":1},{"version":"2b821aeb31e690092f8eae671dd961a9d0fd598ff4883ce0a600c90e9e8fa716","impliedFormat":1},{"version":"26602933b613e4df3868a6c82e14fffa2393a08531cb333ed27b151923462981","impliedFormat":1},{"version":"f57a588d8f6b3ce5c8b494f2dc759a8885eaee18e80a4952df47de45403fedbe","impliedFormat":1},{"version":"34735727b3fe7a0ed0651a0f88d06449163d1989a2b2de7f047473adc7c1c383","impliedFormat":1},{"version":"a5b13abc88ab3186e713c445e59e2f6eee20c6167943517bc2f56985d89b8c55","impliedFormat":1},{"version":"c8a206a6ba4e32710ebb4a389187772423de0f4f6180b95a7ef1a5a1934c1be6","impliedFormat":1},{"version":"7ae65fe95b18205e241e6695cb2c61c0828d660aca7d08f68781b439a800e6b8","impliedFormat":1},{"version":"c2c8c166199d3a7bd093152437d1f6399d05e458a9ca9364456feecba920cda4","impliedFormat":1},{"version":"369b7270eeeb37982203b2cb18c7302947b89bf5818c1d3d2e95a0418f02b74e","impliedFormat":1},{"version":"94f95d223e2783b0aef4d15d7f6990a6a550fe17d099c501395f690337f7105e","impliedFormat":1},{"version":"039bd8d1e0d151570b66e75ee152877fb0e2f42eca43718632ac195e6884be34","impliedFormat":1},{"version":"d565d66b38d54de037c9d46dede1f12630010d9b45fd9c6b432c7a40b2e30502","impliedFormat":1},{"version":"d7386a1ebe9a3eae227a5561c898c10cacb61a49f941c5a18cdf593f979c693c","impliedFormat":1},{"version":"a346701ad6dcdaa58e388fe0995fc5304c09c395b8cba68ed872780f8c102004","impliedFormat":99},"c3c250bee5cd2746165b2eabe9a6bab69ccd163893358daf17d5b664820e6f74","3634c42485b97e10d69b2ecf2f76bfbb57321ff7c21526f8623b86347a50b799",{"version":"0bae91f96a7bd8fbfce9143b6d00f643e551f901d6ab647cae5f499774f27648","impliedFormat":99},"bc3d7f494fe4d65c1bdbbb477ea77ac45c2e1cc29b5f4066ee951e732676d7eb","b98729fdca40c90c35ad0a40ff347db5c0978fea906734165cc07f24038e8987","1351c5de85e852c7d76e61da8c88e45ba4e9702db3e16ca7e8551cd695733038",{"version":"b843496b17a2bbd79c83809c73fd9c59fab53d3e361e04e52e2d489524eea764","impliedFormat":1},"28250c0637710d7938fce47ff0d97bba4fc67baf639031d6980ed4001d874b06","afdf385f625abefb53b45a084801a903f24e5b80463831cff09dbb69c9694489","a15cb518fd8432bbdeadee6055612deb8526af56b3ad289e837d473402b48296","564feac3adc5230143f3fb9215e32020d1b4e1d46dc95e32760d5f0523b68445","0437c634a2ef34f5c6b2f24237767398741915e9d21e709b2997e5064144c08c","8c79da4eeafe6f8f0a6497bf1c78cacd86089acb24c545652dff13b6954c0d30","639f94d3cf05fdcd46b57e78a08db2f129a31cded4ce6ace02bffeb591462305","f69cdafb276ea3ccae23019833be1d0b71a0a7fde91e0342827ff87d564ba570","d333cf34143897d92e5f742c0d25d8a144900e903aaf64ca132e6c63f2032840","6a335613be60cfdec5f899cb7c98007efba56dad7ec407bf8632cec4984b42f8",{"version":"00039b853a6eaaad73d04d2d852dd7c9698538913fd9745c1b6b8a22b4922448","impliedFormat":99},"5831ebdf1208502dd05f90c32f42502bb26e15b6961c5c1597e5560a4519bb4a","21436d726207cd9b449d396f4247693033aec12e815b8ea95747044c289b1de7","83cb253963b268cd2ad25217d5a90781e0e7d69167dcc96d2dbf7325e3705852",{"version":"9c580c6eae94f8c9a38373566e59d5c3282dc194aa266b23a50686fe10560159","impliedFormat":99},"0d9c4f9c9d061ca4b7213a2d5794ed23e7f5d160c553a5784b345e9f4f6b4ab5","993e2b77accc3bac7482b83971c86657d70449a77c5185d2fc990d68b67357e6","3aae2edbb08cdce30fbc6953a230f8b814bbbb1a74c107dd6e1f03484433b677","7522c40c341060ead4fa689c369170ca08393d50ab3a1b2d33cca27dbca663c0","ad50f00600024bd924e8065bbee0af25930a4ee157a499af4976b435522c042c","36dd4cc1fa7247c28a7e784ecffec7f33ba12c2f1ef9b41f729c251f2f47ecb9","0ca61e8b1b9e77e107f454e9b56a3acbba83ba2536e20e92613deba351cf1c83","4374e37ee7783045f80c7d1d1cd1ae197a5ffde2a8be945782ea542f2cdcbc77","22fbb25b529af8fa3b79cabc63953d516e8b93c2add02a6068fe981d2fcfa674","2a1c8db0a32be18629a78dc6a9e723cf679ca37401bff5f02acec286638544e4","4fa856fcdd6a51c36fcd73936440cf6475c371045306cd8320840842cce70c40","1c26aa5b672d2445ea7e3bab054e8b43646a873e0620ca06ff49d178064ea26f",{"version":"6c05d0fcee91437571513c404e62396ee798ff37a2d8bef2104accdc79deb9c0","impliedFormat":1},"334aaea0825b30a6800492d87b60c626f5c727afbe1a3fbb3a0b0f7fddeaff2e",{"version":"6aa2859da46f726a22040725e684ea964d7469a6b26f1c0a6634bb65e79062b0","impliedFormat":99},"3a36847ae7d8aefdafa8121db60110079cb2c0988f8eea4da52cc51647831455","16227338bb3238de48a072ad6c3c3b70301aa07cb8e4eb2b1a820f5d92bedacd","f2769be875442889d0f65abb106f77001037ede201a5ba18f762012580f4e8b6","f7252c049fd5c34baf2eee07d0912e1020305e5dbbd4309d11ae48f91a1a06bf","c964b9c32f581d676ce088c5db4a20c22954484d603e026533c56dfb9b974ca1","d061fd9f704108cb97ea5c475bbaf47544c9bab37a858a5b0fc55c0b57188053","3d49073fa197347bb741ea058e8ebc4e43876e717aa5c500ddd02a4168e7b184","f28ef8758fd0f99ba378b95abbb780653f9996bbc6a04bd93a2185dfed43c3cb",{"version":"52051705f2757ca1c0976d7cdd0fe0c4cac259e27a1c889be5179609f8c50677","signature":"2f01d8b5d5eda65c5e3af88a6ed49d9f6b6fe713aed13293bcec75c704531284"},{"version":"4469746a946694c20d5e9718292bce40d44b1eb7d614ac14d7e2ab09eda3c0cb","impliedFormat":99},{"version":"01ee53c8ecc526b22fba47522d87b2a53d6b9ff44190aa0140fd2a92f39e17eb","signature":"c4f64d8bd69ce1da4576325fc06fb35c07e87fb48b47b2cd83e91c44450002cf"},{"version":"2084d5041ef95d495546060c712a7d7a81cc804535deae1fec6ffe78326a177f","signature":"f8487b21ca8f87be4ed41b5fbe29bc20c95bccbba2c53578e7244e46175dc186"},{"version":"6d159a697f666a25973e32a3e1c300ff5d862d8b836fb946fe683cc782fbe4a4","signature":"7c2cc7e56d4cef2ca14393758f71cc43d7ce9ffc270297cc779b252faa136872"},{"version":"f9c7c509c4c5179620913a952ecbcfc7589f104e40dea90940ddb304d7d5ae2a","impliedFormat":99},{"version":"6426e51e3bb1ae2c5bbd960445367d729970c9c8229fe940ad28572c7ca9a7f1","signature":"67376835583256a082a04b5fc35998fc20518b3eb72974cb44f60c6eea4ea230"},"f3360e92ee6f5dbc757f13ecdea441162ece47a4ffbe7d75758a5473e279ece9",{"version":"ad6da9cd7f5534c51dfd49010c3a090d1d4eb25ccca3c9a2c3b1a51b85ba68a3","signature":"1b0091c4af35d6f431f1bdab53be3ec7555a6572843f38d32a7d01b4a5ee4d4e"},{"version":"c7954c9fa0abaf91dfd25cfc7df3d968222542a3b400b029f1451651300b4c88","signature":"0bf70d1ae034f7a5ba5a1543176174a86a43bf8267ee5d8f350c002dbdd542b1"},{"version":"056e397d576c6749f80fe5f191b34c002a112e7ac4def8df6648b97123205be8","signature":"21c3e76a81be5df4154eb512c1da0cdd7302a1233b296f3b4dc025ccec7c362e"},{"version":"9d5fa6ffa2b89d6c40b365645b00babd6d5e70ddd9745a9127e73469f91e2151","signature":"32382ed5b8e2e864a8f61cf431ebf4ba924cbe289a53687d0b821519665e1402"},{"version":"6ae162c0233bbff94eb275b1576dda64cdefd9f6837aa1c18ebc5a7b5ed28f36","signature":"ed1499071dd1df5476ddbc9fae0f5ad8e3070e04104b0cde1e53eb81f0cbb60a"},{"version":"809193f255b0ebcd80cf3bb96b0eafc53e0003818088297ded7595180f7cc4a4","signature":"fb32dd2090ca8cb55531efe82f2d6141ad51e04618e8059dc6a079f5b6e6bb4b"},{"version":"351b0e1a63f5bbdf3dff103492d94a6e17c3afc8db8035e96e2b083dcf4ac107","signature":"b4ef19db3919f415991f2d83d34d15ea73f5c778a3fd79e35cd990c1fbb3e6d2"},"31d6aa0dd9cce9575126af70ae2bf7be7c5f5001502410abae74138aac88aee1",{"version":"4c132bf13e5d3a2e3e5b054b4e8d81e4bed80a3411e9f8dec6a26a52105a6942","signature":"9d8a7e1d20c9ea4ab9a03ba6a03c9f184f1007c2fc5d6c75ac18d312a693aa33"},{"version":"046240bd8fa2805abf5914967d471c4a8f751824deb87ec1b43d9be2050f97a8","signature":"8beb4e4c1cc846cfaf6d6d732cba6312d8272b424ef1b4429f1bd2a5fabf15f2"},{"version":"d3cfde44f8089768ebb08098c96d01ca260b88bccf238d55eee93f1c620ff5a5","impliedFormat":1},{"version":"293eadad9dead44c6fd1db6de552663c33f215c55a1bfa2802a1bceed88ff0ec","impliedFormat":1},{"version":"36eb5babc665b890786550d4a8cb20ef7105673a6d5551fbdd7012877bb26942","impliedFormat":1},{"version":"fec412ded391a7239ef58f455278154b62939370309c1fed322293d98c8796a6","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":"93c3e73824ad57f98fd23b39335dbdae2db0bd98199b0dc0b9ccc60bf3c5134a","impliedFormat":1},{"version":"a9ebb67d6bbead6044b43714b50dcb77b8f7541ffe803046fdec1714c1eba206","impliedFormat":1},{"version":"833e92c058d033cde3f29a6c7603f517001d1ddd8020bc94d2067a3bc69b2a8e","impliedFormat":1},{"version":"8e6427dd1a4321b0857499739c641b98657ea6dc7cc9a02c9b2c25a845c3c8e6","impliedFormat":1},{"version":"58da08d1fe876c79c47dcf88be37c5c3fab55d97b34c8c09a666599a2191208d","impliedFormat":1},"feb22d94150b9f67c73627fa4111c0c165aad04c8dfa9504b8c3b9ff2ba4f6f1","a1f0147a61528aa480d3836e19641f410dd9ed911ceae88472b46ba3e87f49fe",{"version":"17e66270055cd906f6511b6ef8d9226f0add20b2d737d9f817057253c6505f1e","signature":"c3c8d9607cddf5d1f3550adf208c611045da50e942adb7cafed20a8e958b8353"},{"version":"97fbed0c7ad295ecf5ffaef2c2d4b2def8b9ed48caa6df1ba3226f9f3e6d3f52","signature":"e1942e938d124f0c1b2ccd676fbe2872461433778aadd8c897e293753e57d249"},{"version":"b47980c8976c07f12da01cf7584ec0a1a9a8d6979f18e1bb9d9b4141d1ff5135","signature":"64fa69f98db3c37eefc3830bdd191254e6b216644c1ca7d878c0d30bbd24e3cd"},{"version":"3dcf8e929ff687d3f09001e0b4b01e06fa6ffd8a258a89530b590f06200eaa26","signature":"4246279161b01640891add27bfc3095e38104f1294f17f5053984a8eb56eb82e"},{"version":"230ff4af11d784971f535a3cd4511a49fee8ca40c4406fdb365d7f81f60e4637","signature":"d6a3b65153431fc9d367550e2e9bb04333c6d48fb7421c042d8f4b2beafd6964"},{"version":"72592ead32da30c17dde4f068fbb27ecd39c2c1a1da9c75716c91670e5dc26e3","signature":"bf56bc048fa334ced2877586078ab3e05d074d7f576af59abd350c56ffa0577e"},{"version":"50cef07febcb1576d9305035b9eec78a74453f4b127106245d53d71ca7d68f80","signature":"2384122f5c3d4abd1585f6f650a00b92e4f81bd4f474e7ab137f132db76ff94a"},"b718ed2fec19cd221d14cc7bbd89ed850f45cb3cd8c53dff13a3b0b6e557d18b",{"version":"a7553ef9fdcb7f6dedd8ef8da866700d33ea528b4dd32252d0f320779dca746f","impliedFormat":99},{"version":"7a00d81ed074c6d0352568fd46f2a93d703f0210342c233364ed4b81f6fb6fa5","signature":"ef4540ac3e8fca10e0ef8c3e1b2f124c4c14487a83641878351d102fad161817"},{"version":"bbbe2c8dea94ed5e8b509640b3ebb7541f915ae9bb0b60d963d98ef7ecd78d29","signature":"abbfb2d663444cbab245fe93990d1c658e8af6da61ab688c2cf7f69f06e8fb4a"},{"version":"227c6b9685a785db07ad29a6ad37d61f48cf6d62ade571436c31abe1d5c966d6","signature":"29882164605c36806d0206d4cb02833a22d3409541632b5cefefb8d2c94f3886"},"edf878df729154b040d0a56754951c7423aa9cc334bc3db58d15dd0d5d479fdf",{"version":"21c18895a091b7cf12efc90a6f89dc970e25a0a26e6c34aeade397e1a3dbe500","signature":"d242427bf50266c5794ba3d5f979b364bd45301d1a1ea83f8e0b332af269aab1"},{"version":"05d4bfa40ca91b5c33e27c285a348bd16ccafa570cbf9042adf102ab31f8d360","signature":"9d6319b2efcbf11212ebbdcdb6618cb0cd84b37460d220c9fa962c6eede02e41"},{"version":"4ffba3c5848b4fe62ee59b754fd5f256ad9656a0db6d37b9a2a8cb40dfc7ac21","impliedFormat":99},{"version":"c76c02846ba7d40b9b3488f0e8d75d02cbdee2f0bc5fcd55dd3bd2e1457646ea","impliedFormat":99},{"version":"32b35cf0dc3a1b1a7118b61c34ce2ad1a29695851679f9ec34e0776f2ece2a69","impliedFormat":99},{"version":"b413fbc6658fe2774f8bf9a15cf4c53e586fc38a2d5256b3b9647da242c14389","impliedFormat":99},{"version":"59e5e964b84fdb2378e9455e4e59405030e4ed2b4c6f891ce395f17796af3cbb","impliedFormat":99},{"version":"c30a41267fc04c6518b17e55dcb2b810f267af4314b0b6d7df1c33a76ce1b330","impliedFormat":1},{"version":"72422d0bac4076912385d0c10911b82e4694fc106e2d70added091f88f0824ba","impliedFormat":1},{"version":"da251b82c25bee1d93f9fd80c5a61d945da4f708ca21285541d7aff83ecb8200","impliedFormat":1},{"version":"64db14db2bf37ac089766fdb3c7e1160fabc10e9929bc2deeede7237e4419fc8","impliedFormat":1},{"version":"98b94085c9f78eba36d3d2314affe973e8994f99864b8708122750788825c771","impliedFormat":1},{"version":"90ba95a763101bb61b8a799731a2ed60b5016b8135c1a2d5186862d4b534d4a1","impliedFormat":99},{"version":"ae77d81a5541a8abb938a0efedf9ac4bea36fb3a24cc28cfa11c598863aba571","impliedFormat":1},{"version":"f329dfad7970297cbf07ddc8fce2ad4a24e2a3855917c661922ef86eb24dd1f1","impliedFormat":1},{"version":"480f05e466e86ee6c80af99695d90079f9e2956a4986e930ebd3d578688ff05c","impliedFormat":1},"91a3c8962a0edcb956206a501d943fe99e1c78c6d4d8b5c9a948a3362c75978c",{"version":"3cfb7c0c642b19fb75132154040bb7cd840f0002f9955b14154e69611b9b3f81","impliedFormat":1},{"version":"8387ec1601cf6b8948672537cf8d430431ba0d87b1f9537b4597c1ab8d3ade5b","impliedFormat":1},{"version":"d16f1c460b1ca9158e030fdf3641e1de11135e0c7169d3e8cf17cc4cc35d5e64","impliedFormat":1},{"version":"a934063af84f8117b8ce51851c1af2b76efe960aa4c7b48d0343a1b15c01aedf","impliedFormat":1},{"version":"e3c5ad476eb2fca8505aee5bdfdf9bf11760df5d0f9545db23f12a5c4d72a718","impliedFormat":1},{"version":"462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","impliedFormat":1},{"version":"5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","impliedFormat":1},{"version":"d0570ce419fb38287e7b39c910b468becb5b2278cf33b1000a3d3e82a46ecae2","impliedFormat":1},{"version":"3aca7f4260dad9dcc0a0333654cb3cde6664d34a553ec06c953bce11151764d7","impliedFormat":1},{"version":"a0a6f0095f25f08a7129bc4d7cb8438039ec422dc341218d274e1e5131115988","impliedFormat":1},{"version":"b58f396fe4cfe5a0e4d594996bc8c1bfe25496fbc66cf169d41ac3c139418c77","impliedFormat":1},{"version":"45785e608b3d380c79e21957a6d1467e1206ac0281644e43e8ed6498808ace72","impliedFormat":1},{"version":"bece27602416508ba946868ad34d09997911016dbd6893fb884633017f74e2c5","impliedFormat":1},{"version":"2a90177ebaef25de89351de964c2c601ab54d6e3a157cba60d9cd3eaf5a5ee1a","impliedFormat":1},{"version":"82200e963d3c767976a5a9f41ecf8c65eca14a6b33dcbe00214fcbe959698c46","impliedFormat":1},{"version":"b4966c503c08bbd9e834037a8ab60e5f53c5fd1092e8873c4a1c344806acdab2","impliedFormat":1},{"version":"3d3208d0f061e4836dd5f144425781c172987c430f7eaee483fadaa3c5780f9f","impliedFormat":1},{"version":"34a8a5b4c21e7a6d07d3b6bce72371da300ec1aed58961067e13f1f4dc849712","impliedFormat":1},{"version":"52cebb2786aed2976c3636a42eeb039502c2914af3d39088492bb5808bde65d0","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"ab07c11b401a82612d82a6dc7006d0a4932307aeeb751db14084350e5c65367c","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"917386203086a8118547652a82d41ce480a0887836689af7393de97dc86d8752","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"}],"root":[336,807,1542,1544,2227,[2233,2236],2239,2243,3552,[3554,3556],[3558,3569],[3587,3594],[3596,3601],3616,[3635,3637]],"options":{"allowJs":true,"checkJs":true,"esModuleInterop":true,"jsx":1,"module":200,"noUncheckedIndexedAccess":true,"skipLibCheck":true,"strict":true,"target":9,"tsBuildInfoFile":"./tsbuildinfo.json"},"referencedMap":[[336,1],[807,2],[1542,3],[1544,4],[3569,5],[3587,6],[3588,7],[3596,8],[3597,5],[3600,9],[3561,10],[3562,11],[3568,12],[3566,13],[3564,14],[3563,15],[3567,16],[3565,13],[3598,17],[3599,18],[3589,19],[3590,14],[3594,20],[3591,21],[3592,22],[3593,23],[2243,24],[3554,25],[3555,26],[3556,27],[3552,28],[3558,29],[3559,30],[2233,31],[2234,32],[2236,33],[3560,34],[3601,35],[2239,36],[2235,32],[3635,37],[3636,38],[3616,39],[3637,38],[2227,40],[2305,41],[2308,42],[2306,43],[2303,44],[2302,13],[2307,45],[2301,45],[2304,46],[2309,47],[2311,48],[2299,13],[2321,49],[2315,50],[2317,51],[2320,52],[2316,53],[2318,13],[2319,54],[2310,41],[2312,55],[2139,13],[3097,56],[3101,57],[3100,58],[3096,59],[3099,60],[3092,61],[3098,56],[3158,62],[3160,63],[3159,64],[3149,65],[3192,66],[3191,67],[3163,68],[3164,69],[3196,70],[3195,71],[3194,69],[3198,72],[3197,73],[3193,74],[3199,74],[3200,75],[3205,76],[3206,77],[3204,78],[3203,79],[3202,80],[3201,76],[3210,81],[3209,82],[3208,83],[3094,84],[3095,85],[3207,86],[3181,87],[3178,88],[3217,74],[3216,74],[3215,74],[3174,88],[3186,69],[3187,74],[3183,74],[3182,74],[3173,74],[3220,89],[3219,90],[3172,91],[3171,91],[3214,88],[3184,74],[3212,92],[3175,74],[3180,93],[3177,94],[3179,87],[3162,95],[3211,68],[3189,13],[3190,13],[3185,74],[3176,74],[3170,91],[3213,69],[3251,96],[3250,97],[3248,98],[3226,99],[3249,74],[3252,100],[3254,101],[3253,102],[3150,88],[3151,74],[3152,74],[3256,103],[3255,104],[3153,105],[3154,94],[3146,106],[3148,107],[3147,108],[3155,74],[3156,109],[3157,88],[3257,69],[3258,110],[3260,111],[3259,112],[3261,88],[3262,74],[3263,74],[3264,74],[3266,74],[3265,74],[3278,113],[3277,114],[3270,115],[3271,94],[3272,100],[3268,116],[3269,117],[3273,118],[3274,74],[3275,109],[3276,88],[3282,76],[3281,92],[3280,119],[3286,120],[3285,121],[3284,92],[3279,92],[3168,122],[3283,123],[3290,124],[3289,125],[3288,74],[3287,74],[3137,126],[3119,127],[3122,128],[3118,129],[3135,130],[3117,131],[3138,132],[3123,131],[3124,133],[3139,131],[3133,134],[3125,131],[3127,135],[3128,131],[3129,136],[3126,131],[3116,137],[3130,130],[3131,131],[3140,138],[3132,126],[3141,139],[3134,140],[3136,141],[3115,13],[3166,142],[3165,143],[3167,144],[3461,145],[3291,146],[3292,147],[3404,74],[3221,87],[3222,88],[3230,88],[3229,148],[3232,74],[3231,74],[3247,149],[3246,150],[3233,74],[3234,74],[3235,93],[3236,94],[3237,87],[3238,148],[3240,88],[3239,74],[3228,151],[3224,152],[3227,153],[3223,154],[3242,155],[3241,156],[3245,74],[3243,157],[3244,74],[3293,148],[3225,158],[3294,159],[3296,160],[3295,74],[3303,161],[3302,162],[3299,163],[3301,163],[3297,74],[3298,163],[3300,163],[3314,87],[3312,88],[3307,88],[3316,74],[3318,164],[3317,165],[3306,74],[3315,74],[3305,74],[3313,166],[3309,94],[3310,87],[3304,61],[3308,74],[3311,74],[3323,167],[3321,167],[3322,167],[3328,168],[3327,169],[3324,167],[3320,170],[3326,167],[3325,167],[3319,13],[3337,87],[3338,88],[3341,74],[3340,74],[3344,171],[3343,172],[3336,93],[3334,94],[3335,87],[3332,173],[3331,174],[3330,175],[3339,74],[3333,176],[3342,74],[3353,87],[3354,88],[3357,177],[3356,178],[3352,166],[3349,179],[3351,87],[3347,180],[3346,181],[3345,182],[3350,183],[3355,74],[3364,184],[3363,185],[3360,186],[3362,186],[3358,74],[3359,186],[3361,186],[3369,76],[3370,187],[3368,188],[3367,189],[3366,88],[3365,92],[3374,190],[3376,74],[3378,191],[3377,192],[3371,74],[3373,190],[3375,74],[3372,190],[3392,87],[3385,88],[3396,74],[3395,74],[3383,74],[3398,193],[3397,194],[3390,88],[3391,74],[3389,74],[3380,92],[3388,74],[3387,93],[3384,94],[3386,87],[3379,95],[3393,74],[3394,74],[3381,92],[3382,74],[3188,74],[3218,195],[3402,196],[3408,197],[3407,198],[3406,196],[3400,196],[3399,76],[3405,199],[3403,196],[3401,196],[3412,200],[3411,201],[3409,202],[3410,203],[3419,204],[3418,205],[3415,206],[3417,207],[3416,208],[3414,209],[3413,207],[3430,74],[3432,87],[3429,74],[3426,74],[3422,210],[3427,74],[3434,211],[3433,212],[3431,179],[3420,213],[3423,214],[3425,215],[3428,74],[3421,216],[3424,74],[3437,61],[3438,217],[3435,61],[3436,218],[3442,219],[3441,219],[3446,220],[3445,221],[3444,219],[3443,219],[3440,74],[3439,222],[3454,87],[3458,223],[3457,224],[3453,166],[3451,179],[3452,87],[3455,69],[3449,225],[3448,226],[3447,227],[3450,228],[3456,74],[3090,229],[3460,230],[3459,231],[3348,94],[3089,232],[3120,13],[3145,233],[3144,234],[3142,13],[3143,235],[3087,13],[3088,236],[3161,69],[3091,237],[3169,238],[3121,231],[3267,69],[3093,69],[3103,69],[3106,239],[3104,13],[3107,240],[3102,241],[3108,242],[3105,243],[3109,69],[3329,13],[3557,244],[2238,245],[2237,246],[2323,247],[2332,248],[3553,249],[2322,250],[2327,251],[2326,252],[2325,253],[2328,254],[2324,255],[2474,13],[2475,256],[2476,257],[2481,258],[2477,257],[2480,13],[2478,13],[2479,13],[68,259],[65,260],[64,261],[63,262],[67,262],[73,263],[71,264],[70,261],[3111,265],[3113,266],[3114,267],[3110,13],[3112,13],[3584,268],[3583,269],[1584,270],[1582,13],[1583,271],[1585,272],[1580,273],[1578,13],[1581,274],[1579,275],[651,13],[328,263],[1272,276],[1273,277],[1274,278],[1267,13],[1268,279],[1269,280],[1270,281],[1271,282],[1152,283],[1155,284],[1161,285],[1164,286],[1185,287],[1163,288],[1144,13],[1145,289],[1146,290],[1149,13],[1147,13],[1148,13],[1186,291],[1151,283],[1150,13],[1187,292],[1154,284],[1153,13],[1191,293],[1188,294],[1158,295],[1160,296],[1157,297],[1159,298],[1156,295],[1189,299],[1162,283],[1190,300],[1175,301],[1177,302],[1179,303],[1178,304],[1172,305],[1165,306],[1184,307],[1181,308],[1183,309],[1168,310],[1170,311],[1167,308],[1171,13],[1182,312],[1169,13],[1180,13],[1166,13],[1173,313],[1174,13],[1176,314],[1326,281],[1327,315],[1328,315],[1329,316],[1218,13],[1210,281],[1219,281],[1211,13],[1212,281],[1214,317],[1221,13],[1215,318],[1216,281],[1217,13],[1213,281],[1236,319],[1235,320],[1224,321],[1220,13],[1223,322],[1222,13],[1225,281],[1229,281],[1226,281],[1227,281],[1228,281],[1233,13],[1234,281],[1230,13],[1231,13],[1232,13],[1491,323],[1492,324],[1490,325],[1472,13],[1473,326],[1471,327],[1470,328],[1488,329],[1487,330],[1486,331],[1377,13],[1374,13],[1378,332],[1376,333],[1375,334],[1484,335],[1483,331],[1386,336],[1385,337],[1384,338],[1457,13],[1458,339],[1456,331],[1290,340],[1291,341],[1289,342],[1413,343],[1412,344],[1411,325],[1390,345],[1389,346],[1388,325],[1477,347],[1476,348],[1475,331],[1466,13],[1467,349],[1465,350],[1464,338],[1393,351],[1392,331],[1397,352],[1396,353],[1395,338],[1401,354],[1400,355],[1399,338],[1405,356],[1404,357],[1403,331],[1409,358],[1408,359],[1407,338],[1425,13],[1426,360],[1424,361],[1423,362],[1422,363],[1421,364],[1420,363],[1415,13],[1481,365],[1480,366],[1479,331],[1371,367],[1369,325],[1370,368],[1277,369],[1288,370],[1279,371],[1284,372],[1285,372],[1283,373],[1282,374],[1280,375],[1281,376],[1287,13],[1278,372],[1275,377],[1276,371],[1286,372],[1194,378],[1205,379],[1193,380],[1206,13],[1195,381],[1196,382],[1203,380],[1204,383],[1202,384],[1197,382],[1198,382],[1199,382],[1200,382],[1201,385],[1207,386],[1192,387],[1242,388],[1208,13],[1209,281],[1239,389],[1240,390],[1237,281],[1244,391],[1249,392],[1250,392],[1252,393],[1238,394],[1251,395],[1243,396],[1257,397],[1248,398],[1246,399],[1245,400],[1247,401],[1253,402],[1254,402],[1255,403],[1256,402],[1241,404],[2334,13],[1561,13],[1454,405],[1442,406],[1453,407],[1444,408],[1449,409],[1450,409],[1448,410],[1447,411],[1445,412],[1446,376],[1452,13],[1443,409],[1440,413],[1441,408],[1451,409],[1434,414],[1435,415],[1436,416],[1437,415],[1438,415],[1439,417],[1429,13],[1430,418],[1431,419],[1432,281],[1433,420],[2355,69],[2361,421],[2356,69],[2357,69],[2372,422],[2362,69],[2386,423],[2385,69],[2374,423],[2373,69],[2467,424],[2380,425],[2378,69],[2379,69],[2360,426],[2358,69],[2359,69],[2395,427],[2381,69],[2382,69],[2465,69],[2371,428],[2363,69],[2370,69],[2396,69],[2365,423],[2364,69],[2399,427],[2397,69],[2398,69],[2367,423],[2366,69],[2403,429],[2400,69],[2402,423],[2401,69],[2406,430],[2404,69],[2405,69],[3472,431],[2394,432],[2383,69],[2390,69],[2410,433],[2408,69],[2409,69],[2415,434],[2411,69],[2412,69],[2417,435],[2416,69],[2418,69],[2421,436],[2419,69],[2420,69],[2389,437],[2384,69],[2387,69],[2369,423],[2368,69],[2466,69],[2469,424],[2425,438],[2423,69],[2424,69],[2393,426],[2391,69],[2392,69],[2428,426],[2426,69],[2427,69],[2431,436],[2429,69],[2430,69],[3528,431],[2435,426],[2433,69],[2434,69],[3506,439],[2439,426],[2437,69],[2438,69],[2442,438],[2440,69],[2441,69],[2445,440],[2443,69],[2444,69],[2450,441],[2448,69],[2449,69],[2447,423],[2446,69],[2454,442],[2451,69],[2452,69],[2453,423],[2457,430],[2455,69],[2456,69],[2414,423],[2413,69],[2388,13],[2962,443],[2961,13],[2958,13],[1563,13],[1564,444],[1052,445],[1056,446],[1049,447],[1050,447],[1053,447],[1046,448],[1047,13],[1045,449],[1043,13],[1055,447],[1048,447],[1054,450],[1051,447],[1044,451],[1525,452],[1526,453],[1521,13],[1527,454],[1522,13],[1524,455],[1523,13],[1520,456],[1140,457],[1142,458],[1141,447],[1136,13],[1137,459],[1138,5],[1517,460],[1130,461],[1122,462],[1123,463],[1124,464],[1121,5],[1125,5],[1120,5],[1133,13],[1127,465],[1139,447],[1135,13],[1134,461],[1132,466],[1129,461],[1128,461],[1533,467],[1126,447],[1530,468],[1531,13],[1532,469],[1266,470],[1131,13],[1265,466],[1534,471],[1518,472],[897,473],[893,474],[869,475],[868,476],[809,477],[919,478],[1017,13],[872,479],[903,480],[862,481],[918,13],[891,482],[892,483],[888,484],[895,485],[890,486],[944,487],[940,488],[1019,451],[975,489],[976,489],[977,489],[978,489],[979,13],[859,490],[925,491],[950,492],[934,493],[938,491],[926,494],[921,491],[927,491],[935,491],[936,491],[937,495],[920,491],[922,491],[943,496],[942,497],[923,447],[930,497],[924,491],[928,498],[929,491],[932,447],[931,494],[947,499],[945,500],[946,501],[1012,502],[948,503],[949,504],[939,505],[896,506],[847,507],[863,508],[887,13],[874,509],[894,510],[958,13],[960,511],[959,512],[882,513],[875,13],[961,13],[963,514],[962,515],[877,516],[886,517],[966,13],[965,518],[964,13],[969,13],[968,519],[967,13],[885,497],[883,520],[955,13],[957,521],[956,522],[884,523],[880,524],[879,525],[881,524],[866,526],[876,527],[954,528],[951,529],[952,13],[953,530],[898,531],[899,532],[873,533],[941,13],[810,13],[812,534],[1015,13],[823,535],[825,536],[822,537],[826,13],[824,13],[837,13],[827,13],[843,538],[1013,13],[853,539],[844,540],[851,541],[845,13],[830,542],[828,543],[833,544],[832,545],[829,13],[933,546],[854,547],[818,497],[835,548],[808,13],[848,13],[836,549],[821,550],[814,13],[858,551],[840,13],[834,13],[980,13],[838,552],[839,540],[820,546],[1014,13],[855,553],[841,554],[856,555],[842,556],[811,13],[817,557],[815,13],[849,13],[850,558],[860,559],[852,560],[878,497],[846,561],[816,13],[857,562],[831,13],[1016,13],[981,13],[819,13],[988,13],[970,563],[900,13],[1006,558],[1003,561],[971,534],[972,13],[1001,564],[916,13],[1011,565],[984,489],[973,566],[870,13],[901,13],[1000,567],[974,489],[1005,568],[992,13],[813,540],[1009,13],[906,13],[904,569],[909,570],[982,571],[983,13],[905,529],[913,13],[915,572],[985,573],[994,560],[986,13],[987,13],[989,574],[907,575],[911,13],[990,13],[889,576],[861,13],[1007,13],[1018,13],[1002,577],[917,578],[902,579],[912,569],[991,534],[910,527],[867,580],[993,581],[996,582],[997,13],[998,13],[999,13],[864,583],[914,584],[865,585],[908,13],[1004,497],[1008,13],[1010,13],[871,586],[995,13],[1105,587],[1107,588],[1119,589],[1106,590],[1116,591],[1113,592],[1115,593],[1114,593],[1112,592],[1110,594],[1117,595],[1118,595],[1108,447],[1104,596],[1111,596],[1109,69],[1023,597],[1101,13],[1028,447],[1039,598],[1020,447],[1021,447],[1024,447],[1103,599],[1032,447],[1036,447],[1037,447],[1042,447],[1085,447],[1097,600],[1096,601],[1095,13],[1088,602],[1087,603],[1086,13],[1091,604],[1090,605],[1089,13],[1100,606],[1099,607],[1098,13],[1094,608],[1093,609],[1092,13],[1033,447],[1057,610],[1041,447],[1034,447],[1035,447],[1040,447],[1084,447],[1102,447],[1026,447],[1083,447],[1031,447],[1030,611],[1027,447],[1079,447],[1080,447],[1078,447],[1081,447],[1025,612],[1082,447],[1022,447],[1029,447],[1038,447],[1071,13],[1074,613],[1073,614],[1070,447],[1072,447],[1077,615],[1075,447],[1076,447],[1068,616],[1069,617],[1067,618],[1065,619],[1064,620],[1059,621],[1063,622],[1062,623],[1058,624],[1061,13],[1066,625],[1060,13],[1365,626],[1360,13],[1363,627],[1361,447],[1362,13],[1366,628],[1337,447],[1338,629],[1350,447],[1341,447],[1342,447],[1294,630],[1323,631],[1322,632],[1295,633],[1343,13],[1344,634],[1345,447],[1325,331],[1324,447],[1346,635],[1347,447],[1352,447],[1336,447],[1348,447],[1349,447],[1351,447],[1339,447],[1340,636],[1364,13],[1330,637],[1332,331],[1331,13],[1353,447],[1321,638],[1357,13],[1333,639],[1334,447],[1317,640],[1318,641],[1319,642],[1320,643],[1355,644],[1359,447],[1358,13],[1335,13],[1356,13],[1354,13],[1293,451],[1516,645],[1506,447],[1507,646],[1502,447],[1503,447],[1504,447],[1505,447],[1373,447],[1368,647],[1372,648],[1493,649],[1498,650],[1474,651],[1489,652],[1379,653],[1383,654],[1380,13],[1382,655],[1381,338],[1511,656],[1512,657],[1509,658],[1510,659],[1508,338],[1485,660],[1499,650],[1387,661],[1460,662],[1459,663],[1463,664],[1461,338],[1462,13],[1515,447],[1391,665],[1478,666],[1468,667],[1500,650],[1501,650],[1394,668],[1398,669],[1402,670],[1406,671],[1410,672],[1497,650],[1427,673],[1428,650],[1455,674],[1414,675],[1482,676],[1496,677],[1494,331],[1495,447],[1513,678],[1514,679],[1367,680],[1292,451],[1310,13],[1311,681],[1300,682],[1316,683],[1312,684],[1314,685],[1296,13],[1309,447],[1313,686],[1307,687],[1299,685],[1302,687],[1305,447],[1306,281],[1298,685],[1301,688],[1304,689],[1315,13],[1303,690],[1308,13],[1297,451],[1258,691],[1264,692],[1263,447],[1262,447],[1261,693],[1259,447],[1260,694],[1143,451],[1529,695],[1528,696],[1548,13],[2229,697],[2228,13],[2230,698],[3623,699],[3622,13],[3630,13],[3627,13],[3626,13],[3621,700],[3632,701],[3617,702],[3628,703],[3620,704],[3619,705],[3629,13],[3624,706],[3631,13],[3625,707],[3618,13],[3614,702],[3615,708],[3634,709],[3613,13],[2145,710],[2141,711],[2140,711],[2143,712],[2142,711],[2144,711],[1555,713],[1469,714],[2971,13],[2948,715],[2972,716],[2947,13],[1553,13],[69,13],[62,13],[408,717],[409,717],[410,718],[348,719],[411,720],[412,721],[413,722],[346,13],[414,723],[415,724],[416,725],[417,726],[418,727],[419,728],[420,728],[421,729],[422,730],[423,731],[424,732],[349,13],[347,13],[425,733],[426,734],[427,735],[468,736],[428,737],[429,738],[430,737],[431,739],[432,740],[434,741],[435,376],[436,376],[437,376],[438,742],[439,743],[440,744],[441,745],[442,746],[443,747],[444,747],[445,748],[446,13],[447,13],[448,749],[449,750],[450,749],[451,751],[452,752],[453,753],[454,754],[455,755],[456,756],[457,757],[458,758],[459,759],[460,760],[461,761],[462,762],[463,763],[464,764],[465,765],[350,737],[351,13],[352,766],[353,767],[354,13],[355,768],[356,13],[399,769],[400,770],[401,771],[402,771],[403,772],[404,13],[405,720],[406,773],[407,770],[466,774],[467,775],[472,776],[736,69],[473,777],[471,778],[738,779],[737,780],[3633,69],[469,781],[734,13],[470,782],[337,13],[339,783],[733,69],[503,69],[2087,784],[211,785],[212,786],[210,787],[153,788],[162,789],[114,790],[115,790],[125,791],[113,792],[112,13],[116,790],[117,790],[118,790],[119,790],[120,790],[121,790],[122,790],[123,790],[124,790],[126,793],[163,794],[158,795],[127,796],[160,797],[159,798],[157,799],[161,800],[154,801],[139,801],[152,801],[140,801],[141,801],[142,801],[143,801],[144,801],[134,802],[145,801],[135,803],[146,801],[136,801],[151,804],[138,805],[133,13],[147,801],[148,801],[137,801],[149,801],[150,801],[155,806],[129,807],[131,808],[130,809],[128,810],[132,811],[156,812],[79,813],[83,814],[80,13],[81,815],[82,816],[208,13],[209,813],[219,817],[220,818],[221,813],[234,819],[222,820],[217,821],[225,13],[218,822],[223,823],[224,824],[230,825],[215,826],[216,827],[214,828],[231,13],[232,13],[233,13],[213,787],[179,13],[181,829],[178,829],[183,830],[180,831],[182,829],[184,831],[187,832],[185,831],[186,831],[191,833],[193,834],[188,13],[189,13],[190,829],[194,835],[192,13],[198,836],[166,13],[110,831],[171,837],[175,838],[169,839],[165,840],[111,841],[170,842],[168,843],[176,844],[164,845],[167,846],[172,847],[173,848],[174,849],[177,850],[109,851],[196,13],[197,852],[195,13],[84,13],[85,813],[94,853],[95,854],[96,813],[108,855],[97,856],[92,841],[100,13],[93,857],[98,858],[99,859],[104,860],[90,861],[91,862],[89,863],[105,13],[106,13],[107,13],[87,864],[88,865],[101,841],[103,812],[102,13],[227,821],[229,866],[228,13],[226,787],[2225,867],[2224,868],[1556,869],[2126,870],[2127,871],[2125,13],[1549,13],[1649,872],[1648,873],[2122,872],[1651,874],[1653,875],[2134,875],[1652,876],[1546,877],[1545,13],[1551,878],[1552,879],[2131,880],[1645,881],[1647,882],[2130,13],[2128,881],[1646,13],[1550,879],[1644,13],[1554,13],[2223,883],[433,13],[2353,884],[2352,885],[2351,13],[3463,886],[2285,887],[2286,888],[2254,889],[2289,890],[2284,891],[2281,892],[2282,893],[2253,894],[2280,895],[2276,896],[2291,897],[2283,250],[2278,898],[2279,894],[3595,899],[2295,900],[2294,69],[2290,901],[2296,890],[2297,902],[2292,903],[2287,904],[2288,905],[2293,906],[2275,907],[2255,894],[2271,908],[2270,13],[2268,909],[2256,894],[2264,910],[2257,911],[2265,912],[2273,913],[2258,914],[2259,915],[2261,916],[2274,917],[2269,918],[2267,919],[2263,920],[2260,914],[2266,894],[2262,921],[2272,922],[2245,13],[2248,13],[2250,923],[2249,923],[2252,924],[2251,923],[2247,925],[2246,926],[2244,13],[2277,13],[338,13],[2570,927],[2549,928],[2646,13],[2550,929],[2486,927],[2487,927],[2488,927],[2489,927],[2490,927],[2491,927],[2492,927],[2493,927],[2494,927],[2495,927],[2496,927],[2497,927],[2498,927],[2499,927],[2500,927],[2501,927],[2502,927],[2503,927],[2482,13],[2504,927],[2505,927],[2506,13],[2507,927],[2508,927],[2509,927],[2510,927],[2511,927],[2512,927],[2513,927],[2514,927],[2515,927],[2516,927],[2517,927],[2518,927],[2519,927],[2520,927],[2521,927],[2522,927],[2523,927],[2524,927],[2525,927],[2526,927],[2527,927],[2528,927],[2529,927],[2530,927],[2531,927],[2532,927],[2533,927],[2534,927],[2535,927],[2536,927],[2537,927],[2538,927],[2539,927],[2540,927],[2541,927],[2542,927],[2543,927],[2544,927],[2545,927],[2546,927],[2547,927],[2548,927],[2551,930],[2552,927],[2553,927],[2554,931],[2555,932],[2556,927],[2557,927],[2558,927],[2559,927],[2560,927],[2561,927],[2562,927],[2484,13],[2563,927],[2564,927],[2565,927],[2566,927],[2567,927],[2568,927],[2569,927],[2571,933],[2572,927],[2573,927],[2574,927],[2575,927],[2576,927],[2577,927],[2578,927],[2579,927],[2580,927],[2581,927],[2582,927],[2583,927],[2584,927],[2585,927],[2586,927],[2587,927],[2588,927],[2589,927],[2590,13],[2591,13],[2592,13],[2739,934],[2593,927],[2594,927],[2595,927],[2596,927],[2597,927],[2598,927],[2599,13],[2600,927],[2601,13],[2602,927],[2603,927],[2604,927],[2605,927],[2606,927],[2607,927],[2608,927],[2609,927],[2610,927],[2611,927],[2612,927],[2613,927],[2614,927],[2615,927],[2616,927],[2617,927],[2618,927],[2619,927],[2620,927],[2621,927],[2622,927],[2623,927],[2624,927],[2625,927],[2626,927],[2627,927],[2628,927],[2629,927],[2630,927],[2631,927],[2632,927],[2633,927],[2634,13],[2635,927],[2636,927],[2637,927],[2638,927],[2639,927],[2640,927],[2641,927],[2642,927],[2643,927],[2644,927],[2645,927],[2647,935],[2835,936],[2740,929],[2742,929],[2743,929],[2744,929],[2745,929],[2746,929],[2741,929],[2747,929],[2749,929],[2748,929],[2750,929],[2751,929],[2752,929],[2753,929],[2754,929],[2755,929],[2756,929],[2757,929],[2759,929],[2758,929],[2760,929],[2761,929],[2762,929],[2763,929],[2764,929],[2765,929],[2766,929],[2767,929],[2768,929],[2769,929],[2770,929],[2771,929],[2772,929],[2773,929],[2774,929],[2776,929],[2777,929],[2775,929],[2778,929],[2779,929],[2780,929],[2781,929],[2782,929],[2783,929],[2784,929],[2785,929],[2786,929],[2787,929],[2788,929],[2789,929],[2791,929],[2790,929],[2793,929],[2792,929],[2794,929],[2795,929],[2796,929],[2797,929],[2798,929],[2799,929],[2800,929],[2801,929],[2802,929],[2803,929],[2804,929],[2805,929],[2806,929],[2808,929],[2807,929],[2809,929],[2810,929],[2811,929],[2813,929],[2812,929],[2814,929],[2815,929],[2816,929],[2817,929],[2818,929],[2819,929],[2821,929],[2820,929],[2822,929],[2823,929],[2824,929],[2825,929],[2826,929],[2483,927],[2827,929],[2828,929],[2830,929],[2829,929],[2831,929],[2832,929],[2833,929],[2834,929],[2648,927],[2649,927],[2650,13],[2651,13],[2652,13],[2653,927],[2654,13],[2655,13],[2656,13],[2657,13],[2658,13],[2659,927],[2660,927],[2661,927],[2662,927],[2663,927],[2664,927],[2665,927],[2666,927],[2671,937],[2669,938],[2668,939],[2670,940],[2667,927],[2672,927],[2673,927],[2674,927],[2675,927],[2676,927],[2677,927],[2678,927],[2679,927],[2680,927],[2681,927],[2682,13],[2683,13],[2684,927],[2685,927],[2686,13],[2687,13],[2688,13],[2689,927],[2690,927],[2691,927],[2692,927],[2693,933],[2694,927],[2695,927],[2696,927],[2697,927],[2698,927],[2699,927],[2700,927],[2701,927],[2702,927],[2703,927],[2704,927],[2705,927],[2706,927],[2707,927],[2708,927],[2709,927],[2710,927],[2711,927],[2712,927],[2713,927],[2714,927],[2715,927],[2716,927],[2717,927],[2718,927],[2719,927],[2720,927],[2721,927],[2722,927],[2723,927],[2724,927],[2725,927],[2726,927],[2727,927],[2728,927],[2729,927],[2730,927],[2731,927],[2732,927],[2733,927],[2734,927],[2485,941],[2735,13],[2736,13],[2737,13],[2738,13],[3077,13],[2944,942],[2945,943],[2910,13],[2918,944],[2912,945],[2919,13],[2941,946],[2916,947],[2940,948],[2937,949],[2920,950],[2921,13],[2914,13],[2911,13],[2942,951],[2938,952],[2922,13],[2939,953],[2923,954],[2925,955],[2926,956],[2915,957],[2927,958],[2928,957],[2930,958],[2931,959],[2932,960],[2934,961],[2929,962],[2935,963],[2936,964],[2913,965],[2933,966],[2924,13],[2917,967],[2943,968],[1575,13],[77,969],[76,970],[75,969],[74,262],[199,971],[333,972],[334,973],[332,970],[331,969],[330,970],[202,974],[200,263],[201,13],[66,975],[72,976],[3609,977],[3611,978],[3610,979],[3608,980],[3607,13],[1659,13],[1670,981],[2108,982],[2106,983],[2104,984],[2105,985],[2112,986],[2111,987],[2109,988],[2110,989],[1660,13],[1661,13],[1962,990],[1969,991],[1977,992],[1973,993],[1945,13],[2103,994],[1971,995],[1972,13],[2107,996],[1970,997],[1961,998],[1979,999],[1978,1000],[1912,1001],[1903,1002],[1669,13],[1949,1003],[1946,13],[1950,1004],[2113,1005],[1951,1006],[1947,13],[1948,13],[1954,1007],[1956,1008],[1955,1007],[1953,13],[1981,1009],[1691,1010],[1689,13],[1696,1011],[1980,13],[1695,1012],[1697,1013],[1686,1014],[1685,13],[1693,1015],[1982,1016],[1983,1017],[1692,1018],[1984,1017],[1985,1019],[1694,1020],[2082,1021],[1990,1022],[1991,1016],[1986,13],[1987,1023],[1989,1024],[1988,1025],[1690,1026],[2077,1027],[1993,1028],[1992,1029],[1926,1030],[1994,1031],[1735,1032],[1734,1033],[1732,1034],[1917,1035],[1731,1036],[1698,1037],[1763,1038],[1733,13],[1730,13],[1742,1039],[1741,1040],[1736,13],[1740,13],[1738,13],[1739,13],[1737,1041],[1997,1042],[1995,1043],[1996,1044],[1664,1045],[1663,13],[2090,1046],[1662,13],[1665,1047],[1999,1048],[2001,1049],[1998,1048],[1668,1050],[1666,1051],[1667,1051],[2000,1052],[2002,1053],[2004,1054],[2006,1055],[2086,1056],[2008,1057],[2010,1058],[2012,1059],[2014,1060],[2003,1061],[2005,1062],[2085,1061],[2007,1061],[2009,1061],[2011,1063],[2013,1061],[2015,1064],[2017,1065],[1772,1066],[2019,1061],[2021,1067],[2023,1063],[2025,1068],[2083,1061],[2027,1061],[2030,1069],[2032,1070],[2034,1071],[2036,1065],[2016,1072],[2018,1073],[2020,1074],[1773,1075],[2022,1076],[2024,1077],[2026,1078],[2084,1079],[2028,1080],[2031,1081],[2033,1082],[2035,1083],[2037,1084],[2038,13],[2039,1085],[2091,1086],[1935,1087],[2096,1088],[1942,1089],[1964,1090],[1965,1090],[1963,13],[1966,1091],[1940,13],[1957,1090],[1958,1090],[1941,1092],[1960,1093],[1959,13],[1943,1094],[2098,1095],[2100,13],[2095,1096],[1937,1097],[2097,1098],[2099,13],[1936,1090],[2071,1099],[2093,13],[2040,1100],[2092,13],[2094,13],[1816,13],[1939,1099],[1704,1101],[1705,1000],[2041,1102],[1938,1103],[2042,1104],[1976,1105],[1974,13],[1975,1106],[2114,1107],[2120,1108],[2044,1037],[2045,1109],[2043,1110],[1798,1111],[2046,1112],[1968,1113],[1967,13],[2078,13],[2081,1114],[2079,13],[2080,1115],[2102,13],[1677,1116],[1676,13],[2047,1117],[1675,1118],[1674,13],[2049,1119],[2050,1120],[2054,1121],[2048,1120],[2051,1119],[1699,1122],[1727,1123],[1725,1124],[1726,1125],[1927,1126],[1904,1127],[1925,1128],[1944,1129],[1928,13],[2055,981],[1934,13],[1921,1130],[1702,1038],[1918,1131],[1765,1132],[1766,1132],[2056,1133],[1781,1134],[1782,1135],[1783,1136],[1784,1029],[1719,1137],[2075,1138],[1787,1139],[1785,13],[1786,1140],[1788,1029],[1789,1029],[1715,1141],[1790,1142],[1791,1143],[1792,1029],[2057,1144],[1700,1145],[1793,1029],[1720,1146],[1723,1147],[1724,1148],[1722,1149],[1721,1150],[1794,1029],[1795,1029],[1796,1029],[1797,1029],[1764,13],[1800,1151],[1801,1135],[2058,1152],[1706,1043],[1716,1153],[1703,13],[1714,1154],[1802,1155],[1803,1029],[1804,1156],[1805,1157],[1780,1158],[1769,13],[1770,13],[1774,1159],[1771,1160],[1768,1161],[1778,1162],[1775,1163],[1776,1164],[1777,13],[1779,1165],[1767,13],[2060,1166],[2059,13],[1806,1029],[1807,1029],[1707,1167],[1808,1029],[1809,1029],[1717,1168],[1810,1029],[1710,1169],[1708,1170],[1811,1029],[1812,1029],[1813,1029],[1814,1029],[1709,1167],[1815,1029],[1817,1171],[1711,1172],[1712,1173],[1729,1174],[1818,1029],[1819,1029],[1701,1175],[1820,1029],[1821,1029],[1822,1029],[1825,1176],[1823,1177],[1824,1178],[1906,1179],[1713,1180],[1907,1029],[1908,1029],[1909,1181],[1910,1029],[2061,1029],[1911,1134],[1687,1182],[1688,1183],[1684,1183],[1683,1183],[1682,1184],[1679,1185],[1680,1183],[1678,13],[1916,1186],[1672,13],[1673,1187],[1671,13],[1919,1188],[1933,1126],[1905,1189],[1827,1190],[1828,1190],[1829,1190],[1826,1191],[1832,1192],[1834,1193],[1853,1194],[1835,1195],[1836,1196],[1914,1197],[1837,1192],[1839,1198],[1842,1199],[1843,1200],[1844,1199],[1847,1201],[1848,1202],[1849,1203],[1850,1204],[1851,1202],[1852,1200],[1854,1205],[1855,1205],[1856,1205],[1857,1205],[1858,1203],[1859,1206],[1860,1200],[1861,1207],[1862,1203],[1863,1202],[1864,1204],[1865,1202],[1866,1204],[1867,1200],[1868,1208],[1869,1198],[1870,1209],[1871,1195],[1831,1210],[1874,1211],[1749,1212],[1872,1213],[1873,1192],[1875,1214],[1880,1207],[1877,1215],[1878,1216],[1879,1196],[1881,1217],[1882,1218],[1884,1219],[1885,1219],[1886,1214],[1887,1192],[1888,1220],[1889,1190],[1890,1204],[1915,1221],[1913,1222],[1891,1195],[1892,1195],[1900,1223],[1893,1224],[1897,1223],[1898,1225],[1896,1226],[1899,1196],[1901,1227],[1902,1196],[1728,1228],[2062,1229],[2052,1230],[2053,1231],[1681,13],[1930,1124],[1931,1232],[1929,13],[2063,13],[2064,1230],[2065,1233],[2066,1234],[1932,1235],[2029,1236],[1755,1237],[1754,13],[1876,1238],[1845,1239],[1833,1239],[1846,1239],[1762,1240],[1895,1241],[1830,1239],[1841,1242],[1761,1243],[1757,1244],[1838,1239],[1748,1245],[1753,1246],[1894,1240],[1752,13],[1744,1247],[1756,1239],[1840,1248],[1751,1239],[1883,1249],[1760,1250],[1759,13],[1758,13],[1750,1239],[1743,1239],[1746,1251],[1747,1252],[1745,13],[2076,13],[2115,13],[1923,1253],[1922,1124],[1924,1254],[1952,1255],[1718,1256],[2088,1257],[2089,1258],[1799,1259],[2116,1260],[2118,1261],[2074,13],[2101,13],[1920,13],[2117,1262],[2072,1263],[2067,1264],[2068,13],[2069,1265],[2070,13],[2119,1266],[2073,1124],[3002,13],[1618,13],[3513,69],[1536,1267],[1535,13],[2298,69],[1519,13],[1541,1268],[1540,69],[1538,13],[1537,13],[1539,1269],[3541,69],[759,1270],[764,1271],[771,1272],[754,1273],[507,13],[515,1274],[655,1275],[658,1276],[630,13],[643,1277],[650,1278],[532,13],[632,13],[513,13],[629,1279],[675,1280],[514,13],[505,1281],[657,1282],[659,1283],[660,1284],[731,1285],[624,1286],[577,1287],[637,1288],[638,1289],[636,1290],[635,13],[631,1291],[656,1292],[516,1293],[701,13],[702,1294],[543,1295],[517,1296],[544,1295],[580,1295],[483,1295],[653,1297],[652,13],[642,1298],[749,13],[492,13],[770,1299],[709,1300],[710,1301],[706,1302],[788,13],[607,13],[711,100],[707,1303],[793,1304],[792,1305],[787,13],[558,13],[610,1306],[609,13],[786,1307],[708,69],[563,1308],[570,1309],[572,1310],[562,13],[567,1311],[569,1312],[571,1313],[566,1314],[564,13],[568,1315],[789,13],[785,13],[791,1316],[790,13],[561,1317],[780,1318],[783,1319],[551,1320],[550,1321],[549,1322],[796,69],[548,1323],[537,13],[798,13],[2241,1324],[2240,13],[799,69],[800,1325],[475,13],[639,1326],[640,1327],[641,1328],[479,13],[644,13],[499,1329],[474,13],[723,69],[481,1330],[722,1331],[721,1332],[712,13],[713,13],[720,13],[715,13],[718,1333],[714,13],[716,1334],[719,1335],[717,1334],[512,13],[509,13],[510,1295],[664,13],[669,1336],[670,1337],[668,1338],[666,1339],[667,1340],[662,13],[729,100],[504,100],[758,1341],[765,1342],[769,1343],[598,1344],[597,13],[592,13],[745,1345],[753,1346],[625,1347],[626,1348],[704,1349],[614,13],[727,1350],[602,69],[619,1351],[730,1352],[615,13],[618,1353],[616,13],[728,1354],[725,1355],[724,13],[726,13],[622,13],[700,1356],[487,1357],[600,1358],[604,1359],[620,1360],[623,1361],[612,1362],[605,1363],[752,1364],[678,1365],[596,1366],[484,1367],[751,1368],[480,1369],[671,1370],[663,13],[672,1371],[689,1372],[661,13],[688,1373],[345,13],[683,1374],[508,13],[703,1375],[679,13],[493,13],[495,13],[634,13],[687,1376],[511,13],[535,1377],[621,1378],[541,1379],[601,13],[686,13],[665,13],[691,1380],[692,1381],[633,13],[694,1382],[696,1383],[695,1384],[645,13],[685,1367],[698,1385],[595,1386],[684,1387],[690,1388],[520,13],[524,13],[523,13],[522,13],[527,13],[521,13],[530,13],[529,13],[526,13],[525,13],[528,13],[531,1389],[519,13],[587,1390],[586,13],[591,1391],[588,1392],[590,1393],[593,1391],[589,1392],[500,1394],[579,1395],[748,1396],[746,13],[775,1397],[777,1398],[741,1399],[776,1400],[488,1401],[485,1401],[518,13],[502,1402],[501,1403],[497,1404],[498,1405],[506,1406],[534,1406],[545,1406],[581,1407],[546,1407],[490,1408],[489,13],[585,1409],[584,1410],[583,1411],[582,1412],[491,1413],[732,1414],[533,1415],[740,1416],[705,1417],[735,1418],[739,1419],[628,1420],[627,1421],[608,1422],[594,1423],[576,1424],[578,1425],[575,1426],[697,1427],[599,13],[763,13],[496,1428],[699,1429],[747,1430],[606,13],[536,1431],[613,1432],[611,1433],[538,1434],[673,1435],[742,13],[539,1436],[674,1436],[761,13],[760,13],[762,13],[744,13],[743,13],[676,1437],[603,13],[573,1438],[494,1439],[552,13],[478,1440],[540,13],[767,69],[477,13],[779,1441],[560,69],[773,100],[559,1442],[756,1443],[557,1441],[482,13],[781,1444],[555,69],[556,69],[547,13],[476,13],[554,1445],[553,1446],[542,1447],[617,745],[677,745],[693,13],[681,1448],[680,13],[565,1317],[486,13],[574,69],[750,1329],[757,1449],[340,69],[343,1450],[344,1451],[341,69],[342,13],[654,767],[649,1452],[648,13],[647,1453],[646,13],[755,1454],[766,1455],[768,1456],[772,1457],[2242,1458],[774,1459],[778,1460],[806,1461],[782,1461],[805,1462],[784,1463],[794,1464],[795,1465],[797,1466],[801,1467],[804,1329],[803,13],[802,1468],[2300,13],[2341,1469],[2337,1470],[2338,1471],[2342,1472],[2340,13],[2339,1470],[2336,1469],[2335,13],[1419,1473],[1416,1468],[1418,1474],[1417,13],[2314,1475],[2313,1476],[2458,1477],[2377,426],[2375,69],[2407,423],[2376,69],[2422,426],[2432,423],[2436,69],[2896,1478],[2853,69],[2894,1479],[2855,1480],[2854,1481],[2893,1482],[2895,1483],[2836,69],[2837,69],[2838,69],[2861,1484],[2862,1484],[2863,1478],[2864,69],[2865,69],[2866,1485],[2839,1486],[2867,69],[2868,69],[2869,1487],[2870,69],[2871,69],[2872,69],[2873,69],[2874,69],[2875,69],[2840,1486],[2878,1486],[2879,69],[2876,69],[2877,69],[2880,69],[2881,1487],[2882,1488],[2883,1479],[2884,1479],[2885,1479],[2887,1479],[2888,13],[2886,1479],[2889,1479],[2890,1489],[2897,1490],[2898,1491],[2907,1492],[2852,1493],[2841,1494],[2842,1479],[2843,1494],[2844,1479],[2845,13],[2846,1479],[2847,13],[2849,1479],[2850,1479],[2848,1479],[2851,1479],[2892,1479],[2859,1495],[2860,1496],[2856,1497],[2857,1498],[2891,1499],[2858,1500],[2899,1494],[2900,1494],[2906,1501],[2901,1479],[2902,1494],[2903,1494],[2904,1479],[2905,1494],[3473,13],[3489,1502],[3490,1502],[3491,1502],[3505,1503],[3492,1504],[3493,1504],[3494,1505],[3486,1506],[3484,1507],[3475,13],[3479,1508],[3483,1509],[3481,1510],[3488,1511],[3476,1512],[3477,1513],[3478,1514],[3480,1515],[3482,1516],[3485,1517],[3487,1518],[3495,1504],[3496,1504],[3497,1504],[3498,1502],[3499,1504],[3500,1504],[3474,1504],[3501,13],[3503,1519],[3502,1504],[3504,1502],[3509,69],[3524,100],[2988,13],[2986,1520],[2990,1521],[3057,1522],[3052,1523],[2955,1524],[3023,1525],[3016,1526],[3073,1527],[3011,1528],[3056,1529],[3053,1530],[3005,1531],[3015,1532],[3058,1533],[3059,1533],[3060,1534],[2953,1535],[3022,1536],[3068,1537],[3062,1537],[3070,1537],[3074,1537],[3061,1537],[3063,1537],[3066,1537],[3069,1537],[3065,1538],[3067,1537],[3071,1539],[3064,1540],[2965,1541],[3037,69],[3034,1542],[3038,69],[2976,1537],[2966,1537],[3029,1543],[2954,1544],[2975,1545],[2979,1546],[3036,1537],[2951,69],[3035,1547],[3033,69],[3032,1537],[2967,69],[3079,1548],[3047,1540],[3027,1549],[3083,1550],[3048,1551],[3046,1552],[3042,1553],[3044,1554],[3049,1555],[3051,1556],[3045,13],[3043,13],[3041,69],[2974,1557],[2950,1537],[3040,1537],[2989,1558],[3039,69],[3014,1557],[3072,1537],[3007,1559],[2963,1560],[2968,1561],[3017,1562],[3019,1559],[2998,1563],[3001,1559],[2980,1564],[3000,1565],[3009,1566],[3010,1567],[3006,1568],[3020,1569],[3008,1570],[2985,1571],[3028,1572],[3024,1573],[3025,1574],[3021,1575],[2999,1576],[2987,1577],[2992,1578],[2969,1579],[2996,1580],[2997,1581],[2993,1582],[2970,1583],[2981,1584],[3018,1567],[2964,1585],[3026,13],[2991,1586],[2984,1587],[3012,13],[3075,13],[3003,13],[3050,1588],[3013,1589],[3081,1590],[3082,1591],[3054,13],[3080,1592],[2977,13],[3004,13],[2956,1592],[2983,1593],[3078,1594],[2982,1595],[3055,1596],[2994,13],[3030,13],[3031,1597],[2978,13],[2995,13],[3076,13],[2952,69],[2960,1598],[2957,13],[2959,13],[1641,1599],[1566,1600],[1567,1601],[1570,1602],[1562,1603],[1569,1604],[1565,1605],[1560,13],[1571,1606],[1572,1607],[1631,1608],[1612,13],[1632,1609],[1614,1610],[1639,1611],[1633,13],[1635,1612],[1636,1612],[1637,1613],[1634,13],[1638,1614],[1617,1615],[1615,13],[1616,1616],[1630,1617],[1613,13],[1628,1618],[1619,1619],[1620,1620],[1621,1619],[1622,1619],[1629,1621],[1623,1620],[1624,1618],[1625,1619],[1626,1620],[1627,1619],[682,1622],[3543,69],[1588,13],[2354,13],[1586,1623],[2123,13],[1547,13],[324,13],[325,1624],[326,1625],[304,13],[306,1626],[303,1626],[308,1627],[305,1628],[307,1626],[309,1628],[312,1629],[310,1628],[311,1628],[316,1630],[318,1631],[313,13],[314,13],[315,1626],[319,1632],[317,13],[323,1633],[291,13],[236,1628],[296,1634],[300,1635],[294,1636],[290,1637],[237,821],[295,1638],[293,1639],[301,1640],[289,1641],[292,1642],[297,1643],[298,1644],[299,1645],[302,1646],[235,1647],[321,13],[322,1648],[320,13],[279,1649],[287,1650],[240,1651],[241,1651],[251,1652],[239,1653],[238,13],[242,1651],[243,1651],[244,1651],[245,1651],[246,1651],[247,1651],[248,1651],[249,1651],[250,1651],[252,1654],[288,1655],[283,1656],[253,1657],[285,1658],[284,1659],[282,1660],[286,1661],[280,1662],[265,1662],[278,1662],[266,1662],[267,1662],[268,1662],[269,1662],[270,1662],[260,1663],[271,1662],[261,1664],[272,1662],[262,1662],[277,1665],[264,1666],[259,13],[273,1662],[274,1662],[263,1662],[275,1662],[276,1662],[281,1667],[255,1668],[257,1669],[256,1670],[254,1671],[258,1672],[203,813],[207,787],[204,13],[205,1673],[206,1674],[60,13],[61,13],[10,13],[11,13],[13,13],[12,13],[2,13],[14,13],[15,13],[16,13],[17,13],[18,13],[19,13],[20,13],[21,13],[3,13],[22,13],[23,13],[4,13],[24,13],[28,13],[25,13],[26,13],[27,13],[29,13],[30,13],[31,13],[5,13],[32,13],[33,13],[34,13],[35,13],[6,13],[39,13],[36,13],[37,13],[38,13],[40,13],[7,13],[41,13],[46,13],[47,13],[42,13],[43,13],[44,13],[45,13],[8,13],[51,13],[48,13],[49,13],[50,13],[52,13],[9,13],[53,13],[54,13],[55,13],[57,13],[56,13],[58,13],[1,13],[59,13],[86,813],[78,13],[375,1675],[387,1676],[372,1677],[388,663],[397,1678],[363,1679],[364,1680],[362,1681],[396,1468],[391,1682],[395,1683],[366,1684],[384,1685],[365,1686],[394,1687],[360,1688],[361,1682],[367,1689],[368,13],[374,1690],[371,1689],[358,1691],[398,1692],[389,1693],[378,1694],[377,1689],[379,1695],[382,1696],[376,1697],[380,1698],[392,1468],[369,1699],[370,1700],[383,1701],[359,663],[386,1702],[385,1689],[373,1700],[381,1703],[390,13],[357,13],[393,1704],[2343,69],[3467,886],[2949,1705],[2973,1706],[1558,1707],[1643,1708],[1574,1709],[1608,13],[1610,1710],[1609,13],[1604,1711],[1602,1712],[1603,1713],[1591,1714],[1592,1712],[1599,1715],[1590,1716],[1595,1717],[1605,13],[1596,1718],[1601,1719],[1607,1720],[1606,1721],[1589,1722],[1597,1723],[1598,1724],[1593,1725],[1600,1711],[1594,1726],[1559,1707],[1557,13],[1573,1727],[1642,13],[1640,1728],[1576,1729],[1611,1730],[1568,1731],[1587,1732],[1577,1733],[2133,1734],[2138,1735],[2132,1736],[2124,1737],[1658,1738],[1654,1739],[2129,13],[1655,874],[3605,1740],[3602,1741],[2136,1742],[2135,1743],[1656,1744],[3604,1745],[1650,13],[1657,1746],[2137,1747],[3612,1748],[3606,1749],[3603,13],[2121,1750],[2222,1751],[3572,1752],[3574,1753],[3581,1754],[3576,13],[3577,13],[3575,1755],[3578,1756],[3570,13],[3571,13],[3582,1757],[3573,1758],[3579,13],[3580,1759],[2216,1760],[2220,1761],[2217,1761],[2213,1760],[2221,1762],[2218,1763],[2231,1751],[2219,1761],[2214,1764],[2215,1765],[2209,1766],[2153,1767],[2155,1768],[2208,13],[2154,1769],[2212,1770],[2211,1771],[2210,1772],[2146,13],[2156,1767],[2157,13],[2148,1773],[2152,1774],[2147,13],[2149,1775],[2150,1776],[2151,13],[2232,1777],[2158,1778],[2159,1778],[2160,1778],[2161,1778],[2162,1778],[2163,1778],[2164,1778],[2165,1778],[2166,1778],[2167,1778],[2168,1778],[2169,1778],[2170,1778],[2172,1778],[2171,1778],[2173,1778],[2174,1778],[2175,1778],[2176,1778],[2207,1779],[2177,1778],[2178,1778],[2179,1778],[2180,1778],[2181,1778],[2182,1778],[2183,1778],[2184,1778],[2185,1778],[2186,1778],[2187,1778],[2188,1778],[2189,1778],[2191,1778],[2190,1778],[2192,1778],[2193,1778],[2194,1778],[2195,1778],[2196,1778],[2197,1778],[2198,1778],[2199,1778],[2200,1778],[2201,1778],[2202,1778],[2203,1778],[2206,1778],[2204,1778],[2205,1778],[2350,1780],[2330,1781],[2331,1782],[2346,1783],[2347,1784],[2345,1785],[2333,1786],[2344,1787],[2348,1788],[2349,1789],[2329,247],[3585,13],[3586,1790],[2459,1791],[2461,1792],[2460,1793],[2462,1794],[2463,1792],[2464,1795],[2468,1796],[2470,1797],[2471,1791],[2473,1798],[2472,1795],[2908,1799],[2909,1800],[2946,1801],[3084,1802],[3085,1791],[3086,1794],[3462,1803],[3464,1804],[3465,1791],[3466,1791],[3468,1805],[3469,1791],[3470,1806],[3471,1793],[3507,1807],[3550,1808],[3548,69],[3549,69],[3508,1792],[3510,1809],[3551,1810],[3512,1793],[3514,1811],[3511,1800],[3515,1795],[3516,14],[3517,1792],[3518,1812],[3519,1813],[3520,1812],[3521,1792],[3522,1792],[3523,1791],[3525,1814],[3526,1792],[3527,1791],[3529,1815],[3530,1791],[3531,1813],[3532,14],[3533,1792],[3544,1816],[3534,1817],[3535,1800],[3536,1818],[3537,1792],[3538,1800],[3539,1795],[3540,1800],[3542,1819],[3546,1795],[3545,1795],[3547,1792],[327,1820],[329,1821],[335,1822],[1543,13],[2226,1823]],"affectedFilesPendingEmit":[336,1542,1544,3569,3587,3588,3596,3597,3600,3561,3562,3568,3566,3564,3563,3567,3565,3598,3599,3589,3590,3594,3591,3592,3593,2243,3554,3555,3556,3552,3558,3559,2233,2234,2236,3560,3601,2239,2235,3635,3636,3637,2227],"version":"6.0.2"}
\ No newline at end of file
diff --git a/apps/next/package.json b/apps/next/package.json
index c485209..3664849 100644
--- a/apps/next/package.json
+++ b/apps/next/package.json
@@ -5,24 +5,28 @@
"private": true,
"scripts": {
"build": "bun with-env next build",
- "build:env": "bun with-env next build",
+ "build:docker": "next build --webpack",
"clean": "git clean -xdf .cache .next .turbo node_modules",
"dev": "bun with-env next dev --turbo",
"dev:tunnel": "bun with-env next dev --turbo",
+ "dev:web": "bun with-env next dev --webpack",
"format": "prettier --check . --ignore-path ../../.gitignore",
"lint": "eslint --flag unstable_native_nodejs_ts_config",
"start": "bun with-env next start",
"typecheck": "tsc --noEmit",
- "with-env": "dotenv -e ../../.env --"
+ "test:unit": "NODE_ENV=test vitest run --project unit",
+ "test:integration": "NODE_ENV=test vitest run --project integration",
+ "test:component": "NODE_ENV=test vitest run --project component",
+ "with-env": "sh ../../scripts/with-env ${INFISICAL_ENV:-dev} --"
},
"dependencies": {
"@convex-dev/auth": "catalog:convex",
"@gib/backend": "workspace:*",
"@gib/ui": "workspace:*",
- "@sentry/nextjs": "^10.43.0",
- "@t3-oss/env-nextjs": "^0.13.10",
+ "@sentry/nextjs": "^10.46.0",
+ "@t3-oss/env-nextjs": "^0.13.11",
"convex": "catalog:convex",
- "next": "^16.1.7",
+ "next": "^16.2.1",
"next-plausible": "^3.12.5",
"react": "catalog:react19",
"react-dom": "catalog:react19",
@@ -35,14 +39,19 @@
"@gib/prettier-config": "workspace:*",
"@gib/tailwind-config": "workspace:*",
"@gib/tsconfig": "workspace:*",
+ "@gib/vitest-config": "workspace:*",
+ "@testing-library/react": "catalog:test",
"@types/node": "catalog:",
"@types/react": "catalog:react19",
"@types/react-dom": "catalog:react19",
+ "baseline-browser-mapping": "^2.10.11",
"eslint": "catalog:",
+ "jsdom": "catalog:test",
"prettier": "catalog:",
"tailwindcss": "catalog:",
"tw-animate-css": "^1.4.0",
- "typescript": "catalog:"
+ "typescript": "catalog:",
+ "vitest": "catalog:test"
},
"prettier": "@gib/prettier-config"
}
diff --git a/apps/next/src/app/(auth)/profile/layout.tsx b/apps/next/src/app/(auth)/profile/layout.tsx
index 09e67d4..f4b5217 100644
--- a/apps/next/src/app/(auth)/profile/layout.tsx
+++ b/apps/next/src/app/(auth)/profile/layout.tsx
@@ -1,14 +1,25 @@
import type { Metadata } from 'next';
+import { redirect } from 'next/navigation';
+import { isAuthenticatedNextjs } from '@convex-dev/auth/nextjs/server';
export const generateMetadata = (): Metadata => {
return {
title: 'Profile',
+ robots: {
+ index: false,
+ follow: false,
+ googleBot: {
+ index: false,
+ follow: false,
+ },
+ },
};
};
-const ProfileLayout = ({
+const ProfileLayout = async ({
children,
}: Readonly<{ children: React.ReactNode }>) => {
+ if (!(await isAuthenticatedNextjs())) redirect('/sign-in');
return <>{children}>;
};
export default ProfileLayout;
diff --git a/apps/next/src/app/(auth)/sign-in/page.tsx b/apps/next/src/app/(auth)/sign-in/page.tsx
index 0d55f97..f40b888 100644
--- a/apps/next/src/app/(auth)/sign-in/page.tsx
+++ b/apps/next/src/app/(auth)/sign-in/page.tsx
@@ -159,7 +159,7 @@ const SignIn = () => {
};
const handleVerifyEmail = async (
- values: z.infer,
+ _values: z.infer,
) => {
const formData = new FormData();
formData.append('code', code);
@@ -194,7 +194,7 @@ const SignIn = () => {
(
+ render={({ field: _field }) => (
Code
diff --git a/apps/next/src/app/page.tsx b/apps/next/src/app/page.tsx
index de21593..d7e2220 100644
--- a/apps/next/src/app/page.tsx
+++ b/apps/next/src/app/page.tsx
@@ -1,12 +1,12 @@
import { CTA, Features, Hero, TechStack } from '@/components/landing';
-export default function Home() {
- return (
-
-
-
-
-
-
- );
-}
+const Home = () => (
+
+
+
+
+
+
+);
+
+export default Home;
diff --git a/apps/next/src/app/styles.css b/apps/next/src/app/styles.css
index 552d3f4..f1534f2 100644
--- a/apps/next/src/app/styles.css
+++ b/apps/next/src/app/styles.css
@@ -2,7 +2,7 @@
@import 'tw-animate-css';
@import '@gib/tailwind-config/theme';
-@source '../../../../packages/ui/src/*.{ts,tsx}';
+@source '../../../../../packages/ui/src/*.{ts,tsx}';
@custom-variant dark (&:where(.dark, .dark *));
@custom-variant light (&:where(.light, .light *));
@@ -23,7 +23,11 @@
* {
@apply border-border;
}
+ html {
+ @apply bg-background;
+ }
body {
+ @apply bg-background text-foreground;
letter-spacing: var(--tracking-normal);
}
}
diff --git a/apps/next/src/components/landing/cta.tsx b/apps/next/src/components/landing/cta.tsx
index 728c5bc..5462c24 100644
--- a/apps/next/src/components/landing/cta.tsx
+++ b/apps/next/src/components/landing/cta.tsx
@@ -10,7 +10,6 @@ export const CTA = () => (
everything pre-configured.
- {/* Quick Start Command */}
Quick Start
diff --git a/apps/next/src/components/landing/features.tsx b/apps/next/src/components/landing/features.tsx
index 8f92b28..1e7483c 100644
--- a/apps/next/src/components/landing/features.tsx
+++ b/apps/next/src/components/landing/features.tsx
@@ -60,7 +60,6 @@ const features = [
export const Features = () => (
- {/* Section Header */}
Everything You Need to Ship Fast
@@ -71,7 +70,6 @@ export const Features = () => (
- {/* Features Grid */}
{features.map((feature) => (
diff --git a/apps/next/src/components/landing/hero.tsx b/apps/next/src/components/landing/hero.tsx
index 913e935..c70e3e2 100644
--- a/apps/next/src/components/landing/hero.tsx
+++ b/apps/next/src/components/landing/hero.tsx
@@ -9,16 +9,16 @@ const kanitSans = Kanit({
weight: ['400', '500', '600', '700'],
});
+const highlights = ['TypeScript', 'Self-Hosted', 'Real-time', 'Auth Included'];
+
export const Hero = () => (
- {/* Badge */}
🚀
Production-ready monorepo template
- {/* Heading */}
Build Full-Stack Apps with{' '}
(
- {/* Description */}
A Turborepo starter with Next.js, Expo, and self-hosted Convex. Ship web
and mobile apps faster with shared code, type-safe backend, and complete
control over your infrastructure.
- {/* CTA Buttons */}
(
- {/* Features Quick List */}
-
-
-
-
+ {highlights.map((highlight) => (
+
+ ))}
diff --git a/apps/next/src/components/landing/tech-stack.tsx b/apps/next/src/components/landing/tech-stack.tsx
index 140321e..1cc6140 100644
--- a/apps/next/src/components/landing/tech-stack.tsx
+++ b/apps/next/src/components/landing/tech-stack.tsx
@@ -29,7 +29,7 @@ const techStack = [
technologies: [
{ name: 'Turborepo', description: 'High-performance build system' },
{ name: 'TypeScript', description: 'Type-safe development' },
- { name: 'Bun', description: 'Fast package manager & runtime' },
+ { name: 'Bun', description: 'Fast package manager and runtime' },
{ name: 'ESLint + Prettier', description: 'Code quality tools' },
{ name: 'Docker', description: 'Containerized deployment' },
],
@@ -40,7 +40,6 @@ export const TechStack = () => (
- {/* Section Header */}
Modern Tech Stack
@@ -51,7 +50,6 @@ export const TechStack = () => (
- {/* Tech Stack Grid */}
{techStack.map((stack) => (
diff --git a/apps/next/src/components/layout/auth/profile/avatar-upload.tsx b/apps/next/src/components/layout/auth/profile/avatar-upload.tsx
index f744ef5..40920f3 100644
--- a/apps/next/src/components/layout/auth/profile/avatar-upload.tsx
+++ b/apps/next/src/components/layout/auth/profile/avatar-upload.tsx
@@ -21,9 +21,9 @@ import {
Input,
} from '@gib/ui';
-interface AvatarUploadProps {
+type AvatarUploadProps = {
preloadedUser: Preloaded
;
-}
+};
const dataUrlToBlob = async (
dataUrl: string,
diff --git a/apps/next/src/components/layout/header/index.tsx b/apps/next/src/components/layout/header/index.tsx
index b9ace04..3c7c8f1 100644
--- a/apps/next/src/components/layout/header/index.tsx
+++ b/apps/next/src/components/layout/header/index.tsx
@@ -1,17 +1,54 @@
+'use client';
+
import type { ComponentProps } from 'react';
import { Kanit } from 'next/font/google';
import Image from 'next/image';
import Link from 'next/link';
-import { Coffee, Server, Wrench } from 'lucide-react';
+import { useConvexAuth, useQuery } from 'convex/react';
+import { Coffee, Server, User, Wrench } from 'lucide-react';
+import { api } from '@gib/backend/convex/_generated/api.js';
+
+import type { NavItem } from './navigation';
import { Controls } from './controls';
+import { DesktopNavigation, MobileNavigation } from './navigation';
const kanitSans = Kanit({
subsets: ['latin'],
weight: ['400', '500', '600', '700'],
});
-export default function Header(headerProps: ComponentProps<'header'>) {
+const Header = (headerProps: ComponentProps<'header'>) => {
+ const { isAuthenticated } = useConvexAuth();
+ const user = useQuery(api.auth.getUser, isAuthenticated ? {} : 'skip');
+ const navItems: NavItem[] = [
+ {
+ href: '/#features',
+ icon: Wrench,
+ label: 'Features',
+ },
+ {
+ href: '/#tech-stack',
+ icon: Server,
+ label: 'Stack',
+ },
+ {
+ href: 'https://git.gbrown.org/gib/convex-monorepo',
+ icon: Coffee,
+ label: 'Repository',
+ external: true,
+ },
+ ];
+
+ if (user?.isAdmin) {
+ navItems.push({
+ href: '/admin',
+ icon: User,
+ label: 'Admin',
+ external: true,
+ });
+ }
+
return (
) {
alt='Convex Monorepo'
width={50}
height={50}
- className='w-15 invert dark:invert-0'
+ className='w-10 invert lg:w-15 dark:invert-0'
/>
- convex monorepo
+ convex-monorepo
- {/* Navigation */}
-
-
-
- Features
-
-
-
- Stack
-
-
-
- Repository
-
-
+
- {/* Controls (Theme + Auth) */}
-
+
+
+
+
);
-}
+};
+
+export default Header;
diff --git a/apps/next/src/components/layout/header/navigation.tsx b/apps/next/src/components/layout/header/navigation.tsx
new file mode 100644
index 0000000..1862af8
--- /dev/null
+++ b/apps/next/src/components/layout/header/navigation.tsx
@@ -0,0 +1,97 @@
+'use client';
+
+import type { LucideIcon } from 'lucide-react';
+import Link from 'next/link';
+import { ExternalLink, Menu } from 'lucide-react';
+
+import {
+ Button,
+ Sheet,
+ SheetClose,
+ SheetContent,
+ SheetDescription,
+ SheetHeader,
+ SheetTitle,
+ SheetTrigger,
+} from '@gib/ui';
+
+export type NavItem = {
+ href: string;
+ icon: LucideIcon;
+ label: string;
+ external?: boolean;
+};
+
+type NavigationProps = {
+ items: NavItem[];
+};
+
+const DesktopNavigation = ({ items }: NavigationProps) => {
+ return (
+
+ {items.map(({ href, icon: Icon, label, external }) => (
+
+
+ {label}
+
+ ))}
+
+ );
+};
+
+const MobileNavigation = ({ items }: NavigationProps) => {
+ return (
+
+
+
+
+ Open navigation menu
+
+
+
+
+ Navigation
+
+ Quick access to the links that collapse out of the header.
+
+
+
+
+ {items.map(({ href, icon: Icon, label, external }) => (
+
+
+
+
+
+
+ {label}
+
+ {external ? (
+
+ ) : null}
+
+
+ ))}
+
+
+
+ );
+};
+
+export { DesktopNavigation, MobileNavigation };
diff --git a/apps/next/src/instrumentation-client.ts b/apps/next/src/instrumentation-client.ts
index 2469515..e540cb9 100644
--- a/apps/next/src/instrumentation-client.ts
+++ b/apps/next/src/instrumentation-client.ts
@@ -19,7 +19,7 @@ Sentry.init({
tracesSampleRate: 1,
enableLogs: true,
// https://docs.sentry.io/platforms/javascript/session-replay/configuration/#general-integration-configuration
- replaysSessionSampleRate: 1.0,
+ replaysSessionSampleRate: 0.5,
replaysOnErrorSampleRate: 1.0,
debug: false,
});
diff --git a/apps/next/src/lib/proxy/ban-sus-ips.ts b/apps/next/src/lib/proxy/ban-sus-ips.ts
index 72f6e98..762a9d3 100644
--- a/apps/next/src/lib/proxy/ban-sus-ips.ts
+++ b/apps/next/src/lib/proxy/ban-sus-ips.ts
@@ -4,7 +4,8 @@ import { NextResponse } from 'next/server';
// In-memory stores for tracking IPs (use Redis in production)
const ipAttempts = new Map
();
const ip404Attempts = new Map();
-const bannedIPs = new Set();
+// Map of ip -> ban expiry timestamp. Avoids setTimeout closures leaking on hot reload.
+const bannedIPs = new Map();
// Suspicious patterns that indicate malicious activity
const MALICIOUS_PATTERNS = [
@@ -72,6 +73,36 @@ const BAN_DURATION = 30 * 60 * 1000; // 30 minutes
const RATE_404_WINDOW = 2 * 60 * 1000; // 2 minutes
const MAX_404_ATTEMPTS = 10; // Max 404s before ban
+let lastCleanup = Date.now();
+const CLEANUP_INTERVAL = 5 * 60 * 1000; // 5 minutes
+
+// Lazily purge stale entries so Maps don't grow without bound.
+// Called on every request but only iterates Maps every CLEANUP_INTERVAL.
+const cleanupStaleMaps = () => {
+ const now = Date.now();
+ if (now - lastCleanup < CLEANUP_INTERVAL) return;
+ lastCleanup = now;
+ for (const [ip, data] of ipAttempts.entries()) {
+ if (now - data.lastAttempt > RATE_LIMIT_WINDOW) ipAttempts.delete(ip);
+ }
+ for (const [ip, data] of ip404Attempts.entries()) {
+ if (now - data.lastAttempt > RATE_404_WINDOW) ip404Attempts.delete(ip);
+ }
+ for (const [ip, expiry] of bannedIPs.entries()) {
+ if (now > expiry) bannedIPs.delete(ip);
+ }
+};
+
+const isIPBanned = (ip: string): boolean => {
+ const expiry = bannedIPs.get(ip);
+ if (expiry === undefined) return false;
+ if (Date.now() > expiry) {
+ bannedIPs.delete(ip);
+ return false;
+ }
+ return true;
+};
+
const getClientIP = (request: NextRequest): string => {
const forwarded = request.headers.get('x-forwarded-for');
const realIP = request.headers.get('x-real-ip');
@@ -104,13 +135,8 @@ const updateIPAttempts = (ip: string): boolean => {
attempts.lastAttempt = now;
if (attempts.count > MAX_ATTEMPTS) {
- bannedIPs.add(ip);
+ bannedIPs.set(ip, Date.now() + BAN_DURATION);
ipAttempts.delete(ip);
-
- setTimeout(() => {
- bannedIPs.delete(ip);
- }, BAN_DURATION);
-
return true;
}
@@ -130,17 +156,13 @@ const update404Attempts = (ip: string): boolean => {
attempts.lastAttempt = now;
if (attempts.count > MAX_404_ATTEMPTS) {
- bannedIPs.add(ip);
+ bannedIPs.set(ip, Date.now() + BAN_DURATION);
ip404Attempts.delete(ip);
console.log(
`🔨 IP ${ip} banned for excessive 404 requests (${attempts.count} in ${RATE_404_WINDOW / 1000}s)`,
);
- setTimeout(() => {
- bannedIPs.delete(ip);
- }, BAN_DURATION);
-
return true;
}
@@ -148,12 +170,14 @@ const update404Attempts = (ip: string): boolean => {
};
export const banSuspiciousIPs = (request: NextRequest): NextResponse | null => {
+ cleanupStaleMaps();
+
const { pathname } = request.nextUrl;
const method = request.method;
const ip = getClientIP(request);
// Check if IP is already banned
- if (bannedIPs.has(ip)) {
+ if (isIPBanned(ip)) {
return new NextResponse('Access denied.', { status: 403 });
}
@@ -183,7 +207,7 @@ export const handle404Response = (
): NextResponse | null => {
const ip = getClientIP(request);
- if (bannedIPs.has(ip)) {
+ if (isIPBanned(ip)) {
return new NextResponse('Access denied.', { status: 403 });
}
diff --git a/apps/next/src/proxy.ts b/apps/next/src/proxy.ts
index 60b71eb..0f5c2cb 100644
--- a/apps/next/src/proxy.ts
+++ b/apps/next/src/proxy.ts
@@ -1,19 +1,36 @@
+import { convexAuthNextjsMiddleware } from '@convex-dev/auth/nextjs/server';
+
+export default convexAuthNextjsMiddleware();
+
+export const config = {
+ matcher: [
+ '/((?!_next/static|_next/image|favicon.ico|monitoring-tunnel|.*\\.(?:svg|png|jpg|jpeg|gif|webp)$).*)',
+ '/((?!.*\\..*|_next).*)',
+ '/',
+ '/(api)(.*)',
+ ],
+};
+
+/**
import { banSuspiciousIPs } from '@/lib/proxy/ban-sus-ips';
import {
convexAuthNextjsMiddleware,
createRouteMatcher,
nextjsMiddlewareRedirect,
} from '@convex-dev/auth/nextjs/server';
-
const isSignInPage = createRouteMatcher(['/sign-in']);
-const isProtectedRoute = createRouteMatcher(['/profile']);
+const isProtectedRoute = createRouteMatcher([
+ '/profile(.*)',
+ '/dashboard(.*)',
+ '/admin-panel(.*)',
+]);
export default convexAuthNextjsMiddleware(
async (request, { convexAuth }) => {
const banResponse = banSuspiciousIPs(request);
if (banResponse) return banResponse;
if (isSignInPage(request) && (await convexAuth.isAuthenticated())) {
- return nextjsMiddlewareRedirect(request, '/');
+ return nextjsMiddlewareRedirect(request, '/profile');
}
if (isProtectedRoute(request) && !(await convexAuth.isAuthenticated())) {
return nextjsMiddlewareRedirect(request, '/sign-in');
@@ -23,8 +40,6 @@ export default convexAuthNextjsMiddleware(
);
export const config = {
- // The following matcher runs middleware on all routes
- // except static assets.
matcher: [
'/((?!_next/static|_next/image|favicon.ico|monitoring-tunnel|.*\\.(?:svg|png|jpg|jpeg|gif|webp)$).*)',
'/((?!.*\\..*|_next).*)',
@@ -32,3 +47,4 @@ export const config = {
'/(api)(.*)',
],
};
+**/
diff --git a/apps/next/tests/component/render.test.tsx b/apps/next/tests/component/render.test.tsx
new file mode 100644
index 0000000..39e1d7a
--- /dev/null
+++ b/apps/next/tests/component/render.test.tsx
@@ -0,0 +1,11 @@
+import { render, screen } from '@testing-library/react';
+import { describe, expect, it } from 'vitest';
+
+const Greeting = ({ name }: { name: string }) => Hello {name}
;
+
+describe('component test harness', () => {
+ it('renders through jsdom and Testing Library', () => {
+ render( );
+ expect(screen.getByText('Hello world')).toBeInTheDocument();
+ });
+});
diff --git a/apps/next/tests/integration/smoke.test.ts b/apps/next/tests/integration/smoke.test.ts
new file mode 100644
index 0000000..28a9b5f
--- /dev/null
+++ b/apps/next/tests/integration/smoke.test.ts
@@ -0,0 +1,7 @@
+import { describe, expect, it } from 'vitest';
+
+describe('integration test harness', () => {
+ it('provides modern Node globals', () => {
+ expect(typeof globalThis.structuredClone).toBe('function');
+ });
+});
diff --git a/apps/next/tests/jest-dom.d.ts b/apps/next/tests/jest-dom.d.ts
new file mode 100644
index 0000000..bb02c60
--- /dev/null
+++ b/apps/next/tests/jest-dom.d.ts
@@ -0,0 +1 @@
+import '@testing-library/jest-dom/vitest';
diff --git a/apps/next/tests/unit/environment.test.ts b/apps/next/tests/unit/environment.test.ts
new file mode 100644
index 0000000..8c8e33b
--- /dev/null
+++ b/apps/next/tests/unit/environment.test.ts
@@ -0,0 +1,7 @@
+import { describe, expect, it } from 'vitest';
+
+describe('unit test harness', () => {
+ it('executes isolated assertions', () => {
+ expect(1 + 1).toBe(2);
+ });
+});
diff --git a/apps/next/vitest.config.ts b/apps/next/vitest.config.ts
new file mode 100644
index 0000000..fa7f626
--- /dev/null
+++ b/apps/next/vitest.config.ts
@@ -0,0 +1,13 @@
+import { defineConfig } from 'vitest/config';
+
+import { jsdomProject, nodeProject } from '@gib/vitest-config';
+
+export default defineConfig({
+ test: {
+ projects: [
+ nodeProject('unit', ['tests/unit/**/*.test.{ts,tsx}']),
+ nodeProject('integration', ['tests/integration/**/*.test.{ts,tsx}']),
+ jsdomProject('component', ['tests/component/**/*.test.{ts,tsx}']),
+ ],
+ },
+});
diff --git a/bun.lock b/bun.lock
index e5b48c5..fdefe72 100644
--- a/bun.lock
+++ b/bun.lock
@@ -6,11 +6,12 @@
"name": "convex-monorepo",
"devDependencies": {
"@gib/prettier-config": "workspace:",
- "@turbo/gen": "^2.8.20",
- "baseline-browser-mapping": "^2.10.8",
+ "@turbo/gen": "^2.9.18",
"dotenv-cli": "11.0.0",
+ "husky": "^9.1.7",
+ "lint-staged": "^17.0.7",
"prettier": "catalog:",
- "turbo": "^2.8.20",
+ "turbo": "^2.9.18",
"typescript": "catalog:",
},
},
@@ -21,9 +22,9 @@
"@expo/vector-icons": "^15.1.1",
"@gib/backend": "workspace:*",
"@legendapp/list": "^2.0.19",
- "@react-navigation/bottom-tabs": "^7.15.5",
- "@react-navigation/elements": "^2.9.10",
- "@react-navigation/native": "^7.1.33",
+ "@react-navigation/bottom-tabs": "^7.15.8",
+ "@react-navigation/elements": "^2.9.13",
+ "@react-navigation/native": "^7.2.1",
"@sentry/react-native": "^7.13.0",
"convex": "catalog:convex",
"expo": "~54.0.33",
@@ -47,7 +48,7 @@
"react-native": "~0.81.6",
"react-native-css": "3.0.1",
"react-native-gesture-handler": "~2.28.0",
- "react-native-reanimated": "~4.1.6",
+ "react-native-reanimated": "~4.1.7",
"react-native-safe-area-context": "~5.6.2",
"react-native-screens": "~4.16.0",
"react-native-web": "~0.21.2",
@@ -72,10 +73,10 @@
"@convex-dev/auth": "catalog:convex",
"@gib/backend": "workspace:*",
"@gib/ui": "workspace:*",
- "@sentry/nextjs": "^10.43.0",
- "@t3-oss/env-nextjs": "^0.13.10",
+ "@sentry/nextjs": "^10.46.0",
+ "@t3-oss/env-nextjs": "^0.13.11",
"convex": "catalog:convex",
- "next": "^16.1.7",
+ "next": "^16.2.1",
"next-plausible": "^3.12.5",
"react": "catalog:react19",
"react-dom": "catalog:react19",
@@ -88,14 +89,19 @@
"@gib/prettier-config": "workspace:*",
"@gib/tailwind-config": "workspace:*",
"@gib/tsconfig": "workspace:*",
+ "@gib/vitest-config": "workspace:*",
+ "@testing-library/react": "catalog:test",
"@types/node": "catalog:",
"@types/react": "catalog:react19",
"@types/react-dom": "catalog:react19",
+ "baseline-browser-mapping": "^2.10.11",
"eslint": "catalog:",
+ "jsdom": "catalog:test",
"prettier": "catalog:",
"tailwindcss": "catalog:",
"tw-animate-css": "^1.4.0",
"typescript": "catalog:",
+ "vitest": "catalog:test",
},
},
"packages/backend": {
@@ -103,22 +109,27 @@
"version": "1.0.0",
"dependencies": {
"@oslojs/crypto": "^1.0.1",
- "@react-email/components": "0.5.4",
- "@react-email/render": "^1.4.0",
+ "@react-email/components": "1.0.10",
+ "@react-email/render": "^2.0.4",
"convex": "catalog:convex",
"react": "catalog:react19",
"react-dom": "catalog:react19",
- "usesend-js": "^1.5.6",
+ "usesend-js": "^1.6.3",
"zod": "catalog:",
},
"devDependencies": {
+ "@edge-runtime/vm": "catalog:test",
"@gib/eslint-config": "workspace:*",
"@gib/prettier-config": "workspace:*",
"@gib/tsconfig": "workspace:*",
+ "@gib/vitest-config": "workspace:*",
+ "@types/node": "catalog:",
+ "convex-test": "catalog:test",
"eslint": "catalog:",
"prettier": "catalog:",
- "react-email": "4.2.11",
+ "react-email": "5.2.10",
"typescript": "catalog:",
+ "vitest": "catalog:test",
},
},
"packages/ui": {
@@ -126,18 +137,19 @@
"dependencies": {
"@base-ui/react": "^1.3.0",
"@hookform/resolvers": "^5.2.2",
- "@radix-ui/react-avatar": "^1.1.10",
+ "@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-icons": "^1.3.2",
- "@radix-ui/react-label": "^2.1.7",
- "@radix-ui/react-progress": "^1.1.7",
+ "@radix-ui/react-label": "^2.1.8",
+ "@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-scroll-area": "^1.2.10",
- "@radix-ui/react-separator": "^1.1.7",
- "@radix-ui/react-slot": "^1.2.3",
+ "@radix-ui/react-separator": "^1.1.8",
+ "@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
+ "@tabler/icons-react": "^3.41.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
@@ -145,26 +157,31 @@
"embla-carousel-react": "^8.6.0",
"input-otp": "^1.4.2",
"lucide-react": "^0.577.0",
+ "motion": "^12.38.0",
"next-themes": "^0.4.6",
"radix-ui": "^1.4.3",
"react-day-picker": "^9.14.0",
- "react-hook-form": "^7.65.0",
+ "react-hook-form": "^7.72.0",
"react-image-crop": "^11.0.10",
- "react-resizable-panels": "^4",
- "recharts": "^3.8.0",
+ "react-resizable-panels": "^4.7.6",
+ "recharts": "^3.8.1",
"sonner": "^2.0.7",
- "tailwind-merge": "^3.3.1",
+ "tailwind-merge": "^3.5.0",
"vaul": "^1.1.2",
},
"devDependencies": {
"@gib/eslint-config": "workspace:*",
"@gib/prettier-config": "workspace:*",
"@gib/tsconfig": "workspace:*",
+ "@gib/vitest-config": "workspace:*",
+ "@testing-library/react": "catalog:test",
"@types/react": "catalog:react19",
"eslint": "catalog:",
+ "jsdom": "catalog:test",
"prettier": "catalog:",
"react": "catalog:react19",
"typescript": "catalog:",
+ "vitest": "catalog:test",
"zod": "catalog:",
},
"peerDependencies": {
@@ -175,16 +192,16 @@
"tools/eslint": {
"name": "@gib/eslint-config",
"dependencies": {
- "@eslint/compat": "^1.4.0",
+ "@eslint/compat": "^2.0.3",
"@eslint/js": "catalog:",
- "@next/eslint-plugin-next": "^16.0.0",
+ "@next/eslint-plugin-next": "^16.2.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prefer-arrow-functions": "^3.9.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
- "eslint-plugin-turbo": "^2.5.8",
- "typescript-eslint": "^8.46.2",
+ "eslint-plugin-turbo": "^2.8.20",
+ "typescript-eslint": "^8.57.2",
},
"devDependencies": {
"@gib/prettier-config": "workspace:*",
@@ -228,6 +245,21 @@
"tools/typescript": {
"name": "@gib/tsconfig",
},
+ "tools/vitest": {
+ "name": "@gib/vitest-config",
+ "dependencies": {
+ "@testing-library/jest-dom": "catalog:test",
+ "@vitejs/plugin-react": "catalog:test",
+ },
+ "devDependencies": {
+ "@gib/prettier-config": "workspace:*",
+ "@gib/tsconfig": "workspace:*",
+ "@types/node": "catalog:",
+ "prettier": "catalog:",
+ "typescript": "catalog:",
+ "vitest": "catalog:test",
+ },
+ },
},
"trustedDependencies": [
"esbuild",
@@ -235,32 +267,55 @@
"@sentry/cli",
],
"catalog": {
- "@eslint/js": "^9.38.0",
- "@tailwindcss/postcss": "^4.1.16",
- "@types/node": "^22.19.15",
- "eslint": "^9.39.4",
+ "@eslint/js": "^10.0.1",
+ "@tailwindcss/postcss": "^4.2.2",
+ "@types/node": "^25.5.0",
+ "eslint": "^10.1.0",
"prettier": "^3.8.1",
- "tailwindcss": "^4.1.16",
- "typescript": "^5.9.3",
+ "tailwindcss": "^4.2.2",
+ "typescript": "^6.0.2",
+ "ws": "^8.18.3",
"zod": "^4.3.6",
},
"catalogs": {
"convex": {
- "@convex-dev/auth": "^0.0.81",
- "convex": "^1.33.1",
+ "@convex-dev/auth": "^0.0.87",
+ "convex": "^1.34.1",
},
"react19": {
- "@types/react": "~19.1.0",
- "@types/react-dom": "~19.1.0",
- "react": "19.1.4",
- "react-dom": "19.1.4",
+ "@types/react": "~19.2.14",
+ "@types/react-dom": "~19.2.3",
+ "react": "19.2.4",
+ "react-dom": "19.2.4",
+ },
+ "test": {
+ "@edge-runtime/vm": "^5.0.0",
+ "@playwright/test": "^1.60.0",
+ "@testing-library/jest-dom": "^6.9.1",
+ "@testing-library/react": "^16.3.2",
+ "@testing-library/user-event": "^14.6.1",
+ "@vitejs/plugin-react": "^6.0.2",
+ "@vitest/coverage-v8": "^4.1.8",
+ "convex-test": "^0.0.53",
+ "jsdom": "^29.1.1",
+ "vitest": "^4.1.8",
},
},
"packages": {
"@0no-co/graphql.web": ["@0no-co/graphql.web@1.2.0", "", { "peerDependencies": { "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0" }, "optionalPeers": ["graphql"] }, "sha512-/1iHy9TTr63gE1YcR5idjx8UREz1s0kFhydf3bBLCXyqjhkIc6igAzTOx3zPifCwFR87tsh/4Pa9cNts6d2otw=="],
+ "@adobe/css-tools": ["@adobe/css-tools@4.5.0", "", {}, "sha512-6OzddxPio9UiWTCemp4N8cYLV2ZN1ncRnV1cVGtve7dhPOtRkleRyx32GQCYSwDYgaHU3USMm84tNsvKzRCa1Q=="],
+
"@alloc/quick-lru": ["@alloc/quick-lru@5.2.0", "", {}, "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw=="],
+ "@asamuzakjp/css-color": ["@asamuzakjp/css-color@5.1.11", "", { "dependencies": { "@asamuzakjp/generational-cache": "^1.0.1", "@csstools/css-calc": "^3.2.0", "@csstools/css-color-parser": "^4.1.0", "@csstools/css-parser-algorithms": "^4.0.0", "@csstools/css-tokenizer": "^4.0.0" } }, "sha512-KVw6qIiCTUQhByfTd78h2yD1/00waTmm9uy/R7Ck/ctUyAPj+AEDLkQIdJW0T8+qGgj3j5bpNKK7Q3G+LedJWg=="],
+
+ "@asamuzakjp/dom-selector": ["@asamuzakjp/dom-selector@7.1.1", "", { "dependencies": { "@asamuzakjp/generational-cache": "^1.0.1", "@asamuzakjp/nwsapi": "^2.3.9", "bidi-js": "^1.0.3", "css-tree": "^3.2.1", "is-potential-custom-element-name": "^1.0.1" } }, "sha512-67RZDnYRc8H/8MLDgQCDE//zoqVFwajkepHZgmXrbwybzXOEwOWGPYGmALYl9J2DOLfFPPs6kKCqmbzV895hTQ=="],
+
+ "@asamuzakjp/generational-cache": ["@asamuzakjp/generational-cache@1.0.1", "", {}, "sha512-wajfB8KqzMCN2KGNFdLkReeHncd0AslUSrvHVvvYWuU8ghncRJoA50kT3zP9MVL0+9g4/67H+cdvBskj9THPzg=="],
+
+ "@asamuzakjp/nwsapi": ["@asamuzakjp/nwsapi@2.3.9", "", {}, "sha512-n8GuYSrI9bF7FFZ/SjhwevlHc8xaVlb/7HmHelnc/PZXBD2ZR49NnN9sMMuDdEGPeeRQ5d0hqlSlEpgCX3Wl0Q=="],
+
"@auth/core": ["@auth/core@0.37.4", "", { "dependencies": { "@panva/hkdf": "^1.2.1", "jose": "^5.9.6", "oauth4webapi": "^3.1.1", "preact": "10.24.3", "preact-render-to-string": "6.5.11" }, "peerDependencies": { "@simplewebauthn/browser": "^9.0.1", "@simplewebauthn/server": "^9.0.2", "nodemailer": "^6.8.0" }, "optionalPeers": ["@simplewebauthn/browser", "@simplewebauthn/server", "nodemailer"] }, "sha512-HOXJwXWXQRhbBDHlMU0K/6FT1v+wjtzdKhsNg0ZN7/gne6XPsIrjZ4daMcFnbq0Z/vsAbYBinQhhua0d77v7qw=="],
"@babel/code-frame": ["@babel/code-frame@7.27.1", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.27.1", "js-tokens": "^4.0.0", "picocolors": "^1.1.1" } }, "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg=="],
@@ -311,7 +366,7 @@
"@babel/highlight": ["@babel/highlight@7.25.9", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.25.9", "chalk": "^2.4.2", "js-tokens": "^4.0.0", "picocolors": "^1.0.0" } }, "sha512-llL88JShoCsth8fF8R4SJnIn+WLvR6ccFxu1H3FlMhDontdcmZWf2HgIZ7AIqV3Xcck1idlohrN4EUBQz6klbw=="],
- "@babel/parser": ["@babel/parser@7.28.5", "", { "dependencies": { "@babel/types": "^7.28.5" }, "bin": "./bin/babel-parser.js" }, "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ=="],
+ "@babel/parser": ["@babel/parser@7.27.0", "", { "dependencies": { "@babel/types": "^7.27.0" }, "bin": "./bin/babel-parser.js" }, "sha512-iaepho73/2Pz7w2eMS0Q5f83+0RKI7i4xmiYeBmDzfRVbQtTOG7Ts0S4HzJVsTMGI9keU8rNfuZr8DKfSt7Yyg=="],
"@babel/plugin-proposal-decorators": ["@babel/plugin-proposal-decorators@7.28.0", "", { "dependencies": { "@babel/helper-create-class-features-plugin": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1", "@babel/plugin-syntax-decorators": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-zOiZqvANjWDUaUS9xMxbMcK/Zccztbe/6ikvUXaG9nsPH3w6qh5UaPGAnirI/WhIbZ8m3OHU0ReyPrknG+ZKeg=="],
@@ -445,7 +500,7 @@
"@babel/template": ["@babel/template@7.27.2", "", { "dependencies": { "@babel/code-frame": "^7.27.1", "@babel/parser": "^7.27.2", "@babel/types": "^7.27.1" } }, "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw=="],
- "@babel/traverse": ["@babel/traverse@7.28.5", "", { "dependencies": { "@babel/code-frame": "^7.27.1", "@babel/generator": "^7.28.5", "@babel/helper-globals": "^7.28.0", "@babel/parser": "^7.28.5", "@babel/template": "^7.27.2", "@babel/types": "^7.28.5", "debug": "^4.3.1" } }, "sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ=="],
+ "@babel/traverse": ["@babel/traverse@7.27.0", "", { "dependencies": { "@babel/code-frame": "^7.26.2", "@babel/generator": "^7.27.0", "@babel/parser": "^7.27.0", "@babel/template": "^7.27.0", "@babel/types": "^7.27.0", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-19lYZFzYVQkkHkl4Cy4WrAVcqBkgvV2YM2TU3xG6DIwO7O3ecbDPfW3yM3bjAGcqcQHi+CCtjMR3dIEHxsd6bA=="],
"@babel/traverse--for-generate-function-map": ["@babel/traverse@7.28.5", "", { "dependencies": { "@babel/code-frame": "^7.27.1", "@babel/generator": "^7.28.5", "@babel/helper-globals": "^7.28.0", "@babel/parser": "^7.28.5", "@babel/template": "^7.27.2", "@babel/types": "^7.28.5", "debug": "^4.3.1" } }, "sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ=="],
@@ -455,152 +510,36 @@
"@base-ui/utils": ["@base-ui/utils@0.2.6", "", { "dependencies": { "@babel/runtime": "^7.28.6", "@floating-ui/utils": "^0.2.11", "reselect": "^5.1.1", "use-sync-external-store": "^1.6.0" }, "peerDependencies": { "@types/react": "^17 || ^18 || ^19", "react": "^17 || ^18 || ^19", "react-dom": "^17 || ^18 || ^19" }, "optionalPeers": ["@types/react"] }, "sha512-yQ+qeuqohwhsNpoYDqqXaLllYAkPCP4vYdDrVo8FQXaAPfHWm1pG/Vm+jmGTA5JFS0BAIjookyapuJFY8F9PIw=="],
- "@convex-dev/auth": ["@convex-dev/auth@0.0.81", "", { "dependencies": { "arctic": "^1.2.0", "cookie": "^1.0.1", "cspell": "^8.17.2", "is-network-error": "^1.1.0", "jose": "^5.2.2", "jwt-decode": "^4.0.0", "lucia": "^3.2.0", "oauth4webapi": "^3.1.2", "oslo": "^1.1.2", "path-to-regexp": "^6.3.0", "server-only": "^0.0.1" }, "peerDependencies": { "@auth/core": "^0.37.0", "convex": "^1.17.0", "react": "^18.2.0 || ^19.0.0-0" }, "optionalPeers": ["react"], "bin": { "auth": "dist/bin.cjs" } }, "sha512-k9/+Q2w+GXNsCWGSpB87cqIhRWRukTadZxfyG3Df7dGusO/uy+pFlUeqf4I64Jkdn5zt+6ktEdDgoe6jdyuVJw=="],
+ "@bramus/specificity": ["@bramus/specificity@2.4.2", "", { "dependencies": { "css-tree": "^3.0.0" }, "bin": { "specificity": "bin/cli.js" } }, "sha512-ctxtJ/eA+t+6q2++vj5j7FYX3nRu311q1wfYH3xjlLOsczhlhxAg2FWNUXhpGvAw3BWo1xBcvOV6/YLc2r5FJw=="],
- "@cspell/cspell-bundled-dicts": ["@cspell/cspell-bundled-dicts@8.19.4", "", { "dependencies": { "@cspell/dict-ada": "^4.1.0", "@cspell/dict-al": "^1.1.0", "@cspell/dict-aws": "^4.0.10", "@cspell/dict-bash": "^4.2.0", "@cspell/dict-companies": "^3.1.15", "@cspell/dict-cpp": "^6.0.8", "@cspell/dict-cryptocurrencies": "^5.0.4", "@cspell/dict-csharp": "^4.0.6", "@cspell/dict-css": "^4.0.17", "@cspell/dict-dart": "^2.3.0", "@cspell/dict-data-science": "^2.0.8", "@cspell/dict-django": "^4.1.4", "@cspell/dict-docker": "^1.1.13", "@cspell/dict-dotnet": "^5.0.9", "@cspell/dict-elixir": "^4.0.7", "@cspell/dict-en-common-misspellings": "^2.0.10", "@cspell/dict-en-gb": "1.1.33", "@cspell/dict-en_us": "^4.4.3", "@cspell/dict-filetypes": "^3.0.11", "@cspell/dict-flutter": "^1.1.0", "@cspell/dict-fonts": "^4.0.4", "@cspell/dict-fsharp": "^1.1.0", "@cspell/dict-fullstack": "^3.2.6", "@cspell/dict-gaming-terms": "^1.1.1", "@cspell/dict-git": "^3.0.4", "@cspell/dict-golang": "^6.0.20", "@cspell/dict-google": "^1.0.8", "@cspell/dict-haskell": "^4.0.5", "@cspell/dict-html": "^4.0.11", "@cspell/dict-html-symbol-entities": "^4.0.3", "@cspell/dict-java": "^5.0.11", "@cspell/dict-julia": "^1.1.0", "@cspell/dict-k8s": "^1.0.10", "@cspell/dict-kotlin": "^1.1.0", "@cspell/dict-latex": "^4.0.3", "@cspell/dict-lorem-ipsum": "^4.0.4", "@cspell/dict-lua": "^4.0.7", "@cspell/dict-makefile": "^1.0.4", "@cspell/dict-markdown": "^2.0.10", "@cspell/dict-monkeyc": "^1.0.10", "@cspell/dict-node": "^5.0.7", "@cspell/dict-npm": "^5.2.1", "@cspell/dict-php": "^4.0.14", "@cspell/dict-powershell": "^5.0.14", "@cspell/dict-public-licenses": "^2.0.13", "@cspell/dict-python": "^4.2.17", "@cspell/dict-r": "^2.1.0", "@cspell/dict-ruby": "^5.0.8", "@cspell/dict-rust": "^4.0.11", "@cspell/dict-scala": "^5.0.7", "@cspell/dict-shell": "^1.1.0", "@cspell/dict-software-terms": "^5.0.5", "@cspell/dict-sql": "^2.2.0", "@cspell/dict-svelte": "^1.0.6", "@cspell/dict-swift": "^2.0.5", "@cspell/dict-terraform": "^1.1.1", "@cspell/dict-typescript": "^3.2.1", "@cspell/dict-vue": "^3.0.4" } }, "sha512-2ZRcZP/ncJ5q953o8i+R0fb8+14PDt5UefUNMrFZZHvfTI0jukAASOQeLY+WT6ASZv6CgbPrApAdbppy9FaXYQ=="],
+ "@convex-dev/auth": ["@convex-dev/auth@0.0.87", "", { "dependencies": { "cookie": "^1.0.1", "is-network-error": "^1.1.0", "jose": "^5.2.2", "jwt-decode": "^4.0.0", "lucia": "^3.2.0", "oauth4webapi": "^3.1.2", "oslo": "^1.1.2", "path-to-regexp": "^6.3.0", "server-only": "^0.0.1" }, "peerDependencies": { "@auth/core": "^0.37.0", "convex": "^1.17.0", "react": "^18.2.0 || ^19.0.0-0" }, "optionalPeers": ["react"], "bin": { "auth": "dist/bin.cjs" } }, "sha512-aE5LOLytcvZR6/1D3tKugm7zVVErWtGZoOZVCA5TGJk9GiYj4bqWZgsmiipqrm2TZJD4sn3Fk1eCIlr76jlnwA=="],
- "@cspell/cspell-json-reporter": ["@cspell/cspell-json-reporter@8.19.4", "", { "dependencies": { "@cspell/cspell-types": "8.19.4" } }, "sha512-pOlUtLUmuDdTIOhDTvWxxta0Wm8RCD/p1V0qUqeP6/Ups1ajBI4FWEpRFd7yMBTUHeGeSNicJX5XeX7wNbAbLQ=="],
+ "@csstools/color-helpers": ["@csstools/color-helpers@6.0.2", "", {}, "sha512-LMGQLS9EuADloEFkcTBR3BwV/CGHV7zyDxVRtVDTwdI2Ca4it0CCVTT9wCkxSgokjE5Ho41hEPgb8OEUwoXr6Q=="],
- "@cspell/cspell-pipe": ["@cspell/cspell-pipe@8.19.4", "", {}, "sha512-GNAyk+7ZLEcL2fCMT5KKZprcdsq3L1eYy3e38/tIeXfbZS7Sd1R5FXUe6CHXphVWTItV39TvtLiDwN/2jBts9A=="],
+ "@csstools/css-calc": ["@csstools/css-calc@3.2.1", "", { "peerDependencies": { "@csstools/css-parser-algorithms": "^4.0.0", "@csstools/css-tokenizer": "^4.0.0" } }, "sha512-DtdHlgXh5ZkA43cwBcAm+huzgJiwx3ZTWVjBs94kwz2xKqSimDA3lBgCjphYgwgVUMWatSM0pDd8TILB1yrVVg=="],
- "@cspell/cspell-resolver": ["@cspell/cspell-resolver@8.19.4", "", { "dependencies": { "global-directory": "^4.0.1" } }, "sha512-S8vJMYlsx0S1D60glX8H2Jbj4mD8519VjyY8lu3fnhjxfsl2bDFZvF3ZHKsLEhBE+Wh87uLqJDUJQiYmevHjDg=="],
+ "@csstools/css-color-parser": ["@csstools/css-color-parser@4.1.8", "", { "dependencies": { "@csstools/color-helpers": "^6.0.2", "@csstools/css-calc": "^3.2.1" }, "peerDependencies": { "@csstools/css-parser-algorithms": "^4.0.0", "@csstools/css-tokenizer": "^4.0.0" } }, "sha512-3chWb7PRLijpJpPIKkDxdu6IBeO5MrFACND57On0j8OPpc0wZibcGc3xAHrSEbOx/KDRyMHoIxGn0w1PhXMYHw=="],
- "@cspell/cspell-service-bus": ["@cspell/cspell-service-bus@8.19.4", "", {}, "sha512-uhY+v8z5JiUogizXW2Ft/gQf3eWrh5P9036jN2Dm0UiwEopG/PLshHcDjRDUiPdlihvA0RovrF0wDh4ptcrjuQ=="],
+ "@csstools/css-parser-algorithms": ["@csstools/css-parser-algorithms@4.0.0", "", { "peerDependencies": { "@csstools/css-tokenizer": "^4.0.0" } }, "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w=="],
- "@cspell/cspell-types": ["@cspell/cspell-types@8.19.4", "", {}, "sha512-ekMWuNlFiVGfsKhfj4nmc8JCA+1ZltwJgxiKgDuwYtR09ie340RfXFF6YRd2VTW5zN7l4F1PfaAaPklVz6utSg=="],
+ "@csstools/css-syntax-patches-for-csstree": ["@csstools/css-syntax-patches-for-csstree@1.1.5", "", { "peerDependencies": { "css-tree": "^3.2.1" }, "optionalPeers": ["css-tree"] }, "sha512-oNjBvzLq2GPZtJphCjLqXow/cHySHSgtxvKZb7OqSZ/xHgw6NWNhfad+6AB9cLeVm6eA9d/qMll3JdEHjy6M+A=="],
- "@cspell/dict-ada": ["@cspell/dict-ada@4.1.1", "", {}, "sha512-E+0YW9RhZod/9Qy2gxfNZiHJjCYFlCdI69br1eviQQWB8yOTJX0JHXLs79kOYhSW0kINPVUdvddEBe6Lu6CjGQ=="],
-
- "@cspell/dict-al": ["@cspell/dict-al@1.1.1", "", {}, "sha512-sD8GCaZetgQL4+MaJLXqbzWcRjfKVp8x+px3HuCaaiATAAtvjwUQ5/Iubiqwfd1boIh2Y1/3EgM3TLQ7Q8e0wQ=="],
-
- "@cspell/dict-aws": ["@cspell/dict-aws@4.0.15", "", {}, "sha512-aPY7VVR5Os4rz36EaqXBAEy14wR4Rqv+leCJ2Ug/Gd0IglJpM30LalF3e2eJChnjje3vWoEC0Rz3+e5gpZG+Kg=="],
-
- "@cspell/dict-bash": ["@cspell/dict-bash@4.2.2", "", { "dependencies": { "@cspell/dict-shell": "1.1.2" } }, "sha512-kyWbwtX3TsCf5l49gGQIZkRLaB/P8g73GDRm41Zu8Mv51kjl2H7Au0TsEvHv7jzcsRLS6aUYaZv6Zsvk1fOz+Q=="],
-
- "@cspell/dict-companies": ["@cspell/dict-companies@3.2.7", "", {}, "sha512-fEyr3LmpFKTaD0LcRhB4lfW1AmULYBqzg4gWAV0dQCv06l+TsA+JQ+3pZJbUcoaZirtgsgT3dL3RUjmGPhUH0A=="],
-
- "@cspell/dict-cpp": ["@cspell/dict-cpp@6.0.13", "", {}, "sha512-EFrhN/91tPwadI9m8Rxe65//9gqv+lpZoKtrngzF4DTnw4YAfMLTpykendHps0bz46NZW84/zoY1cxeW2TEPQQ=="],
-
- "@cspell/dict-cryptocurrencies": ["@cspell/dict-cryptocurrencies@5.0.5", "", {}, "sha512-R68hYYF/rtlE6T/dsObStzN5QZw+0aQBinAXuWCVqwdS7YZo0X33vGMfChkHaiCo3Z2+bkegqHlqxZF4TD3rUA=="],
-
- "@cspell/dict-csharp": ["@cspell/dict-csharp@4.0.7", "", {}, "sha512-H16Hpu8O/1/lgijFt2lOk4/nnldFtQ4t8QHbyqphqZZVE5aS4J/zD/WvduqnLY21aKhZS6jo/xF5PX9jyqPKUA=="],
-
- "@cspell/dict-css": ["@cspell/dict-css@4.0.18", "", {}, "sha512-EF77RqROHL+4LhMGW5NTeKqfUd/e4OOv6EDFQ/UQQiFyWuqkEKyEz0NDILxOFxWUEVdjT2GQ2cC7t12B6pESwg=="],
-
- "@cspell/dict-dart": ["@cspell/dict-dart@2.3.1", "", {}, "sha512-xoiGnULEcWdodXI6EwVyqpZmpOoh8RA2Xk9BNdR7DLamV/QMvEYn8KJ7NlRiTSauJKPNkHHQ5EVHRM6sTS7jdg=="],
-
- "@cspell/dict-data-science": ["@cspell/dict-data-science@2.0.11", "", {}, "sha512-Dt+83nVCcF+dQyvFSaZjCKt1H5KbsVJFtH2X7VUfmIzQu8xCnV1fUmkhBzGJ+NiFs99Oy9JA6I9EjeqExzXk7g=="],
-
- "@cspell/dict-django": ["@cspell/dict-django@4.1.5", "", {}, "sha512-AvTWu99doU3T8ifoMYOMLW2CXKvyKLukPh1auOPwFGHzueWYvBBN+OxF8wF7XwjTBMMeRleVdLh3aWCDEX/ZWg=="],
-
- "@cspell/dict-docker": ["@cspell/dict-docker@1.1.16", "", {}, "sha512-UiVQ5RmCg6j0qGIxrBnai3pIB+aYKL3zaJGvXk1O/ertTKJif9RZikKXCEgqhaCYMweM4fuLqWSVmw3hU164Iw=="],
-
- "@cspell/dict-dotnet": ["@cspell/dict-dotnet@5.0.10", "", {}, "sha512-ooar8BP/RBNP1gzYfJPStKEmpWy4uv/7JCq6FOnJLeD1yyfG3d/LFMVMwiJo+XWz025cxtkM3wuaikBWzCqkmg=="],
-
- "@cspell/dict-elixir": ["@cspell/dict-elixir@4.0.8", "", {}, "sha512-CyfphrbMyl4Ms55Vzuj+mNmd693HjBFr9hvU+B2YbFEZprE5AG+EXLYTMRWrXbpds4AuZcvN3deM2XVB80BN/Q=="],
-
- "@cspell/dict-en-common-misspellings": ["@cspell/dict-en-common-misspellings@2.1.7", "", {}, "sha512-HAWSOoQ+lxdzLaTALhPofKNJdxZ7HAcTZWQNwb7cvGBiKEy182cb96U35602yBPrBsKY/vLxVs6f0E1JTeQjRQ=="],
-
- "@cspell/dict-en-gb": ["@cspell/dict-en-gb@1.1.33", "", {}, "sha512-tKSSUf9BJEV+GJQAYGw5e+ouhEe2ZXE620S7BLKe3ZmpnjlNG9JqlnaBhkIMxKnNFkLY2BP/EARzw31AZnOv4g=="],
-
- "@cspell/dict-en_us": ["@cspell/dict-en_us@4.4.22", "", {}, "sha512-i9AJ6z5kyZU5L/b+UOOp/7dfa7RxhibLXWaexSJclf7V7R+TzwCTLoOZd1wf/5PBnNGkP8xOSaflkpUbtVijFA=="],
-
- "@cspell/dict-filetypes": ["@cspell/dict-filetypes@3.0.14", "", {}, "sha512-KSXaSMYYNMLLdHEnju1DyRRH3eQWPRYRnOXpuHUdOh2jC44VgQoxyMU7oB3NAhDhZKBPCihabzECsAGFbdKfEA=="],
-
- "@cspell/dict-flutter": ["@cspell/dict-flutter@1.1.1", "", {}, "sha512-UlOzRcH2tNbFhZmHJN48Za/2/MEdRHl2BMkCWZBYs+30b91mWvBfzaN4IJQU7dUZtowKayVIF9FzvLZtZokc5A=="],
-
- "@cspell/dict-fonts": ["@cspell/dict-fonts@4.0.5", "", {}, "sha512-BbpkX10DUX/xzHs6lb7yzDf/LPjwYIBJHJlUXSBXDtK/1HaeS+Wqol4Mlm2+NAgZ7ikIE5DQMViTgBUY3ezNoQ=="],
-
- "@cspell/dict-fsharp": ["@cspell/dict-fsharp@1.1.1", "", {}, "sha512-imhs0u87wEA4/cYjgzS0tAyaJpwG7vwtC8UyMFbwpmtw+/bgss+osNfyqhYRyS/ehVCWL17Ewx2UPkexjKyaBA=="],
-
- "@cspell/dict-fullstack": ["@cspell/dict-fullstack@3.2.7", "", {}, "sha512-IxEk2YAwAJKYCUEgEeOg3QvTL4XLlyArJElFuMQevU1dPgHgzWElFevN5lsTFnvMFA1riYsVinqJJX0BanCFEg=="],
-
- "@cspell/dict-gaming-terms": ["@cspell/dict-gaming-terms@1.1.2", "", {}, "sha512-9XnOvaoTBscq0xuD6KTEIkk9hhdfBkkvJAIsvw3JMcnp1214OCGW8+kako5RqQ2vTZR3Tnf3pc57o7VgkM0q1Q=="],
-
- "@cspell/dict-git": ["@cspell/dict-git@3.0.7", "", {}, "sha512-odOwVKgfxCQfiSb+nblQZc4ErXmnWEnv8XwkaI4sNJ7cNmojnvogYVeMqkXPjvfrgEcizEEA4URRD2Ms5PDk1w=="],
-
- "@cspell/dict-golang": ["@cspell/dict-golang@6.0.24", "", {}, "sha512-rY7PlC3MsHozmjrZWi0HQPUl0BVCV0+mwK0rnMT7pOIXqOe4tWCYMULDIsEk4F0gbIxb5badd2dkCPDYjLnDgA=="],
-
- "@cspell/dict-google": ["@cspell/dict-google@1.0.9", "", {}, "sha512-biL65POqialY0i4g6crj7pR6JnBkbsPovB2WDYkj3H4TuC/QXv7Pu5pdPxeUJA6TSCHI7T5twsO4VSVyRxD9CA=="],
-
- "@cspell/dict-haskell": ["@cspell/dict-haskell@4.0.6", "", {}, "sha512-ib8SA5qgftExpYNjWhpYIgvDsZ/0wvKKxSP+kuSkkak520iPvTJumEpIE+qPcmJQo4NzdKMN8nEfaeci4OcFAQ=="],
-
- "@cspell/dict-html": ["@cspell/dict-html@4.0.12", "", {}, "sha512-JFffQ1dDVEyJq6tCDWv0r/RqkdSnV43P2F/3jJ9rwLgdsOIXwQbXrz6QDlvQLVvNSnORH9KjDtenFTGDyzfCaA=="],
-
- "@cspell/dict-html-symbol-entities": ["@cspell/dict-html-symbol-entities@4.0.4", "", {}, "sha512-afea+0rGPDeOV9gdO06UW183Qg6wRhWVkgCFwiO3bDupAoyXRuvupbb5nUyqSTsLXIKL8u8uXQlJ9pkz07oVXw=="],
-
- "@cspell/dict-java": ["@cspell/dict-java@5.0.12", "", {}, "sha512-qPSNhTcl7LGJ5Qp6VN71H8zqvRQK04S08T67knMq9hTA8U7G1sTKzLmBaDOFhq17vNX/+rT+rbRYp+B5Nwza1A=="],
-
- "@cspell/dict-julia": ["@cspell/dict-julia@1.1.1", "", {}, "sha512-WylJR9TQ2cgwd5BWEOfdO3zvDB+L7kYFm0I9u0s9jKHWQ6yKmfKeMjU9oXxTBxIufhCXm92SKwwVNAC7gjv+yA=="],
-
- "@cspell/dict-k8s": ["@cspell/dict-k8s@1.0.12", "", {}, "sha512-2LcllTWgaTfYC7DmkMPOn9GsBWsA4DZdlun4po8s2ysTP7CPEnZc1ZfK6pZ2eI4TsZemlUQQ+NZxMe9/QutQxg=="],
-
- "@cspell/dict-kotlin": ["@cspell/dict-kotlin@1.1.1", "", {}, "sha512-J3NzzfgmxRvEeOe3qUXnSJQCd38i/dpF9/t3quuWh6gXM+krsAXP75dY1CzDmS8mrJAlBdVBeAW5eAZTD8g86Q=="],
-
- "@cspell/dict-latex": ["@cspell/dict-latex@4.0.4", "", {}, "sha512-YdTQhnTINEEm/LZgTzr9Voz4mzdOXH7YX+bSFs3hnkUHCUUtX/mhKgf1CFvZ0YNM2afjhQcmLaR9bDQVyYBvpA=="],
-
- "@cspell/dict-lorem-ipsum": ["@cspell/dict-lorem-ipsum@4.0.5", "", {}, "sha512-9a4TJYRcPWPBKkQAJ/whCu4uCAEgv/O2xAaZEI0n4y1/l18Yyx8pBKoIX5QuVXjjmKEkK7hi5SxyIsH7pFEK9Q=="],
-
- "@cspell/dict-lua": ["@cspell/dict-lua@4.0.8", "", {}, "sha512-N4PkgNDMu9JVsRu7JBS/3E/dvfItRgk9w5ga2dKq+JupP2Y3lojNaAVFhXISh4Y0a6qXDn2clA6nvnavQ/jjLA=="],
-
- "@cspell/dict-makefile": ["@cspell/dict-makefile@1.0.5", "", {}, "sha512-4vrVt7bGiK8Rx98tfRbYo42Xo2IstJkAF4tLLDMNQLkQ86msDlYSKG1ZCk8Abg+EdNcFAjNhXIiNO+w4KflGAQ=="],
-
- "@cspell/dict-markdown": ["@cspell/dict-markdown@2.0.12", "", { "peerDependencies": { "@cspell/dict-css": "^4.0.18", "@cspell/dict-html": "^4.0.12", "@cspell/dict-html-symbol-entities": "^4.0.4", "@cspell/dict-typescript": "^3.2.3" } }, "sha512-ufwoliPijAgWkD/ivAMC+A9QD895xKiJRF/fwwknQb7kt7NozTLKFAOBtXGPJAB4UjhGBpYEJVo2elQ0FCAH9A=="],
-
- "@cspell/dict-monkeyc": ["@cspell/dict-monkeyc@1.0.11", "", {}, "sha512-7Q1Ncu0urALI6dPTrEbSTd//UK0qjRBeaxhnm8uY5fgYNFYAG+u4gtnTIo59S6Bw5P++4H3DiIDYoQdY/lha8w=="],
-
- "@cspell/dict-node": ["@cspell/dict-node@5.0.8", "", {}, "sha512-AirZcN2i84ynev3p2/1NCPEhnNsHKMz9zciTngGoqpdItUb2bDt1nJBjwlsrFI78GZRph/VaqTVFwYikmncpXg=="],
-
- "@cspell/dict-npm": ["@cspell/dict-npm@5.2.19", "", {}, "sha512-fg23oFvKTsGjGB6DkwCUzZrLZPwp+ItSV0UXS+n6JbcH5dj3CP6MDmdwNX6s6oaAovIFKmwFBP73GUqnjMmnpQ=="],
-
- "@cspell/dict-php": ["@cspell/dict-php@4.1.0", "", {}, "sha512-dTDeabyOj7eFvn2Q4Za3uVXM2+SzeFMqX8ly2P0XTo4AzbCmI2hulFD/QIADwWmwiRrInbbf8cxwFHNIYrXl4w=="],
-
- "@cspell/dict-powershell": ["@cspell/dict-powershell@5.0.15", "", {}, "sha512-l4S5PAcvCFcVDMJShrYD0X6Huv9dcsQPlsVsBGbH38wvuN7gS7+GxZFAjTNxDmTY1wrNi1cCatSg6Pu2BW4rgg=="],
-
- "@cspell/dict-public-licenses": ["@cspell/dict-public-licenses@2.0.15", "", {}, "sha512-cJEOs901H13Pfy0fl4dCD1U+xpWIMaEPq8MeYU83FfDZvellAuSo4GqWCripfIqlhns/L6+UZEIJSOZnjgy7Wg=="],
-
- "@cspell/dict-python": ["@cspell/dict-python@4.2.21", "", { "dependencies": { "@cspell/dict-data-science": "^2.0.11" } }, "sha512-M9OgwXWhpZqEZqKU2psB2DFsT8q5SwEahkQeIpNIRWIErjwG7I9yYhhfvPz6s5gMCMhhb3hqcPJTnmdgqGrQyg=="],
-
- "@cspell/dict-r": ["@cspell/dict-r@2.1.1", "", {}, "sha512-71Ka+yKfG4ZHEMEmDxc6+blFkeTTvgKbKAbwiwQAuKl3zpqs1Y0vUtwW2N4b3LgmSPhV3ODVY0y4m5ofqDuKMw=="],
-
- "@cspell/dict-ruby": ["@cspell/dict-ruby@5.0.9", "", {}, "sha512-H2vMcERMcANvQshAdrVx0XoWaNX8zmmiQN11dZZTQAZaNJ0xatdJoSqY8C8uhEMW89bfgpN+NQgGuDXW2vmXEw=="],
-
- "@cspell/dict-rust": ["@cspell/dict-rust@4.0.12", "", {}, "sha512-z2QiH+q9UlNhobBJArvILRxV8Jz0pKIK7gqu4TgmEYyjiu1TvnGZ1tbYHeu9w3I/wOP6UMDoCBTty5AlYfW0mw=="],
-
- "@cspell/dict-scala": ["@cspell/dict-scala@5.0.8", "", {}, "sha512-YdftVmumv8IZq9zu1gn2U7A4bfM2yj9Vaupydotyjuc+EEZZSqAafTpvW/jKLWji2TgybM1L2IhmV0s/Iv9BTw=="],
-
- "@cspell/dict-shell": ["@cspell/dict-shell@1.1.2", "", {}, "sha512-WqOUvnwcHK1X61wAfwyXq04cn7KYyskg90j4lLg3sGGKMW9Sq13hs91pqrjC44Q+lQLgCobrTkMDw9Wyl9nRFA=="],
-
- "@cspell/dict-software-terms": ["@cspell/dict-software-terms@5.1.10", "", {}, "sha512-ffnsKiDL5acUerJ/lDiIT0y/tfO9Jk1yp8RpAl0diOUj5iQuT4hXVfgQSx7ppseXWAGN+UgTRYWiKDb1zM3lqg=="],
-
- "@cspell/dict-sql": ["@cspell/dict-sql@2.2.1", "", {}, "sha512-qDHF8MpAYCf4pWU8NKbnVGzkoxMNrFqBHyG/dgrlic5EQiKANCLELYtGlX5auIMDLmTf1inA0eNtv74tyRJ/vg=="],
-
- "@cspell/dict-svelte": ["@cspell/dict-svelte@1.0.7", "", {}, "sha512-hGZsGqP0WdzKkdpeVLBivRuSNzOTvN036EBmpOwxH+FTY2DuUH7ecW+cSaMwOgmq5JFSdTcbTNFlNC8HN8lhaQ=="],
-
- "@cspell/dict-swift": ["@cspell/dict-swift@2.0.6", "", {}, "sha512-PnpNbrIbex2aqU1kMgwEKvCzgbkHtj3dlFLPMqW1vSniop7YxaDTtvTUO4zA++ugYAEL+UK8vYrBwDPTjjvSnA=="],
-
- "@cspell/dict-terraform": ["@cspell/dict-terraform@1.1.3", "", {}, "sha512-gr6wxCydwSFyyBKhBA2xkENXtVFToheqYYGFvlMZXWjviynXmh+NK/JTvTCk/VHk3+lzbO9EEQKee6VjrAUSbA=="],
-
- "@cspell/dict-typescript": ["@cspell/dict-typescript@3.2.3", "", {}, "sha512-zXh1wYsNljQZfWWdSPYwQhpwiuW0KPW1dSd8idjMRvSD0aSvWWHoWlrMsmZeRl4qM4QCEAjua8+cjflm41cQBg=="],
-
- "@cspell/dict-vue": ["@cspell/dict-vue@3.0.5", "", {}, "sha512-Mqutb8jbM+kIcywuPQCCaK5qQHTdaByoEO2J9LKFy3sqAdiBogNkrplqUK0HyyRFgCfbJUgjz3N85iCMcWH0JA=="],
-
- "@cspell/dynamic-import": ["@cspell/dynamic-import@8.19.4", "", { "dependencies": { "@cspell/url": "8.19.4", "import-meta-resolve": "^4.1.0" } }, "sha512-0LLghC64+SiwQS20Sa0VfFUBPVia1rNyo0bYeIDoB34AA3qwguDBVJJkthkpmaP1R2JeR/VmxmJowuARc4ZUxA=="],
-
- "@cspell/filetypes": ["@cspell/filetypes@8.19.4", "", {}, "sha512-D9hOCMyfKtKjjqQJB8F80PWsjCZhVGCGUMiDoQpcta0e+Zl8vHgzwaC0Ai4QUGBhwYEawHGiWUd7Y05u/WXiNQ=="],
-
- "@cspell/strong-weak-map": ["@cspell/strong-weak-map@8.19.4", "", {}, "sha512-MUfFaYD8YqVe32SQaYLI24/bNzaoyhdBIFY5pVrvMo1ZCvMl8AlfI2OcBXvcGb5aS5z7sCNCJm11UuoYbLI1zw=="],
-
- "@cspell/url": ["@cspell/url@8.19.4", "", {}, "sha512-Pa474iBxS+lxsAL4XkETPGIq3EgMLCEb9agj3hAd2VGMTCApaiUvamR4b+uGXIPybN70piFxvzrfoxsG2uIP6A=="],
+ "@csstools/css-tokenizer": ["@csstools/css-tokenizer@4.0.0", "", {}, "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA=="],
"@date-fns/tz": ["@date-fns/tz@1.4.1", "", {}, "sha512-P5LUNhtbj6YfI3iJjw5EL9eUAG6OitD0W3fWQcpQjDRc/QIsL0tRNuO1PcDvPccWL1fSTXXdE1ds+l95DV/OFA=="],
+ "@edge-runtime/primitives": ["@edge-runtime/primitives@6.0.0", "", {}, "sha512-FqoxaBT+prPBHBwE1WXS1ocnu/VLTQyZ6NMUBAdbP7N2hsFTTxMC/jMu2D/8GAlMQfxeuppcPuCUk/HO3fpIvA=="],
+
+ "@edge-runtime/vm": ["@edge-runtime/vm@5.0.0", "", { "dependencies": { "@edge-runtime/primitives": "6.0.0" } }, "sha512-NKBGBSIKUG584qrS1tyxVpX/AKJKQw5HgjYEnPLC0QsTw79JrGn+qUr8CXFb955Iy7GUdiiUv1rJ6JBGvaKb6w=="],
+
"@egjs/hammerjs": ["@egjs/hammerjs@2.0.17", "", { "dependencies": { "@types/hammerjs": "^2.0.36" } }, "sha512-XQsZgjm2EcVUiZQf11UBJQfmZeEmOW8DpI1gsFeln6w0ae0ii4dMQEQ0kjl6DspdWX1aGY1/loyXnP0JS06e/A=="],
- "@emnapi/core": ["@emnapi/core@0.45.0", "", { "dependencies": { "tslib": "^2.4.0" } }, "sha512-DPWjcUDQkCeEM4VnljEOEcXdAD7pp8zSZsgOujk/LGIwCXWbXJngin+MO4zbH429lzeC3WbYLGjE2MaUOwzpyw=="],
+ "@emnapi/core": ["@emnapi/core@1.10.0", "", { "dependencies": { "@emnapi/wasi-threads": "1.2.1", "tslib": "^2.4.0" } }, "sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw=="],
"@emnapi/runtime": ["@emnapi/runtime@1.9.1", "", { "dependencies": { "tslib": "^2.4.0" } }, "sha512-VYi5+ZVLhpgK4hQ0TAjiQiZ6ol0oe4mBx7mVv7IflsiEp0OWoVsp/+f9Vc1hOhE0TtkORVrI1GvzyreqpgWtkA=="],
+ "@emnapi/wasi-threads": ["@emnapi/wasi-threads@1.2.1", "", { "dependencies": { "tslib": "^2.4.0" } }, "sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w=="],
+
"@esbuild/aix-ppc64": ["@esbuild/aix-ppc64@0.25.11", "", { "os": "aix", "cpu": "ppc64" }, "sha512-Xt1dOL13m8u0WE8iplx9Ibbm+hFAO0GsU2P34UNoDGvZYkY8ifSiy6Zuc1lYxfG7svWE2fzqCUmFp5HCn51gJg=="],
"@esbuild/android-arm": ["@esbuild/android-arm@0.25.11", "", { "os": "android", "cpu": "arm" }, "sha512-uoa7dU+Dt3HYsethkJ1k6Z9YdcHjTrSb5NUy66ZfZaSV8hEYGD5ZHbEMXnqLFlbBflLsl89Zke7CAdDJ4JI+Gg=="],
@@ -653,25 +592,27 @@
"@esbuild/win32-x64": ["@esbuild/win32-x64@0.25.11", "", { "os": "win32", "cpu": "x64" }, "sha512-D7Hpz6A2L4hzsRpPaCYkQnGOotdUpDzSGRIv9I+1ITdHROSFUWW95ZPZWQmGka1Fg7W3zFJowyn9WGwMJ0+KPA=="],
- "@eslint-community/eslint-utils": ["@eslint-community/eslint-utils@4.9.0", "", { "dependencies": { "eslint-visitor-keys": "^3.4.3" }, "peerDependencies": { "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" } }, "sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g=="],
+ "@eslint-community/eslint-utils": ["@eslint-community/eslint-utils@4.9.1", "", { "dependencies": { "eslint-visitor-keys": "^3.4.3" }, "peerDependencies": { "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" } }, "sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ=="],
"@eslint-community/regexpp": ["@eslint-community/regexpp@4.12.2", "", {}, "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew=="],
- "@eslint/compat": ["@eslint/compat@1.4.1", "", { "dependencies": { "@eslint/core": "^0.17.0" }, "peerDependencies": { "eslint": "^8.40 || 9" }, "optionalPeers": ["eslint"] }, "sha512-cfO82V9zxxGBxcQDr1lfaYB7wykTa0b00mGa36FrJl7iTFd0Z2cHfEYuxcBRP/iNijCsWsEkA+jzT8hGYmv33w=="],
+ "@eslint/compat": ["@eslint/compat@2.0.3", "", { "dependencies": { "@eslint/core": "^1.1.1" }, "peerDependencies": { "eslint": "^8.40 || 9 || 10" }, "optionalPeers": ["eslint"] }, "sha512-SjIJhGigp8hmd1YGIBwh7Ovri7Kisl42GYFjrOyHhtfYGGoLW6teYi/5p8W50KSsawUPpuLOSmsq1bD0NGQLBw=="],
- "@eslint/config-array": ["@eslint/config-array@0.21.2", "", { "dependencies": { "@eslint/object-schema": "^2.1.7", "debug": "^4.3.1", "minimatch": "^3.1.5" } }, "sha512-nJl2KGTlrf9GjLimgIru+V/mzgSK0ABCDQRvxw5BjURL7WfH5uoWmizbH7QB6MmnMBd8cIC9uceWnezL1VZWWw=="],
+ "@eslint/config-array": ["@eslint/config-array@0.23.3", "", { "dependencies": { "@eslint/object-schema": "^3.0.3", "debug": "^4.3.1", "minimatch": "^10.2.4" } }, "sha512-j+eEWmB6YYLwcNOdlwQ6L2OsptI/LO6lNBuLIqe5R7RetD658HLoF+Mn7LzYmAWWNNzdC6cqP+L6r8ujeYXWLw=="],
- "@eslint/config-helpers": ["@eslint/config-helpers@0.4.2", "", { "dependencies": { "@eslint/core": "^0.17.0" } }, "sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw=="],
+ "@eslint/config-helpers": ["@eslint/config-helpers@0.5.3", "", { "dependencies": { "@eslint/core": "^1.1.1" } }, "sha512-lzGN0onllOZCGroKJmRwY6QcEHxbjBw1gwB8SgRSqK8YbbtEXMvKynsXc3553ckIEBxsbMBU7oOZXKIPGZNeZw=="],
- "@eslint/core": ["@eslint/core@0.17.0", "", { "dependencies": { "@types/json-schema": "^7.0.15" } }, "sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ=="],
+ "@eslint/core": ["@eslint/core@1.1.1", "", { "dependencies": { "@types/json-schema": "^7.0.15" } }, "sha512-QUPblTtE51/7/Zhfv8BDwO0qkkzQL7P/aWWbqcf4xWLEYn1oKjdO0gglQBB4GAsu7u6wjijbCmzsUTy6mnk6oQ=="],
"@eslint/eslintrc": ["@eslint/eslintrc@3.3.5", "", { "dependencies": { "ajv": "^6.14.0", "debug": "^4.3.2", "espree": "^10.0.1", "globals": "^14.0.0", "ignore": "^5.2.0", "import-fresh": "^3.2.1", "js-yaml": "^4.1.1", "minimatch": "^3.1.5", "strip-json-comments": "^3.1.1" } }, "sha512-4IlJx0X0qftVsN5E+/vGujTRIFtwuLbNsVUe7TO6zYPDR1O6nFwvwhIKEKSrl6dZchmYBITazxKoUYOjdtjlRg=="],
- "@eslint/js": ["@eslint/js@9.39.4", "", {}, "sha512-nE7DEIchvtiFTwBw4Lfbu59PG+kCofhjsKaCWzxTpt4lfRjRMqG6uMBzKXuEcyXhOHoUp9riAm7/aWYGhXZ9cw=="],
+ "@eslint/js": ["@eslint/js@10.0.1", "", { "peerDependencies": { "eslint": "^10.0.0" }, "optionalPeers": ["eslint"] }, "sha512-zeR9k5pd4gxjZ0abRoIaxdc7I3nDktoXZk2qOv9gCNWx3mVwEn32VRhyLaRsDiJjTs0xq/T8mfPtyuXu7GWBcA=="],
- "@eslint/object-schema": ["@eslint/object-schema@2.1.7", "", {}, "sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA=="],
+ "@eslint/object-schema": ["@eslint/object-schema@3.0.3", "", {}, "sha512-iM869Pugn9Nsxbh/YHRqYiqd23AmIbxJOcpUMOuWCVNdoQJ5ZtwL6h3t0bcZzJUlC3Dq9jCFCESBZnX0GTv7iQ=="],
- "@eslint/plugin-kit": ["@eslint/plugin-kit@0.4.1", "", { "dependencies": { "@eslint/core": "^0.17.0", "levn": "^0.4.1" } }, "sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA=="],
+ "@eslint/plugin-kit": ["@eslint/plugin-kit@0.6.1", "", { "dependencies": { "@eslint/core": "^1.1.1", "levn": "^0.4.1" } }, "sha512-iH1B076HoAshH1mLpHMgwdGeTs0CYwL0SPMkGuSebZrwBp16v415e9NZXg2jtrqPVQjf6IANe2Vtlr5KswtcZQ=="],
+
+ "@exodus/bytes": ["@exodus/bytes@1.15.1", "", { "peerDependencies": { "@noble/hashes": "^1.8.0 || ^2.0.0" }, "optionalPeers": ["@noble/hashes"] }, "sha512-S6mL0yNB/Abt9Ei4tq8gDhcczc4S3+vQ4ra7vxnAf+YHC02srtqxKKZghx2Dq6p0e66THKwR6r8N6P95wEty7Q=="],
"@expo/cli": ["@expo/cli@54.0.23", "", { "dependencies": { "@0no-co/graphql.web": "^1.0.8", "@expo/code-signing-certificates": "^0.0.6", "@expo/config": "~12.0.13", "@expo/config-plugins": "~54.0.4", "@expo/devcert": "^1.2.1", "@expo/env": "~2.0.8", "@expo/image-utils": "^0.8.8", "@expo/json-file": "^10.0.8", "@expo/metro": "~54.2.0", "@expo/metro-config": "~54.0.14", "@expo/osascript": "^2.3.8", "@expo/package-manager": "^1.9.10", "@expo/plist": "^0.4.8", "@expo/prebuild-config": "^54.0.8", "@expo/schema-utils": "^0.1.8", "@expo/spawn-async": "^1.7.2", "@expo/ws-tunnel": "^1.0.1", "@expo/xcpretty": "^4.3.0", "@react-native/dev-middleware": "0.81.5", "@urql/core": "^5.0.6", "@urql/exchange-retry": "^1.3.0", "accepts": "^1.3.8", "arg": "^5.0.2", "better-opn": "~3.0.2", "bplist-creator": "0.1.0", "bplist-parser": "^0.3.1", "chalk": "^4.0.0", "ci-info": "^3.3.0", "compression": "^1.7.4", "connect": "^3.7.0", "debug": "^4.3.4", "env-editor": "^0.4.1", "expo-server": "^1.0.5", "freeport-async": "^2.0.0", "getenv": "^2.0.0", "glob": "^13.0.0", "lan-network": "^0.1.6", "minimatch": "^9.0.0", "node-forge": "^1.3.3", "npm-package-arg": "^11.0.0", "ora": "^3.4.0", "picomatch": "^3.0.1", "pretty-bytes": "^5.6.0", "pretty-format": "^29.7.0", "progress": "^2.0.3", "prompts": "^2.3.2", "qrcode-terminal": "0.11.0", "require-from-string": "^2.0.2", "requireg": "^0.2.2", "resolve": "^1.22.2", "resolve-from": "^5.0.0", "resolve.exports": "^2.0.3", "semver": "^7.6.0", "send": "^0.19.0", "slugify": "^1.3.4", "source-map-support": "~0.5.21", "stacktrace-parser": "^0.1.10", "structured-headers": "^0.4.1", "tar": "^7.5.2", "terminal-link": "^2.1.1", "undici": "^6.18.2", "wrap-ansi": "^7.0.0", "ws": "^8.12.1" }, "peerDependencies": { "expo": "*", "expo-router": "*", "react-native": "*" }, "optionalPeers": ["expo-router", "react-native"], "bin": { "expo-internal": "build/bin/cli" } }, "sha512-km0h72SFfQCmVycH/JtPFTVy69w6Lx1cHNDmfLfQqgKFYeeHTjx7LVDP4POHCtNxFP2UeRazrygJhlh4zz498g=="],
@@ -749,6 +690,8 @@
"@gib/ui": ["@gib/ui@workspace:packages/ui"],
+ "@gib/vitest-config": ["@gib/vitest-config@workspace:tools/vitest"],
+
"@hookform/resolvers": ["@hookform/resolvers@5.2.2", "", { "dependencies": { "@standard-schema/utils": "^0.3.0" }, "peerDependencies": { "react-hook-form": "^7.55.0" } }, "sha512-A/IxlMLShx3KjV/HeTcTfaMxdwy690+L/ZADoeaTltLx+CVuzkeVIPuybK3jrRfw7YZnmdKsVVHAlEPIAEUNlA=="],
"@humanfs/core": ["@humanfs/core@0.19.1", "", {}, "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA=="],
@@ -843,12 +786,6 @@
"@inquirer/type": ["@inquirer/type@3.0.10", "", { "peerDependencies": { "@types/node": ">=18" }, "optionalPeers": ["@types/node"] }, "sha512-BvziSRxfz5Ov8ch0z/n3oijRSEcEsHnhggm4xFZe93DHcUCTlutlq9Ox4SVENAfcRD22UQq7T/atg9Wr3k09eA=="],
- "@isaacs/balanced-match": ["@isaacs/balanced-match@4.0.1", "", {}, "sha512-yzMTt9lEb8Gv7zRioUilSglI0c0smZ9k5D65677DLWLtWJaXIS3CqcGyUFByYKlnUj6TkjLVs54fBl6+TiGQDQ=="],
-
- "@isaacs/brace-expansion": ["@isaacs/brace-expansion@5.0.0", "", { "dependencies": { "@isaacs/balanced-match": "^4.0.1" } }, "sha512-ZT55BDLV0yv0RBm2czMiZ+SqCGO7AvmOM3G/w2xhVPH+te0aKgFjmBvGlL1dH+ql2tgGO3MVrbb3jCKyvpgnxA=="],
-
- "@isaacs/cliui": ["@isaacs/cliui@8.0.2", "", { "dependencies": { "string-width": "^5.1.2", "string-width-cjs": "npm:string-width@^4.2.0", "strip-ansi": "^7.0.1", "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", "wrap-ansi": "^8.1.0", "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" } }, "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA=="],
-
"@isaacs/fs-minipass": ["@isaacs/fs-minipass@4.0.1", "", { "dependencies": { "minipass": "^7.0.4" } }, "sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w=="],
"@isaacs/ttlcache": ["@isaacs/ttlcache@1.4.1", "", {}, "sha512-RQgQ4uQ+pLbqXfOmieB91ejmLwvSgv9nLx6sT6sD83s7umBypgg+OIBOBbEUiJXrfpnp9j0mRhYYdzp9uqq3lA=="],
@@ -883,25 +820,27 @@
"@legendapp/list": ["@legendapp/list@2.0.19", "", { "dependencies": { "use-sync-external-store": "^1.5.0" }, "peerDependencies": { "react": "*", "react-native": "*" } }, "sha512-zDWg8yg0smKxxk+M7gwAbZAnf5uczohPA+IjqLSkImz7+e9ytxeT0Mq35RBO9RTKODOXfV/aIgm1uqUHLBEdmg=="],
- "@next/env": ["@next/env@16.2.0", "", {}, "sha512-OZIbODWWAi0epQRCRjNe1VO45LOFBzgiyqmTLzIqWq6u1wrxKnAyz1HH6tgY/Mc81YzIjRPoYsPAEr4QV4l9TA=="],
+ "@napi-rs/wasm-runtime": ["@napi-rs/wasm-runtime@1.1.5", "", { "dependencies": { "@tybys/wasm-util": "^0.10.2" }, "peerDependencies": { "@emnapi/core": "^1.7.1", "@emnapi/runtime": "^1.7.1" } }, "sha512-AWPoBRJ9tsnVhor4sjO7rkni+7p+2IAEFj6cx06UgP10jkQHqay/36uRV/bFkgrh18D9vb4cr8Q0Pthskgzy+Q=="],
- "@next/eslint-plugin-next": ["@next/eslint-plugin-next@16.0.1", "", { "dependencies": { "fast-glob": "3.3.1" } }, "sha512-g4Cqmv/gyFEXNeVB2HkqDlYKfy+YrlM2k8AVIO/YQVEPfhVruH1VA99uT1zELLnPLIeOnx8IZ6Ddso0asfTIdw=="],
+ "@next/env": ["@next/env@16.2.1", "", {}, "sha512-n8P/HCkIWW+gVal2Z8XqXJ6aB3J0tuM29OcHpCsobWlChH/SITBs1DFBk/HajgrwDkqqBXPbuUuzgDvUekREPg=="],
- "@next/swc-darwin-arm64": ["@next/swc-darwin-arm64@16.2.0", "", { "os": "darwin", "cpu": "arm64" }, "sha512-/JZsqKzKt01IFoiLLAzlNqys7qk2F3JkcUhj50zuRhKDQkZNOz9E5N6wAQWprXdsvjRP4lTFj+/+36NSv5AwhQ=="],
+ "@next/eslint-plugin-next": ["@next/eslint-plugin-next@16.2.1", "", { "dependencies": { "fast-glob": "3.3.1" } }, "sha512-r0epZGo24eT4g08jJlg2OEryBphXqO8aL18oajoTKLzHJ6jVr6P6FI58DLMug04MwD3j8Fj0YK0slyzneKVyzA=="],
- "@next/swc-darwin-x64": ["@next/swc-darwin-x64@16.2.0", "", { "os": "darwin", "cpu": "x64" }, "sha512-/hV8erWq4SNlVgglUiW5UmQ5Hwy5EW/AbbXlJCn6zkfKxTy/E/U3V8U1Ocm2YCTUoFgQdoMxRyRMOW5jYy4ygg=="],
+ "@next/swc-darwin-arm64": ["@next/swc-darwin-arm64@16.2.1", "", { "os": "darwin", "cpu": "arm64" }, "sha512-BwZ8w8YTaSEr2HIuXLMLxIdElNMPvY9fLqb20LX9A9OMGtJilhHLbCL3ggyd0TwjmMcTxi0XXt+ur1vWUoxj2Q=="],
- "@next/swc-linux-arm64-gnu": ["@next/swc-linux-arm64-gnu@16.2.0", "", { "os": "linux", "cpu": "arm64" }, "sha512-GkjL/Q7MWOwqWR9zoxu1TIHzkOI2l2BHCf7FzeQG87zPgs+6WDh+oC9Sw9ARuuL/FUk6JNCgKRkA6rEQYadUaw=="],
+ "@next/swc-darwin-x64": ["@next/swc-darwin-x64@16.2.1", "", { "os": "darwin", "cpu": "x64" }, "sha512-/vrcE6iQSJq3uL3VGVHiXeaKbn8Es10DGTGRJnRZlkNQQk3kaNtAJg8Y6xuAlrx/6INKVjkfi5rY0iEXorZ6uA=="],
- "@next/swc-linux-arm64-musl": ["@next/swc-linux-arm64-musl@16.2.0", "", { "os": "linux", "cpu": "arm64" }, "sha512-1ffhC6KY5qWLg5miMlKJp3dZbXelEfjuXt1qcp5WzSCQy36CV3y+JT7OC1WSFKizGQCDOcQbfkH/IjZP3cdRNA=="],
+ "@next/swc-linux-arm64-gnu": ["@next/swc-linux-arm64-gnu@16.2.1", "", { "os": "linux", "cpu": "arm64" }, "sha512-uLn+0BK+C31LTVbQ/QU+UaVrV0rRSJQ8RfniQAHPghDdgE+SlroYqcmFnO5iNjNfVWCyKZHYrs3Nl0mUzWxbBw=="],
- "@next/swc-linux-x64-gnu": ["@next/swc-linux-x64-gnu@16.2.0", "", { "os": "linux", "cpu": "x64" }, "sha512-FmbDcZQ8yJRq93EJSL6xaE0KK/Rslraf8fj1uViGxg7K4CKBCRYSubILJPEhjSgZurpcPQq12QNOJQ0DRJl6Hg=="],
+ "@next/swc-linux-arm64-musl": ["@next/swc-linux-arm64-musl@16.2.1", "", { "os": "linux", "cpu": "arm64" }, "sha512-ssKq6iMRnHdnycGp9hCuGnXJZ0YPr4/wNwrfE5DbmvEcgl9+yv97/Kq3TPVDfYome1SW5geciLB9aiEqKXQjlQ=="],
- "@next/swc-linux-x64-musl": ["@next/swc-linux-x64-musl@16.2.0", "", { "os": "linux", "cpu": "x64" }, "sha512-HzjIHVkmGAwRbh/vzvoBWWEbb8BBZPxBvVbDQDvzHSf3D8RP/4vjw7MNLDXFF9Q1WEzeQyEj2zdxBtVAHu5Oyw=="],
+ "@next/swc-linux-x64-gnu": ["@next/swc-linux-x64-gnu@16.2.1", "", { "os": "linux", "cpu": "x64" }, "sha512-HQm7SrHRELJ30T1TSmT706IWovFFSRGxfgUkyWJZF/RKBMdbdRWJuFrcpDdE5vy9UXjFOx6L3mRdqH04Mmx0hg=="],
- "@next/swc-win32-arm64-msvc": ["@next/swc-win32-arm64-msvc@16.2.0", "", { "os": "win32", "cpu": "arm64" }, "sha512-UMiFNQf5H7+1ZsZPxEsA064WEuFbRNq/kEXyepbCnSErp4f5iut75dBA8UeerFIG3vDaQNOfCpevnERPp2V+nA=="],
+ "@next/swc-linux-x64-musl": ["@next/swc-linux-x64-musl@16.2.1", "", { "os": "linux", "cpu": "x64" }, "sha512-aV2iUaC/5HGEpbBkE+4B8aHIudoOy5DYekAKOMSHoIYQ66y/wIVeaRx8MS2ZMdxe/HIXlMho4ubdZs/J8441Tg=="],
- "@next/swc-win32-x64-msvc": ["@next/swc-win32-x64-msvc@16.2.0", "", { "os": "win32", "cpu": "x64" }, "sha512-DRrNJKW+/eimrZgdhVN1uvkN1OI4j6Lpefwr44jKQ0YQzztlmOBUUzHuV5GxOMPK3nmodAYElUVCY8ZXo/IWeA=="],
+ "@next/swc-win32-arm64-msvc": ["@next/swc-win32-arm64-msvc@16.2.1", "", { "os": "win32", "cpu": "arm64" }, "sha512-IXdNgiDHaSk0ZUJ+xp0OQTdTgnpx1RCfRTalhn3cjOP+IddTMINwA7DXZrwTmGDO8SUr5q2hdP/du4DcrB1GxA=="],
+
+ "@next/swc-win32-x64-msvc": ["@next/swc-win32-x64-msvc@16.2.1", "", { "os": "win32", "cpu": "x64" }, "sha512-qvU+3a39Hay+ieIztkGSbF7+mccbbg1Tk25hc4JDylf8IHjYmY/Zm64Qq1602yPyQqvie+vf5T/uPwNxDNIoeg=="],
"@node-rs/argon2": ["@node-rs/argon2@1.7.0", "", { "optionalDependencies": { "@node-rs/argon2-android-arm-eabi": "1.7.0", "@node-rs/argon2-android-arm64": "1.7.0", "@node-rs/argon2-darwin-arm64": "1.7.0", "@node-rs/argon2-darwin-x64": "1.7.0", "@node-rs/argon2-freebsd-x64": "1.7.0", "@node-rs/argon2-linux-arm-gnueabihf": "1.7.0", "@node-rs/argon2-linux-arm64-gnu": "1.7.0", "@node-rs/argon2-linux-arm64-musl": "1.7.0", "@node-rs/argon2-linux-x64-gnu": "1.7.0", "@node-rs/argon2-linux-x64-musl": "1.7.0", "@node-rs/argon2-wasm32-wasi": "1.7.0", "@node-rs/argon2-win32-arm64-msvc": "1.7.0", "@node-rs/argon2-win32-ia32-msvc": "1.7.0", "@node-rs/argon2-win32-x64-msvc": "1.7.0" } }, "sha512-zfULc+/tmcWcxn+nHkbyY8vP3+MpEqKORbszt4UkpqZgBgDAAIYvuDN/zukfTgdmo6tmJKKVfzigZOPk4LlIog=="],
@@ -1041,6 +980,8 @@
"@oslojs/encoding": ["@oslojs/encoding@1.1.0", "", {}, "sha512-70wQhgYmndg4GCPxPPxPGevRKqTIJ2Nh4OkiMWmDAVYsTQ+Ta7Sq+rPevXyXGdzr30/qZBnyOalCszoMxlyldQ=="],
+ "@oxc-project/types": ["@oxc-project/types@0.133.0", "", {}, "sha512-KzkdCd6Uxqnf6l3HOw1xfatAlUURA0g14cvBYFyJ5SaNOQbOUvBr9PKArcPcrNIeRsBdgcUzOGrhKveVpvOIGA=="],
+
"@panva/hkdf": ["@panva/hkdf@1.2.1", "", {}, "sha512-6oclG6Y3PiDFcoyk8srjLfVKyMfVCKJ27JwNPViuXziFpmdz+MZnZN/aKY0JGXgYuO/VghU0jcOAZgWXZ1Dmrw=="],
"@prisma/instrumentation": ["@prisma/instrumentation@7.4.2", "", { "dependencies": { "@opentelemetry/instrumentation": "^0.207.0" }, "peerDependencies": { "@opentelemetry/api": "^1.8" } }, "sha512-r9JfchJF1Ae6yAxcaLu/V1TGqBhAuSDe3mRNOssBfx1rMzfZ4fdNvrgUBwyb/TNTGXFxlH9AZix5P257x07nrg=="],
@@ -1059,7 +1000,7 @@
"@radix-ui/react-aspect-ratio": ["@radix-ui/react-aspect-ratio@1.1.7", "", { "dependencies": { "@radix-ui/react-primitive": "2.1.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-Yq6lvO9HQyPwev1onK1daHCHqXVLzPhSVjmsNjCa2Zcxy2f7uJD2itDtxknv6FzAKCwD1qQkeVDmX/cev13n/g=="],
- "@radix-ui/react-avatar": ["@radix-ui/react-avatar@1.1.10", "", { "dependencies": { "@radix-ui/react-context": "1.1.2", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-use-callback-ref": "1.1.1", "@radix-ui/react-use-is-hydrated": "0.1.0", "@radix-ui/react-use-layout-effect": "1.1.1" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-V8piFfWapM5OmNCXTzVQY+E1rDa53zY+MQ4Y7356v4fFz6vqCyUtIz2rUD44ZEdwg78/jKmMJHj07+C/Z/rcog=="],
+ "@radix-ui/react-avatar": ["@radix-ui/react-avatar@1.1.11", "", { "dependencies": { "@radix-ui/react-context": "1.1.3", "@radix-ui/react-primitive": "2.1.4", "@radix-ui/react-use-callback-ref": "1.1.1", "@radix-ui/react-use-is-hydrated": "0.1.0", "@radix-ui/react-use-layout-effect": "1.1.1" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-0Qk603AHGV28BOBO34p7IgD5m+V5Sg/YovfayABkoDDBM5d3NCx0Mp4gGrjzLGes1jV5eNOE1r3itqOR33VC6Q=="],
"@radix-ui/react-checkbox": ["@radix-ui/react-checkbox@1.3.3", "", { "dependencies": { "@radix-ui/primitive": "1.1.3", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-presence": "1.1.5", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-use-controllable-state": "1.2.2", "@radix-ui/react-use-previous": "1.1.1", "@radix-ui/react-use-size": "1.1.1" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-wBbpv+NQftHDdG86Qc0pIyXk5IR3tM8Vd0nWLKDcX8nNn4nXFOFwsKuqw2okA/1D/mpaAkmuyndrPJTYDNZtFw=="],
@@ -1069,7 +1010,7 @@
"@radix-ui/react-compose-refs": ["@radix-ui/react-compose-refs@1.1.2", "", { "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-z4eqJvfiNnFMHIIvXP3CY57y2WJs5g2v3X0zm9mEJkrkNv4rDxu+sg9Jh8EkXyeqBkB7SOcboo9dMVqhyrACIg=="],
- "@radix-ui/react-context": ["@radix-ui/react-context@1.1.2", "", { "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA=="],
+ "@radix-ui/react-context": ["@radix-ui/react-context@1.1.3", "", { "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-ieIFACdMpYfMEjF0rEf5KLvfVyIkOz6PDGyNnP+u+4xQ6jny3VCgA4OgXOwNx2aUkxn8zx9fiVcM8CfFYv9Lxw=="],
"@radix-ui/react-context-menu": ["@radix-ui/react-context-menu@2.2.16", "", { "dependencies": { "@radix-ui/primitive": "1.1.3", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-menu": "2.1.16", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-use-callback-ref": "1.1.1", "@radix-ui/react-use-controllable-state": "1.2.2" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-O8morBEW+HsVG28gYDZPTrT9UUovQUlJue5YO836tiTJhuIWBm/zQHc7j388sHWtdH/xUZurK9olD2+pcqx5ww=="],
@@ -1093,7 +1034,7 @@
"@radix-ui/react-id": ["@radix-ui/react-id@1.1.1", "", { "dependencies": { "@radix-ui/react-use-layout-effect": "1.1.1" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-kGkGegYIdQsOb4XjsfM97rXsiHaBwco+hFI66oO4s9LU+PLAC5oJ7khdOVFxkhsmlbpUqDAvXw11CluXP+jkHg=="],
- "@radix-ui/react-label": ["@radix-ui/react-label@2.1.7", "", { "dependencies": { "@radix-ui/react-primitive": "2.1.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-YT1GqPSL8kJn20djelMX7/cTRp/Y9w5IZHvfxQTVHrOqa2yMl7i/UfMqKRU5V7mEyKTrUVgJXhNQPVCG8PBLoQ=="],
+ "@radix-ui/react-label": ["@radix-ui/react-label@2.1.8", "", { "dependencies": { "@radix-ui/react-primitive": "2.1.4" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-FmXs37I6hSBVDlO4y764TNz1rLgKwjJMQ0EGte6F3Cb3f4bIuHB/iLa/8I9VKkmOy+gNHq8rql3j686ACVV21A=="],
"@radix-ui/react-menu": ["@radix-ui/react-menu@2.1.16", "", { "dependencies": { "@radix-ui/primitive": "1.1.3", "@radix-ui/react-collection": "1.1.7", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-direction": "1.1.1", "@radix-ui/react-dismissable-layer": "1.1.11", "@radix-ui/react-focus-guards": "1.1.3", "@radix-ui/react-focus-scope": "1.1.7", "@radix-ui/react-id": "1.1.1", "@radix-ui/react-popper": "1.2.8", "@radix-ui/react-portal": "1.1.9", "@radix-ui/react-presence": "1.1.5", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-roving-focus": "1.1.11", "@radix-ui/react-slot": "1.2.3", "@radix-ui/react-use-callback-ref": "1.1.1", "aria-hidden": "^1.2.4", "react-remove-scroll": "^2.6.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-72F2T+PLlphrqLcAotYPp0uJMr5SjP5SL01wfEspJbru5Zs5vQaSHb4VB3ZMJPimgHHCHG7gMOeOB9H3Hdmtxg=="],
@@ -1113,9 +1054,9 @@
"@radix-ui/react-presence": ["@radix-ui/react-presence@1.1.5", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-use-layout-effect": "1.1.1" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-/jfEwNDdQVBCNvjkGit4h6pMOzq8bHkopq458dPt2lMjx+eBQUohZNG9A7DtO/O5ukSbxuaNGXMjHicgwy6rQQ=="],
- "@radix-ui/react-primitive": ["@radix-ui/react-primitive@2.1.3", "", { "dependencies": { "@radix-ui/react-slot": "1.2.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ=="],
+ "@radix-ui/react-primitive": ["@radix-ui/react-primitive@2.1.4", "", { "dependencies": { "@radix-ui/react-slot": "1.2.4" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-9hQc4+GNVtJAIEPEqlYqW5RiYdrr8ea5XQ0ZOnD6fgru+83kqT15mq2OCcbe8KnjRZl5vF3ks69AKz3kh1jrhg=="],
- "@radix-ui/react-progress": ["@radix-ui/react-progress@1.1.7", "", { "dependencies": { "@radix-ui/react-context": "1.1.2", "@radix-ui/react-primitive": "2.1.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-vPdg/tF6YC/ynuBIJlk1mm7Le0VgW6ub6J2UWnTQ7/D23KXcPI1qy+0vBkgKgd38RCMJavBXpB83HPNFMTb0Fg=="],
+ "@radix-ui/react-progress": ["@radix-ui/react-progress@1.1.8", "", { "dependencies": { "@radix-ui/react-context": "1.1.3", "@radix-ui/react-primitive": "2.1.4" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-+gISHcSPUJ7ktBy9RnTqbdKW78bcGke3t6taawyZ71pio1JewwGSJizycs7rLhGTvMJYCQB1DBK4KQsxs7U8dA=="],
"@radix-ui/react-radio-group": ["@radix-ui/react-radio-group@1.3.8", "", { "dependencies": { "@radix-ui/primitive": "1.1.3", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-direction": "1.1.1", "@radix-ui/react-presence": "1.1.5", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-roving-focus": "1.1.11", "@radix-ui/react-use-controllable-state": "1.2.2", "@radix-ui/react-use-previous": "1.1.1", "@radix-ui/react-use-size": "1.1.1" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-VBKYIYImA5zsxACdisNQ3BjCBfmbGH3kQlnFVqlWU4tXwjy7cGX8ta80BcrO+WJXIn5iBylEH3K6ZTlee//lgQ=="],
@@ -1125,11 +1066,11 @@
"@radix-ui/react-select": ["@radix-ui/react-select@2.2.6", "", { "dependencies": { "@radix-ui/number": "1.1.1", "@radix-ui/primitive": "1.1.3", "@radix-ui/react-collection": "1.1.7", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-direction": "1.1.1", "@radix-ui/react-dismissable-layer": "1.1.11", "@radix-ui/react-focus-guards": "1.1.3", "@radix-ui/react-focus-scope": "1.1.7", "@radix-ui/react-id": "1.1.1", "@radix-ui/react-popper": "1.2.8", "@radix-ui/react-portal": "1.1.9", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-slot": "1.2.3", "@radix-ui/react-use-callback-ref": "1.1.1", "@radix-ui/react-use-controllable-state": "1.2.2", "@radix-ui/react-use-layout-effect": "1.1.1", "@radix-ui/react-use-previous": "1.1.1", "@radix-ui/react-visually-hidden": "1.2.3", "aria-hidden": "^1.2.4", "react-remove-scroll": "^2.6.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-I30RydO+bnn2PQztvo25tswPH+wFBjehVGtmagkU78yMdwTwVf12wnAOF+AeP8S2N8xD+5UPbGhkUfPyvT+mwQ=="],
- "@radix-ui/react-separator": ["@radix-ui/react-separator@1.1.7", "", { "dependencies": { "@radix-ui/react-primitive": "2.1.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-0HEb8R9E8A+jZjvmFCy/J4xhbXy3TV+9XSnGJ3KvTtjlIUy/YQ/p6UYZvi7YbeoeXdyU9+Y3scizK6hkY37baA=="],
+ "@radix-ui/react-separator": ["@radix-ui/react-separator@1.1.8", "", { "dependencies": { "@radix-ui/react-primitive": "2.1.4" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-sDvqVY4itsKwwSMEe0jtKgfTh+72Sy3gPmQpjqcQneqQ4PFmr/1I0YA+2/puilhggCe2gJcx5EBAYFkWkdpa5g=="],
"@radix-ui/react-slider": ["@radix-ui/react-slider@1.3.6", "", { "dependencies": { "@radix-ui/number": "1.1.1", "@radix-ui/primitive": "1.1.3", "@radix-ui/react-collection": "1.1.7", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-direction": "1.1.1", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-use-controllable-state": "1.2.2", "@radix-ui/react-use-layout-effect": "1.1.1", "@radix-ui/react-use-previous": "1.1.1", "@radix-ui/react-use-size": "1.1.1" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-JPYb1GuM1bxfjMRlNLE+BcmBC8onfCi60Blk7OBqi2MLTFdS+8401U4uFjnwkOr49BLmXxLC6JHkvAsx5OJvHw=="],
- "@radix-ui/react-slot": ["@radix-ui/react-slot@1.2.3", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A=="],
+ "@radix-ui/react-slot": ["@radix-ui/react-slot@1.2.4", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-Jl+bCv8HxKnlTLVrcDE8zTMJ09R9/ukw4qBs/oZClOfoQk/cOTbDn+NceXfV7j09YPVQUryJPHurafcSg6EVKA=="],
"@radix-ui/react-switch": ["@radix-ui/react-switch@1.2.6", "", { "dependencies": { "@radix-ui/primitive": "1.1.3", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-use-controllable-state": "1.2.2", "@radix-ui/react-use-previous": "1.1.1", "@radix-ui/react-use-size": "1.1.1" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-bByzr1+ep1zk4VubeEVViV592vu2lHE2BZY5OnzehZqOOgogN80+mNtCqPkhn2gklJqOpxWgPoYTSnhBCqpOXQ=="],
@@ -1167,47 +1108,47 @@
"@radix-ui/rect": ["@radix-ui/rect@1.1.1", "", {}, "sha512-HPwpGIzkl28mWyZqG52jiqDJ12waP11Pa1lGoiyUkIEuMLBP0oeK/C89esbXrxsky5we7dfd8U58nm0SgAWpVw=="],
- "@react-email/body": ["@react-email/body@0.1.0", "", { "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-o1bcSAmDYNNHECbkeyceCVPGmVsYvT+O3sSO/Ct7apKUu3JphTi31hu+0Nwqr/pgV5QFqdoT5vdS3SW5DJFHgQ=="],
+ "@react-email/body": ["@react-email/body@0.3.0", "", { "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-uGo0BOOzjbMUo3lu+BIDWayvn5o6Xyfmnlla5VGf05n8gHMvO1ll7U4FtzWe3hxMLwt53pmc4iE0M+B5slG+Ug=="],
- "@react-email/button": ["@react-email/button@0.2.0", "", { "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-8i+v6cMxr2emz4ihCrRiYJPp2/sdYsNNsBzXStlcA+/B9Umpm5Jj3WJKYpgTPM+aeyiqlG/MMI1AucnBm4f1oQ=="],
+ "@react-email/button": ["@react-email/button@0.2.1", "", { "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-qXyj7RZLE7POy9BMKSoqQ00tOXThjOZSUnI2Yu9i29IHngPlmrNayIWBoVKtElES7OWwypUcpiajwi1mUWx6/A=="],
- "@react-email/code-block": ["@react-email/code-block@0.1.0", "", { "dependencies": { "prismjs": "^1.30.0" }, "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-jSpHFsgqnQXxDIssE4gvmdtFncaFQz5D6e22BnVjcCPk/udK+0A9jRwGFEG8JD2si9ZXBmU4WsuqQEczuZn4ww=="],
+ "@react-email/code-block": ["@react-email/code-block@0.2.1", "", { "dependencies": { "prismjs": "^1.30.0" }, "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-M3B7JpVH4ytgn83/ujRR1k1DQHvTeABiDM61OvAbjLRPhC/5KLHU5KkzIbbuGIrjWwxAbL1kSQzU8MhLEtSxyw=="],
- "@react-email/code-inline": ["@react-email/code-inline@0.0.5", "", { "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-MmAsOzdJpzsnY2cZoPHFPk6uDO/Ncpb4Kh1hAt9UZc1xOW3fIzpe1Pi9y9p6wwUmpaeeDalJxAxH6/fnTquinA=="],
+ "@react-email/code-inline": ["@react-email/code-inline@0.0.6", "", { "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-jfhebvv3dVsp3OdPgKXnk8+e2pBiDVZejDOBFzBa/IblrAJ9cQDkN6rBD5IyEg8hTOxwbw3iaI/yZFmDmIguIA=="],
- "@react-email/column": ["@react-email/column@0.0.13", "", { "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-Lqq17l7ShzJG/d3b1w/+lVO+gp2FM05ZUo/nW0rjxB8xBICXOVv6PqjDnn3FXKssvhO5qAV20lHM6S+spRhEwQ=="],
+ "@react-email/column": ["@react-email/column@0.0.14", "", { "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-f+W+Bk2AjNO77zynE33rHuQhyqVICx4RYtGX9NKsGUg0wWjdGP0qAuIkhx9Rnmk4/hFMo1fUrtYNqca9fwJdHg=="],
- "@react-email/components": ["@react-email/components@0.5.4", "", { "dependencies": { "@react-email/body": "0.1.0", "@react-email/button": "0.2.0", "@react-email/code-block": "0.1.0", "@react-email/code-inline": "0.0.5", "@react-email/column": "0.0.13", "@react-email/container": "0.0.15", "@react-email/font": "0.0.9", "@react-email/head": "0.0.12", "@react-email/heading": "0.0.15", "@react-email/hr": "0.0.11", "@react-email/html": "0.0.11", "@react-email/img": "0.0.11", "@react-email/link": "0.0.12", "@react-email/markdown": "0.0.15", "@react-email/preview": "0.0.13", "@react-email/render": "1.3.0", "@react-email/row": "0.0.12", "@react-email/section": "0.0.16", "@react-email/tailwind": "1.2.2", "@react-email/text": "0.1.5" }, "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-y9aa/na9pEJ4uXVxX2E0QuiDLES8CIghkUOHJsRdKXbN9pGdgtPz5tjfMrNFe1x00S/kq2/VNaGidFYfZTnrTA=="],
+ "@react-email/components": ["@react-email/components@1.0.10", "", { "dependencies": { "@react-email/body": "0.3.0", "@react-email/button": "0.2.1", "@react-email/code-block": "0.2.1", "@react-email/code-inline": "0.0.6", "@react-email/column": "0.0.14", "@react-email/container": "0.0.16", "@react-email/font": "0.0.10", "@react-email/head": "0.0.13", "@react-email/heading": "0.0.16", "@react-email/hr": "0.0.12", "@react-email/html": "0.0.12", "@react-email/img": "0.0.12", "@react-email/link": "0.0.13", "@react-email/markdown": "0.0.18", "@react-email/preview": "0.0.14", "@react-email/render": "2.0.4", "@react-email/row": "0.0.13", "@react-email/section": "0.0.17", "@react-email/tailwind": "2.0.6", "@react-email/text": "0.1.6" }, "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-r/BnqfAjr3apcvn/NDx2DqNRD5BP5wZLRdjn2IVHXjt4KmQ5RHWSCAvFiXAzRHys1BWQ2zgIc7cpWePUcAl+nw=="],
- "@react-email/container": ["@react-email/container@0.0.15", "", { "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-Qo2IQo0ru2kZq47REmHW3iXjAQaKu4tpeq/M8m1zHIVwKduL2vYOBQWbC2oDnMtWPmkBjej6XxgtZByxM6cCFg=="],
+ "@react-email/container": ["@react-email/container@0.0.16", "", { "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-QWBB56RkkU0AJ9h+qy33gfT5iuZknPC7Un/IjZv9B0QmMIK+WWacc0cH6y2SV5Cv/b99hU94fjEMOOO4enpkbQ=="],
- "@react-email/font": ["@react-email/font@0.0.9", "", { "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-4zjq23oT9APXkerqeslPH3OZWuh5X4crHK6nx82mVHV2SrLba8+8dPEnWbaACWTNjOCbcLIzaC9unk7Wq2MIXw=="],
+ "@react-email/font": ["@react-email/font@0.0.10", "", { "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-0urVSgCmQIfx5r7Xc586miBnQUVnGp3OTYUm8m5pwtQRdTRO5XrTtEfNJ3JhYhSOruV0nD8fd+dXtKXobum6tA=="],
- "@react-email/head": ["@react-email/head@0.0.12", "", { "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-X2Ii6dDFMF+D4niNwMAHbTkeCjlYYnMsd7edXOsi0JByxt9wNyZ9EnhFiBoQdqkE+SMDcu8TlNNttMrf5sJeMA=="],
+ "@react-email/head": ["@react-email/head@0.0.13", "", { "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-AJg6le/08Gz4tm+6MtKXqtNNyKHzmooOCdmtqmWxD7FxoAdU1eVcizhtQ0gcnVaY6ethEyE/hnEzQxt1zu5Kog=="],
- "@react-email/heading": ["@react-email/heading@0.0.15", "", { "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-xF2GqsvBrp/HbRHWEfOgSfRFX+Q8I5KBEIG5+Lv3Vb2R/NYr0s8A5JhHHGf2pWBMJdbP4B2WHgj/VUrhy8dkIg=="],
+ "@react-email/heading": ["@react-email/heading@0.0.16", "", { "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-jmsKnQm1ykpBzw4hCYHwBkt5pW2jScXffPeEH5ZRF5tZeF5b1pvlFTO9han7C0pCkZYo1kEvWiRtx69yfCIwuw=="],
- "@react-email/hr": ["@react-email/hr@0.0.11", "", { "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-S1gZHVhwOsd1Iad5IFhpfICwNPMGPJidG/Uysy1AwmspyoAP5a4Iw3OWEpINFdgh9MHladbxcLKO2AJO+cA9Lw=="],
+ "@react-email/hr": ["@react-email/hr@0.0.12", "", { "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-TwmOmBDibavUQpXBxpmZYi2Iks/yeZOzFYh+di9EltMSnEabH8dMZXrl+pxNXzCgZ2XE8HY7VmUL65Lenfu5PA=="],
- "@react-email/html": ["@react-email/html@0.0.11", "", { "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-qJhbOQy5VW5qzU74AimjAR9FRFQfrMa7dn4gkEXKMB/S9xZN8e1yC1uA9C15jkXI/PzmJ0muDIWmFwatm5/+VA=="],
+ "@react-email/html": ["@react-email/html@0.0.12", "", { "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-KTShZesan+UsreU7PDUV90afrZwU5TLwYlALuCSU0OT+/U8lULNNbAUekg+tGwCnOfIKYtpDPKkAMRdYlqUznw=="],
- "@react-email/img": ["@react-email/img@0.0.11", "", { "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-aGc8Y6U5C3igoMaqAJKsCpkbm1XjguQ09Acd+YcTKwjnC2+0w3yGUJkjWB2vTx4tN8dCqQCXO8FmdJpMfOA9EQ=="],
+ "@react-email/img": ["@react-email/img@0.0.12", "", { "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-sRCpEARNVTf3FQhZOC+JTvu5r6ubiYWkT0ucYXg8ctkyi4G8QG+jgYPiNUqVeTLA2STOfmPM/nrk1nb84y6CPQ=="],
- "@react-email/link": ["@react-email/link@0.0.12", "", { "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-vF+xxQk2fGS1CN7UPQDbzvcBGfffr+GjTPNiWM38fhBfsLv6A/YUfaqxWlmL7zLzVmo0K2cvvV9wxlSyNba1aQ=="],
+ "@react-email/link": ["@react-email/link@0.0.13", "", { "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-lkWc/NjOcefRZMkQoSDDbuKBEBDES9aXnFEOuPH845wD3TxPwh+QTf0fStuzjoRLUZWpHnio4z7qGGRYusn/sw=="],
- "@react-email/markdown": ["@react-email/markdown@0.0.15", "", { "dependencies": { "md-to-react-email": "^5.0.5" }, "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-UQA9pVm5sbflgtg3EX3FquUP4aMBzmLReLbGJ6DZQZnAskBF36aI56cRykDq1o+1jT+CKIK1CducPYziaXliag=="],
+ "@react-email/markdown": ["@react-email/markdown@0.0.18", "", { "dependencies": { "marked": "^15.0.12" }, "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-gSuYK5fsMbGk87jDebqQ6fa2fKcWlkf2Dkva8kMONqLgGCq8/0d+ZQYMEJsdidIeBo3kmsnHZPrwdFB4HgjUXg=="],
- "@react-email/preview": ["@react-email/preview@0.0.13", "", { "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-F7j9FJ0JN/A4d7yr+aw28p4uX7VLWs7hTHtLo7WRyw4G+Lit6Zucq4UWKRxJC8lpsUdzVmG7aBJnKOT+urqs/w=="],
+ "@react-email/preview": ["@react-email/preview@0.0.14", "", { "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-aYK8q0IPkBXyMsbpMXgxazwHxYJxTrXrV95GFuu2HbEiIToMwSyUgb8HDFYwPqqfV03/jbwqlsXmFxsOd+VNaw=="],
- "@react-email/render": ["@react-email/render@1.4.0", "", { "dependencies": { "html-to-text": "^9.0.5", "prettier": "^3.5.3", "react-promise-suspense": "^0.3.4" }, "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-ZtJ3noggIvW1ZAryoui95KJENKdCzLmN5F7hyZY1F/17B1vwzuxHB7YkuCg0QqHjDivc5axqYEYdIOw4JIQdUw=="],
+ "@react-email/render": ["@react-email/render@2.0.4", "", { "dependencies": { "html-to-text": "^9.0.5", "prettier": "^3.5.3" }, "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-kht2oTFQ1SwrLpd882ahTvUtNa9s53CERHstiTbzhm6aR2Hbykp/mQ4tpPvsBGkKAEvKRlDEoooh60Uk6nHK1g=="],
- "@react-email/row": ["@react-email/row@0.0.12", "", { "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-HkCdnEjvK3o+n0y0tZKXYhIXUNPDx+2vq1dJTmqappVHXS5tXS6W5JOPZr5j+eoZ8gY3PShI2LWj5rWF7ZEtIQ=="],
+ "@react-email/row": ["@react-email/row@0.0.13", "", { "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-bYnOac40vIKCId7IkwuLAAsa3fKfSfqCvv6epJKmPE0JBuu5qI4FHFCl9o9dVpIIS08s/ub+Y/txoMt0dYziGw=="],
- "@react-email/section": ["@react-email/section@0.0.16", "", { "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-FjqF9xQ8FoeUZYKSdt8sMIKvoT9XF8BrzhT3xiFKdEMwYNbsDflcjfErJe3jb7Wj/es/lKTbV5QR1dnLzGpL3w=="],
+ "@react-email/section": ["@react-email/section@0.0.17", "", { "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-qNl65ye3W0Rd5udhdORzTV9ezjb+GFqQQSae03NDzXtmJq6sqVXNWNiVolAjvJNypim+zGXmv6J9TcV5aNtE/w=="],
- "@react-email/tailwind": ["@react-email/tailwind@1.2.2", "", { "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-heO9Khaqxm6Ulm6p7HQ9h01oiiLRrZuuEQuYds/O7Iyp3c58sMVHZGIxiRXO/kSs857NZQycpjewEVKF3jhNTw=="],
+ "@react-email/tailwind": ["@react-email/tailwind@2.0.6", "", { "dependencies": { "tailwindcss": "4.1.18" }, "peerDependencies": { "@react-email/body": ">=0", "@react-email/button": ">=0", "@react-email/code-block": ">=0", "@react-email/code-inline": ">=0", "@react-email/container": ">=0", "@react-email/heading": ">=0", "@react-email/hr": ">=0", "@react-email/img": ">=0", "@react-email/link": ">=0", "@react-email/preview": ">=0", "@react-email/text": ">=0", "react": "^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@react-email/body", "@react-email/button", "@react-email/code-block", "@react-email/code-inline", "@react-email/container", "@react-email/heading", "@react-email/hr", "@react-email/img", "@react-email/link", "@react-email/preview"] }, "sha512-3PgL/GYWmgS+puLPQ2aLlsplHSOFztRl70fowBkbLIb8ZUIgvx5YId6zYCCHeM2+DQ/EG3iXXqLNTahVztuMqQ=="],
- "@react-email/text": ["@react-email/text@0.1.5", "", { "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-o5PNHFSE085VMXayxH+SJ1LSOtGsTv+RpNKnTiJDrJUwoBu77G3PlKOsZZQHCNyD28WsQpl9v2WcJLbQudqwPg=="],
+ "@react-email/text": ["@react-email/text@0.1.6", "", { "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-TYqkioRS45wTR5il3dYk/SbUjjEdhSwh9BtRNB99qNH1pXAwA45H7rAuxehiu8iJQJH0IyIr+6n62gBz9ezmsw=="],
"@react-native/assets-registry": ["@react-native/assets-registry@0.81.6", "", {}, "sha512-nNlJ7mdXFoq/7LMG3eJIncqjgXkpDJak3xO8Lb4yQmFI3XVI1nupPRjlYRY0ham1gLE0F/AWvKFChsKUfF5lOQ=="],
@@ -1231,13 +1172,13 @@
"@react-native/virtualized-lists": ["@react-native/virtualized-lists@0.81.6", "", { "dependencies": { "invariant": "^2.2.4", "nullthrows": "^1.1.1" }, "peerDependencies": { "@types/react": "^19.1.4", "react": "*", "react-native": "*" }, "optionalPeers": ["@types/react"] }, "sha512-1RrZl3a7iCoAS2SGaRLjJPIn8bg/GLNXzqkIB2lufXcJsftu1umNLRIi17ZoDRejAWSd2pUfUtQBASo4R2mw4Q=="],
- "@react-navigation/bottom-tabs": ["@react-navigation/bottom-tabs@7.15.6", "", { "dependencies": { "@react-navigation/elements": "^2.9.11", "color": "^4.2.3", "sf-symbols-typescript": "^2.1.0" }, "peerDependencies": { "@react-navigation/native": "^7.1.34", "react": ">= 18.2.0", "react-native": "*", "react-native-safe-area-context": ">= 4.0.0", "react-native-screens": ">= 4.0.0" } }, "sha512-olB+s0ApMzWN9t5Bk5Mj6ntSlVRz3B8v+1LtwGS/29lyC311G5es0kgxyzpGKE9gy6Ef8W526QH5cIka2jh0kQ=="],
+ "@react-navigation/bottom-tabs": ["@react-navigation/bottom-tabs@7.15.8", "", { "dependencies": { "@react-navigation/elements": "^2.9.13", "color": "^4.2.3", "sf-symbols-typescript": "^2.1.0" }, "peerDependencies": { "@react-navigation/native": "^7.2.1", "react": ">= 18.2.0", "react-native": "*", "react-native-safe-area-context": ">= 4.0.0", "react-native-screens": ">= 4.0.0" } }, "sha512-Fz/AAPE6Be0CimOXvon75RNgpFCbZvzF2RPcNeZOdOxIYyHDGxDdtsfTxLHB0tOp9HHXkT0xXOX8Rk001jdpbg=="],
- "@react-navigation/core": ["@react-navigation/core@7.16.2", "", { "dependencies": { "@react-navigation/routers": "^7.5.3", "escape-string-regexp": "^4.0.0", "fast-deep-equal": "^3.1.3", "nanoid": "^3.3.11", "query-string": "^7.1.3", "react-is": "^19.1.0", "use-latest-callback": "^0.2.4", "use-sync-external-store": "^1.5.0" }, "peerDependencies": { "react": ">= 18.2.0" } }, "sha512-0dbCC2aTjNW7MvG1fY7zeq6eYvmmaFCEnBDXPuMPJ8uKgfs9lFGXIQFIfBdmcBVX6vHhS+K213VCsuHSIv5jYw=="],
+ "@react-navigation/core": ["@react-navigation/core@7.17.1", "", { "dependencies": { "@react-navigation/routers": "^7.5.3", "escape-string-regexp": "^4.0.0", "fast-deep-equal": "^3.1.3", "nanoid": "^3.3.11", "query-string": "^7.1.3", "react-is": "^19.1.0", "use-latest-callback": "^0.2.4", "use-sync-external-store": "^1.5.0" }, "peerDependencies": { "react": ">= 18.2.0" } }, "sha512-P1kL4FVTVYEf9Cvmb+WFxQ2UkbaXc9psj6OE0BsZ+hutPqZVbmiN6v/TI5QPf4qtg40a02yYo3vo+Mob9vJKtg=="],
- "@react-navigation/elements": ["@react-navigation/elements@2.9.11", "", { "dependencies": { "color": "^4.2.3", "use-latest-callback": "^0.2.4", "use-sync-external-store": "^1.5.0" }, "peerDependencies": { "@react-native-masked-view/masked-view": ">= 0.2.0", "@react-navigation/native": "^7.1.34", "react": ">= 18.2.0", "react-native": "*", "react-native-safe-area-context": ">= 4.0.0" }, "optionalPeers": ["@react-native-masked-view/masked-view"] }, "sha512-O5KiwaVCcEVuqZgQ77xiBFSl1sha77rNMTFlLWYnom33ZHPDarV3bM9WNyVnMZxU8ZVTi02X3+ZhO0fSn5QYyg=="],
+ "@react-navigation/elements": ["@react-navigation/elements@2.9.13", "", { "dependencies": { "color": "^4.2.3", "use-latest-callback": "^0.2.4", "use-sync-external-store": "^1.5.0" }, "peerDependencies": { "@react-native-masked-view/masked-view": ">= 0.2.0", "@react-navigation/native": "^7.2.1", "react": ">= 18.2.0", "react-native": "*", "react-native-safe-area-context": ">= 4.0.0" }, "optionalPeers": ["@react-native-masked-view/masked-view"] }, "sha512-ZD8fPwhujgs3SwgaPRse+shLCFkeLhlfk9BHtQ604Qa7/p0/sRQV9HkTfREP8gtbt6nwk6WE+0vWfX2iqxOCKA=="],
- "@react-navigation/native": ["@react-navigation/native@7.1.34", "", { "dependencies": { "@react-navigation/core": "^7.16.2", "escape-string-regexp": "^4.0.0", "fast-deep-equal": "^3.1.3", "nanoid": "^3.3.11", "use-latest-callback": "^0.2.4" }, "peerDependencies": { "react": ">= 18.2.0", "react-native": "*" } }, "sha512-zzQ0mKAhLsjTIsaoLfILKZVMObJzE0F+bOi0hl2Glt+1Rd2GtaWJ1Z024c3yLmX+Oc79pqoCQLBXpyxtrZu9NQ=="],
+ "@react-navigation/native": ["@react-navigation/native@7.2.1", "", { "dependencies": { "@react-navigation/core": "^7.17.1", "escape-string-regexp": "^4.0.0", "fast-deep-equal": "^3.1.3", "nanoid": "^3.3.11", "use-latest-callback": "^0.2.4" }, "peerDependencies": { "react": ">= 18.2.0", "react-native": "*" } }, "sha512-ohiGfR5kX585aADiYt+nfwdqmJjj5W/1eXN9CQ/njhQNi/sMmjaxYppS+e0E0zW+z5b4gaLFBvqLrJcvOdtLUA=="],
"@react-navigation/native-stack": ["@react-navigation/native-stack@7.6.1", "", { "dependencies": { "@react-navigation/elements": "^2.8.0", "color": "^4.2.3", "sf-symbols-typescript": "^2.1.0", "warn-once": "^0.1.1" }, "peerDependencies": { "@react-navigation/native": "^7.1.19", "react": ">= 18.2.0", "react-native": "*", "react-native-safe-area-context": ">= 4.0.0", "react-native-screens": ">= 4.0.0" } }, "sha512-JbYhLzZD6dHv23bGYusToaOlsdEdMgL/QtKEhwV9fEKgFNoDvkZlak8rTPJUrOlC56QwMOPe1vLG83udlNeVYQ=="],
@@ -1245,6 +1186,38 @@
"@reduxjs/toolkit": ["@reduxjs/toolkit@2.11.2", "", { "dependencies": { "@standard-schema/spec": "^1.0.0", "@standard-schema/utils": "^0.3.0", "immer": "^11.0.0", "redux": "^5.0.1", "redux-thunk": "^3.1.0", "reselect": "^5.1.0" }, "peerDependencies": { "react": "^16.9.0 || ^17.0.0 || ^18 || ^19", "react-redux": "^7.2.1 || ^8.1.3 || ^9.0.0" }, "optionalPeers": ["react", "react-redux"] }, "sha512-Kd6kAHTA6/nUpp8mySPqj3en3dm0tdMIgbttnQ1xFMVpufoj+ADi8pXLBsd4xzTRHQa7t/Jv8W5UnCuW4kuWMQ=="],
+ "@rolldown/binding-android-arm64": ["@rolldown/binding-android-arm64@1.0.3", "", { "os": "android", "cpu": "arm64" }, "sha512-454rs7jHngixp/NMxd5srYD57OnzSlZ/eFTETjORQHLwJG1lRtmNOJcBerZlfu4GjKqeq8aCCIQrMdHyhI51Hw=="],
+
+ "@rolldown/binding-darwin-arm64": ["@rolldown/binding-darwin-arm64@1.0.3", "", { "os": "darwin", "cpu": "arm64" }, "sha512-PcAhP+ynjURNyy8SKGl5DQP94aGuB/7JrXJb/t7P+hanXvQVMWzUvRRhBAcg/lNRadBhoUPqSoP4xw5tR/KBEA=="],
+
+ "@rolldown/binding-darwin-x64": ["@rolldown/binding-darwin-x64@1.0.3", "", { "os": "darwin", "cpu": "x64" }, "sha512-9YpfeUvSE2RS7wysJ81uOZkXJz7f7Q55H2Gvp3VEw/EsahqDtrphrZ0EwDLK5vvKOzaCrBsjF8JmnMLcUt78Gg=="],
+
+ "@rolldown/binding-freebsd-x64": ["@rolldown/binding-freebsd-x64@1.0.3", "", { "os": "freebsd", "cpu": "x64" }, "sha512-yB1IlAsSNHncV6SCTL27/MVGR5htvQsoGxIv5KMGXALp+Ll1wYsn+x98M9MW7qa+NdSbvrrY7ANI4wLJ0n1e6g=="],
+
+ "@rolldown/binding-linux-arm-gnueabihf": ["@rolldown/binding-linux-arm-gnueabihf@1.0.3", "", { "os": "linux", "cpu": "arm" }, "sha512-Yi30IVAAfLUCy2MseFjbB1jAMDl1VMCAas5StnYp8da9+CKvMd2H2cbEjWcw5NPaPqzvYkVIaF1nNUG+b7u/sw=="],
+
+ "@rolldown/binding-linux-arm64-gnu": ["@rolldown/binding-linux-arm64-gnu@1.0.3", "", { "os": "linux", "cpu": "arm64" }, "sha512-jsO7R8To+AdlYgUmN5sHSCZbfhtMBkO0WUx8iORQnPcMMdgr7qM2DQmMwgabs3GhNztdmoKkMKQFHD6DTMCIQw=="],
+
+ "@rolldown/binding-linux-arm64-musl": ["@rolldown/binding-linux-arm64-musl@1.0.3", "", { "os": "linux", "cpu": "arm64" }, "sha512-VWkUHwWriDciit80wleYwKILoR/KMvxh/IdwS/paX+ZgpuRpCrKLUdadJbc0NpBEiyhpYawsJ73j9aCvOH+f7Q=="],
+
+ "@rolldown/binding-linux-ppc64-gnu": ["@rolldown/binding-linux-ppc64-gnu@1.0.3", "", { "os": "linux", "cpu": "ppc64" }, "sha512-5f1laC0SlIR0yDbFCd8acUhvJIag6N3zC5P7oUPN6wX0aOma+uKJ0wBDH5aq7I1PVI2ttTlhJwzwRIBnLiSGEg=="],
+
+ "@rolldown/binding-linux-s390x-gnu": ["@rolldown/binding-linux-s390x-gnu@1.0.3", "", { "os": "linux", "cpu": "s390x" }, "sha512-Iq4ko0r4XsgbrF/LunNgHtAGLRRVE2kXonAXQ/MV0mC6jQpMOhW1SvtZja2EhC/kd05++bP78dsqBeIQyYJ6Yg=="],
+
+ "@rolldown/binding-linux-x64-gnu": ["@rolldown/binding-linux-x64-gnu@1.0.3", "", { "os": "linux", "cpu": "x64" }, "sha512-B8m6tD5+/N5FeNQFbKlLA/2yVq9ycQP1SeedyEYYKWBNR3ZQbkvIUcNnDNM03lO1l5F2roiiFJGgvoLLyZXtSg=="],
+
+ "@rolldown/binding-linux-x64-musl": ["@rolldown/binding-linux-x64-musl@1.0.3", "", { "os": "linux", "cpu": "x64" }, "sha512-pSdpdUJHkuCxun9LE7jvgUB9qsRgaiyNNCX7m/AvHTcq67AiT/Yhoxvw5zPfhrM8k/BfP8ce/hMOpthKDpEUow=="],
+
+ "@rolldown/binding-openharmony-arm64": ["@rolldown/binding-openharmony-arm64@1.0.3", "", { "os": "none", "cpu": "arm64" }, "sha512-OXXS3RKJgX2uLwM+gYyuH5omcH8fL1LJs96pZGgtetVCahON57+d4SJHzTgZiOjxgGkSnpXpOsWuPDGAKAigEg=="],
+
+ "@rolldown/binding-wasm32-wasi": ["@rolldown/binding-wasm32-wasi@1.0.3", "", { "dependencies": { "@emnapi/core": "1.10.0", "@emnapi/runtime": "1.10.0", "@napi-rs/wasm-runtime": "^1.1.4" }, "cpu": "none" }, "sha512-JTtb8BWFynicNSoPrehsCzBtOKjZ6jhMiPFEmOiuXg1Fl8dn2KHQob+GuPSGR0dryQa1PQJbzjF3dqO/whhjLg=="],
+
+ "@rolldown/binding-win32-arm64-msvc": ["@rolldown/binding-win32-arm64-msvc@1.0.3", "", { "os": "win32", "cpu": "arm64" }, "sha512-gEdFFEN70A/jxb2svrWsN3aDL7OUtmvlOy+6fa2jxG8K0wQ1ZbdeLGnidov6Yu5/733dI5ySfzFlQ/cb0bSz1g=="],
+
+ "@rolldown/binding-win32-x64-msvc": ["@rolldown/binding-win32-x64-msvc@1.0.3", "", { "os": "win32", "cpu": "x64" }, "sha512-eXB7CHuaQdqmJcc3koCNtNPmT/bj2gc999kUFgBxG8Ac0NdgXc4rkCHhqrgrhN3zddvvvrgzj1e90SuSfmyIXA=="],
+
+ "@rolldown/pluginutils": ["@rolldown/pluginutils@1.0.1", "", {}, "sha512-2j9bGt5Jh8hj+vPtgzPtl72j0yRxHAyumoo6TNfAjsLB04UtpSvPbPcDcBMxz7n+9CYB0c1GxQFxYRg2jimqGw=="],
+
"@rollup/plugin-commonjs": ["@rollup/plugin-commonjs@28.0.1", "", { "dependencies": { "@rollup/pluginutils": "^5.0.1", "commondir": "^1.0.1", "estree-walker": "^2.0.2", "fdir": "^6.2.0", "is-reference": "1.2.1", "magic-string": "^0.30.3", "picomatch": "^4.0.2" }, "peerDependencies": { "rollup": "^2.68.0||^3.0.0||^4.0.0" }, "optionalPeers": ["rollup"] }, "sha512-+tNWdlWKbpB3WgBN7ijjYkq9X5uhjmcvyjEght4NmH5fAU++zfQzAJ6wumLS+dNcvwEZhKx2Z+skY8m7v0wGSA=="],
"@rollup/pluginutils": ["@rollup/pluginutils@5.3.0", "", { "dependencies": { "@types/estree": "^1.0.0", "estree-walker": "^2.0.2", "picomatch": "^4.0.2" }, "peerDependencies": { "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" }, "optionalPeers": ["rollup"] }, "sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q=="],
@@ -1297,7 +1270,7 @@
"@selderee/plugin-htmlparser2": ["@selderee/plugin-htmlparser2@0.11.0", "", { "dependencies": { "domhandler": "^5.0.3", "selderee": "^0.11.0" } }, "sha512-P33hHGdldxGabLFjPPpaTxVolMrzrcegejx+0GxjrIb9Zv48D8yAIA/QTDR2dFl7Uz7urX8aX6+5bCZslr+gWQ=="],
- "@sentry-internal/browser-utils": ["@sentry-internal/browser-utils@10.45.0", "", { "dependencies": { "@sentry/core": "10.45.0" } }, "sha512-ZPZpeIarXKScvquGx2AfNKcYiVNDA4wegMmjyGVsTA2JPmP0TrJoO3UybJS6KGDeee8V3I3EfD/ruauMm7jOFQ=="],
+ "@sentry-internal/browser-utils": ["@sentry-internal/browser-utils@10.46.0", "", { "dependencies": { "@sentry/core": "10.46.0" } }, "sha512-WB1gBT9G13V02ekZ6NpUhoI1aGHV2eNfjEPthkU2bGBvFpQKnstwzjg7waIRGR7cu+YSW2Q6UI6aQLgBeOPD1g=="],
"@sentry-internal/feedback": ["@sentry-internal/feedback@10.38.0", "", { "dependencies": { "@sentry/core": "10.38.0" } }, "sha512-JXneg9zRftyfy1Fyfc39bBlF/Qd8g4UDublFFkVvdc1S6JQPlK+P6q22DKz3Pc8w3ySby+xlIq/eTu9Pzqi4KA=="],
@@ -1331,13 +1304,13 @@
"@sentry/core": ["@sentry/core@10.38.0", "", {}, "sha512-1pubWDZE5y5HZEPMAZERP4fVl2NH3Ihp1A+vMoVkb3Qc66Diqj1WierAnStlZP7tCx0TBa0dK85GTW/ZFYyB9g=="],
- "@sentry/nextjs": ["@sentry/nextjs@10.45.0", "", { "dependencies": { "@opentelemetry/api": "^1.9.0", "@opentelemetry/semantic-conventions": "^1.40.0", "@rollup/plugin-commonjs": "28.0.1", "@sentry-internal/browser-utils": "10.45.0", "@sentry/bundler-plugin-core": "^5.1.0", "@sentry/core": "10.45.0", "@sentry/node": "10.45.0", "@sentry/opentelemetry": "10.45.0", "@sentry/react": "10.45.0", "@sentry/vercel-edge": "10.45.0", "@sentry/webpack-plugin": "^5.1.0", "rollup": "^4.35.0", "stacktrace-parser": "^0.1.10" }, "peerDependencies": { "next": "^13.2.0 || ^14.0 || ^15.0.0-rc.0 || ^16.0.0-0" } }, "sha512-4LE+UvnfdOYyG8YEb/9TWaJQzMPuGLlph/iqowvsMdxaW6la+mvADiuzNTXly4QfsjeD3KIb7dKlGTqiVV0Ttw=="],
+ "@sentry/nextjs": ["@sentry/nextjs@10.46.0", "", { "dependencies": { "@opentelemetry/api": "^1.9.0", "@opentelemetry/semantic-conventions": "^1.40.0", "@rollup/plugin-commonjs": "28.0.1", "@sentry-internal/browser-utils": "10.46.0", "@sentry/bundler-plugin-core": "^5.1.0", "@sentry/core": "10.46.0", "@sentry/node": "10.46.0", "@sentry/opentelemetry": "10.46.0", "@sentry/react": "10.46.0", "@sentry/vercel-edge": "10.46.0", "@sentry/webpack-plugin": "^5.1.0", "rollup": "^4.35.0", "stacktrace-parser": "^0.1.11" }, "peerDependencies": { "next": "^13.2.0 || ^14.0 || ^15.0.0-rc.0 || ^16.0.0-0" } }, "sha512-DVS6vHOhgFuvcos9OXrj1wcLi9iv859bmQ5lVLpbotAmPd63+kX82aQzATk1CBr3ygZrlA2lSYHDbpRzTAvIaA=="],
- "@sentry/node": ["@sentry/node@10.45.0", "", { "dependencies": { "@fastify/otel": "0.17.1", "@opentelemetry/api": "^1.9.0", "@opentelemetry/context-async-hooks": "^2.6.0", "@opentelemetry/core": "^2.6.0", "@opentelemetry/instrumentation": "^0.213.0", "@opentelemetry/instrumentation-amqplib": "0.60.0", "@opentelemetry/instrumentation-connect": "0.56.0", "@opentelemetry/instrumentation-dataloader": "0.30.0", "@opentelemetry/instrumentation-express": "0.61.0", "@opentelemetry/instrumentation-fs": "0.32.0", "@opentelemetry/instrumentation-generic-pool": "0.56.0", "@opentelemetry/instrumentation-graphql": "0.61.0", "@opentelemetry/instrumentation-hapi": "0.59.0", "@opentelemetry/instrumentation-http": "0.213.0", "@opentelemetry/instrumentation-ioredis": "0.61.0", "@opentelemetry/instrumentation-kafkajs": "0.22.0", "@opentelemetry/instrumentation-knex": "0.57.0", "@opentelemetry/instrumentation-koa": "0.61.0", "@opentelemetry/instrumentation-lru-memoizer": "0.57.0", "@opentelemetry/instrumentation-mongodb": "0.66.0", "@opentelemetry/instrumentation-mongoose": "0.59.0", "@opentelemetry/instrumentation-mysql": "0.59.0", "@opentelemetry/instrumentation-mysql2": "0.59.0", "@opentelemetry/instrumentation-pg": "0.65.0", "@opentelemetry/instrumentation-redis": "0.61.0", "@opentelemetry/instrumentation-tedious": "0.32.0", "@opentelemetry/instrumentation-undici": "0.23.0", "@opentelemetry/resources": "^2.6.0", "@opentelemetry/sdk-trace-base": "^2.6.0", "@opentelemetry/semantic-conventions": "^1.40.0", "@prisma/instrumentation": "7.4.2", "@sentry/core": "10.45.0", "@sentry/node-core": "10.45.0", "@sentry/opentelemetry": "10.45.0", "import-in-the-middle": "^3.0.0" } }, "sha512-Kpiq9lRGnJc1ex8SwxOBl+FLQNl4Y137BydVooP7AFiAYZ6ftwHsIEF1bcYXaipHMT1YHS2bdhC2UQaaB2jkuQ=="],
+ "@sentry/node": ["@sentry/node@10.46.0", "", { "dependencies": { "@fastify/otel": "0.17.1", "@opentelemetry/api": "^1.9.0", "@opentelemetry/context-async-hooks": "^2.6.0", "@opentelemetry/core": "^2.6.0", "@opentelemetry/instrumentation": "^0.213.0", "@opentelemetry/instrumentation-amqplib": "0.60.0", "@opentelemetry/instrumentation-connect": "0.56.0", "@opentelemetry/instrumentation-dataloader": "0.30.0", "@opentelemetry/instrumentation-express": "0.61.0", "@opentelemetry/instrumentation-fs": "0.32.0", "@opentelemetry/instrumentation-generic-pool": "0.56.0", "@opentelemetry/instrumentation-graphql": "0.61.0", "@opentelemetry/instrumentation-hapi": "0.59.0", "@opentelemetry/instrumentation-http": "0.213.0", "@opentelemetry/instrumentation-ioredis": "0.61.0", "@opentelemetry/instrumentation-kafkajs": "0.22.0", "@opentelemetry/instrumentation-knex": "0.57.0", "@opentelemetry/instrumentation-koa": "0.61.0", "@opentelemetry/instrumentation-lru-memoizer": "0.57.0", "@opentelemetry/instrumentation-mongodb": "0.66.0", "@opentelemetry/instrumentation-mongoose": "0.59.0", "@opentelemetry/instrumentation-mysql": "0.59.0", "@opentelemetry/instrumentation-mysql2": "0.59.0", "@opentelemetry/instrumentation-pg": "0.65.0", "@opentelemetry/instrumentation-redis": "0.61.0", "@opentelemetry/instrumentation-tedious": "0.32.0", "@opentelemetry/instrumentation-undici": "0.23.0", "@opentelemetry/resources": "^2.6.0", "@opentelemetry/sdk-trace-base": "^2.6.0", "@opentelemetry/semantic-conventions": "^1.40.0", "@prisma/instrumentation": "7.4.2", "@sentry/core": "10.46.0", "@sentry/node-core": "10.46.0", "@sentry/opentelemetry": "10.46.0", "import-in-the-middle": "^3.0.0" } }, "sha512-vF+7FrUXEtmYWuVcnvBjlWKeyLw/kwHpwnGj9oUmO/a2uKjDmUr53ZVcapggNxCjivavGYr9uHOY64AGdeUyzA=="],
- "@sentry/node-core": ["@sentry/node-core@10.45.0", "", { "dependencies": { "@sentry/core": "10.45.0", "@sentry/opentelemetry": "10.45.0", "import-in-the-middle": "^3.0.0" }, "peerDependencies": { "@opentelemetry/api": "^1.9.0", "@opentelemetry/context-async-hooks": "^1.30.1 || ^2.1.0", "@opentelemetry/core": "^1.30.1 || ^2.1.0", "@opentelemetry/instrumentation": ">=0.57.1 <1", "@opentelemetry/resources": "^1.30.1 || ^2.1.0", "@opentelemetry/sdk-trace-base": "^1.30.1 || ^2.1.0", "@opentelemetry/semantic-conventions": "^1.39.0" }, "optionalPeers": ["@opentelemetry/api", "@opentelemetry/context-async-hooks", "@opentelemetry/core", "@opentelemetry/instrumentation", "@opentelemetry/resources", "@opentelemetry/sdk-trace-base", "@opentelemetry/semantic-conventions"] }, "sha512-KQZEvLKM344+EqXiA9HIzWbW5hzq6/9nnFUQ8niaBPoOgR9AiJhrccfIscfgb8vjkriiEtzE03OW/4h1CTgZ3Q=="],
+ "@sentry/node-core": ["@sentry/node-core@10.46.0", "", { "dependencies": { "@sentry/core": "10.46.0", "@sentry/opentelemetry": "10.46.0", "import-in-the-middle": "^3.0.0" }, "peerDependencies": { "@opentelemetry/api": "^1.9.0", "@opentelemetry/context-async-hooks": "^1.30.1 || ^2.1.0", "@opentelemetry/core": "^1.30.1 || ^2.1.0", "@opentelemetry/instrumentation": ">=0.57.1 <1", "@opentelemetry/resources": "^1.30.1 || ^2.1.0", "@opentelemetry/sdk-trace-base": "^1.30.1 || ^2.1.0", "@opentelemetry/semantic-conventions": "^1.39.0" }, "optionalPeers": ["@opentelemetry/api", "@opentelemetry/context-async-hooks", "@opentelemetry/core", "@opentelemetry/instrumentation", "@opentelemetry/resources", "@opentelemetry/sdk-trace-base", "@opentelemetry/semantic-conventions"] }, "sha512-gwLGXfkzmiCmUI1VWttyoZBaVp1ItpDKc8AV2mQblWPQGdLSD0c6uKV/FkU291yZA3rXsrLXVwcWoibwnjE2vw=="],
- "@sentry/opentelemetry": ["@sentry/opentelemetry@10.45.0", "", { "dependencies": { "@sentry/core": "10.45.0" }, "peerDependencies": { "@opentelemetry/api": "^1.9.0", "@opentelemetry/context-async-hooks": "^1.30.1 || ^2.1.0", "@opentelemetry/core": "^1.30.1 || ^2.1.0", "@opentelemetry/sdk-trace-base": "^1.30.1 || ^2.1.0", "@opentelemetry/semantic-conventions": "^1.39.0" } }, "sha512-PmuGO+p/gC3ZQ8ddOeJ5P9ApnTTm35i12Bpuyb13AckCbNSJFvG2ggZda35JQOmiFU0kKYiwkoFAa8Mvj9od3Q=="],
+ "@sentry/opentelemetry": ["@sentry/opentelemetry@10.46.0", "", { "dependencies": { "@sentry/core": "10.46.0" }, "peerDependencies": { "@opentelemetry/api": "^1.9.0", "@opentelemetry/context-async-hooks": "^1.30.1 || ^2.1.0", "@opentelemetry/core": "^1.30.1 || ^2.1.0", "@opentelemetry/sdk-trace-base": "^1.30.1 || ^2.1.0", "@opentelemetry/semantic-conventions": "^1.39.0" } }, "sha512-dzzV2ovruGsx9jzusGGr6cNPvMgYRu2BIrF8aMZ3rkQ1OpPJjPStqtA1l1fw0aoxHOxIjFU7ml4emF+xdmMl3g=="],
"@sentry/react": ["@sentry/react@10.38.0", "", { "dependencies": { "@sentry/browser": "10.38.0", "@sentry/core": "10.38.0" }, "peerDependencies": { "react": "^16.14.0 || 17.x || 18.x || 19.x" } }, "sha512-3UiKo6QsqTyPGUt0XWRY9KLaxc/cs6Kz4vlldBSOXEL6qPDL/EfpwNJT61osRo81VFWu8pKu7ZY2bvLPryrnBQ=="],
@@ -1345,7 +1318,7 @@
"@sentry/types": ["@sentry/types@10.38.0", "", { "dependencies": { "@sentry/core": "10.38.0" } }, "sha512-DoeyTv/TvnoVDhHgdyv/wehieAKdyjLjEMtPOqqq/AjkP02BxeC0JYUrrWKOjV0wdLq5ZP8jKcCX8GN7awZonQ=="],
- "@sentry/vercel-edge": ["@sentry/vercel-edge@10.45.0", "", { "dependencies": { "@opentelemetry/api": "^1.9.0", "@opentelemetry/resources": "^2.6.0", "@sentry/core": "10.45.0" } }, "sha512-sSF+Ex5NwT60gMinLcP/JNZb3cDaIv0mL1cRjfvN6zN2ZNEw0C9rhdgxa0EdD4G6PCHQ0XnCuAMDsfJ6gnRmfA=="],
+ "@sentry/vercel-edge": ["@sentry/vercel-edge@10.46.0", "", { "dependencies": { "@opentelemetry/api": "^1.9.0", "@opentelemetry/resources": "^2.6.0", "@sentry/core": "10.46.0" } }, "sha512-A50gQM5ZoEwR6V3sKbq4S0RxGeKllpWTZfN+vemXh+XGi+F5U3QpEQufJgd+xHP7cxxbc1BiJIYuLmIjGbxjQA=="],
"@sentry/webpack-plugin": ["@sentry/webpack-plugin@5.1.1", "", { "dependencies": { "@sentry/bundler-plugin-core": "5.1.1", "uuid": "^9.0.0" }, "peerDependencies": { "webpack": ">=5.0.0" } }, "sha512-XgQg+t2aVrlQDfIiAEizqR/bsy6GtBygwgR+Kw11P/cYczj4W9PZ2IYqQEStBzHqnRTh5DbpyMcUNW2CujdA9A=="],
@@ -1363,58 +1336,70 @@
"@swc/helpers": ["@swc/helpers@0.5.15", "", { "dependencies": { "tslib": "^2.8.0" } }, "sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g=="],
- "@t3-oss/env-core": ["@t3-oss/env-core@0.13.10", "", { "peerDependencies": { "arktype": "^2.1.0", "typescript": ">=5.0.0", "valibot": "^1.0.0-beta.7 || ^1.0.0", "zod": "^3.24.0 || ^4.0.0" }, "optionalPeers": ["arktype", "typescript", "valibot", "zod"] }, "sha512-NNFfdlJ+HmPHkLi2HKy7nwuat9SIYOxei9K10lO2YlcSObDILY7mHZNSHsieIM3A0/5OOzw/P/b+yLvPdaG52g=="],
+ "@t3-oss/env-core": ["@t3-oss/env-core@0.13.11", "", { "peerDependencies": { "arktype": "^2.1.0", "typescript": ">=5.0.0", "valibot": "^1.0.0-beta.7 || ^1.0.0", "zod": "^3.24.0 || ^4.0.0" }, "optionalPeers": ["arktype", "typescript", "valibot", "zod"] }, "sha512-sM7GYY+KL7H/Hl0BE0inWfk3nRHZOLhmVn7sHGxaZt9FAR6KqREXAE+6TqKfiavfXmpRxO/OZ2QgKRd+oiBYRQ=="],
- "@t3-oss/env-nextjs": ["@t3-oss/env-nextjs@0.13.10", "", { "dependencies": { "@t3-oss/env-core": "0.13.10" }, "peerDependencies": { "arktype": "^2.1.0", "typescript": ">=5.0.0", "valibot": "^1.0.0-beta.7 || ^1.0.0", "zod": "^3.24.0 || ^4.0.0" }, "optionalPeers": ["arktype", "typescript", "valibot", "zod"] }, "sha512-JfSA2WXOnvcc/uMdp31paMsfbYhhdvLLRxlwvrnlPE9bwM/n0Z+Qb9xRv48nPpvfMhOrkrTYw1I5Yc06WIKBJQ=="],
+ "@t3-oss/env-nextjs": ["@t3-oss/env-nextjs@0.13.11", "", { "dependencies": { "@t3-oss/env-core": "0.13.11" }, "peerDependencies": { "arktype": "^2.1.0", "typescript": ">=5.0.0", "valibot": "^1.0.0-beta.7 || ^1.0.0", "zod": "^3.24.0 || ^4.0.0" }, "optionalPeers": ["arktype", "typescript", "valibot", "zod"] }, "sha512-NC+3j7YWgpzdFu1t5y/8wqibTK0lm5RS4bjXA1n8uwik3wIR4iZM4Fa+U2BaMa5k3Qk8RZiYhoAIX0WogmGkzg=="],
"@tabby_ai/hijri-converter": ["@tabby_ai/hijri-converter@1.0.5", "", {}, "sha512-r5bClKrcIusDoo049dSL8CawnHR6mRdDwhlQuIgZRNty68q0x8k3Lf1BtPAMxRf/GgnHBnIO4ujd3+GQdLWzxQ=="],
- "@tailwindcss/node": ["@tailwindcss/node@4.1.16", "", { "dependencies": { "@jridgewell/remapping": "^2.3.4", "enhanced-resolve": "^5.18.3", "jiti": "^2.6.1", "lightningcss": "1.30.2", "magic-string": "^0.30.19", "source-map-js": "^1.2.1", "tailwindcss": "4.1.16" } }, "sha512-BX5iaSsloNuvKNHRN3k2RcCuTEgASTo77mofW0vmeHkfrDWaoFAFvNHpEgtu0eqyypcyiBkDWzSMxJhp3AUVcw=="],
+ "@tabler/icons": ["@tabler/icons@3.41.0", "", {}, "sha512-arlig0nkaC9UGqTZuT1MMZepX29t3Ysx5HSy2UvmR+CZrhlNxZrCM6Z4qYBoaIO+2ICZykttjBCSpf+p/t0H3w=="],
- "@tailwindcss/oxide": ["@tailwindcss/oxide@4.1.16", "", { "optionalDependencies": { "@tailwindcss/oxide-android-arm64": "4.1.16", "@tailwindcss/oxide-darwin-arm64": "4.1.16", "@tailwindcss/oxide-darwin-x64": "4.1.16", "@tailwindcss/oxide-freebsd-x64": "4.1.16", "@tailwindcss/oxide-linux-arm-gnueabihf": "4.1.16", "@tailwindcss/oxide-linux-arm64-gnu": "4.1.16", "@tailwindcss/oxide-linux-arm64-musl": "4.1.16", "@tailwindcss/oxide-linux-x64-gnu": "4.1.16", "@tailwindcss/oxide-linux-x64-musl": "4.1.16", "@tailwindcss/oxide-wasm32-wasi": "4.1.16", "@tailwindcss/oxide-win32-arm64-msvc": "4.1.16", "@tailwindcss/oxide-win32-x64-msvc": "4.1.16" } }, "sha512-2OSv52FRuhdlgyOQqgtQHuCgXnS8nFSYRp2tJ+4WZXKgTxqPy7SMSls8c3mPT5pkZ17SBToGM5LHEJBO7miEdg=="],
+ "@tabler/icons-react": ["@tabler/icons-react@3.41.0", "", { "dependencies": { "@tabler/icons": "3.41.0" }, "peerDependencies": { "react": ">= 16" } }, "sha512-8XKc3wZKf1icxqwIPSOO61M+dtf8yJPwAE/rtFAVzc5Ros+OjCqowfcoI5IpKK09RSo8s0hHrWvydGgnXqYILg=="],
- "@tailwindcss/oxide-android-arm64": ["@tailwindcss/oxide-android-arm64@4.1.16", "", { "os": "android", "cpu": "arm64" }, "sha512-8+ctzkjHgwDJ5caq9IqRSgsP70xhdhJvm+oueS/yhD5ixLhqTw9fSL1OurzMUhBwE5zK26FXLCz2f/RtkISqHA=="],
+ "@tailwindcss/node": ["@tailwindcss/node@4.2.2", "", { "dependencies": { "@jridgewell/remapping": "^2.3.5", "enhanced-resolve": "^5.19.0", "jiti": "^2.6.1", "lightningcss": "1.32.0", "magic-string": "^0.30.21", "source-map-js": "^1.2.1", "tailwindcss": "4.2.2" } }, "sha512-pXS+wJ2gZpVXqFaUEjojq7jzMpTGf8rU6ipJz5ovJV6PUGmlJ+jvIwGrzdHdQ80Sg+wmQxUFuoW1UAAwHNEdFA=="],
- "@tailwindcss/oxide-darwin-arm64": ["@tailwindcss/oxide-darwin-arm64@4.1.16", "", { "os": "darwin", "cpu": "arm64" }, "sha512-C3oZy5042v2FOALBZtY0JTDnGNdS6w7DxL/odvSny17ORUnaRKhyTse8xYi3yKGyfnTUOdavRCdmc8QqJYwFKA=="],
+ "@tailwindcss/oxide": ["@tailwindcss/oxide@4.2.2", "", { "optionalDependencies": { "@tailwindcss/oxide-android-arm64": "4.2.2", "@tailwindcss/oxide-darwin-arm64": "4.2.2", "@tailwindcss/oxide-darwin-x64": "4.2.2", "@tailwindcss/oxide-freebsd-x64": "4.2.2", "@tailwindcss/oxide-linux-arm-gnueabihf": "4.2.2", "@tailwindcss/oxide-linux-arm64-gnu": "4.2.2", "@tailwindcss/oxide-linux-arm64-musl": "4.2.2", "@tailwindcss/oxide-linux-x64-gnu": "4.2.2", "@tailwindcss/oxide-linux-x64-musl": "4.2.2", "@tailwindcss/oxide-wasm32-wasi": "4.2.2", "@tailwindcss/oxide-win32-arm64-msvc": "4.2.2", "@tailwindcss/oxide-win32-x64-msvc": "4.2.2" } }, "sha512-qEUA07+E5kehxYp9BVMpq9E8vnJuBHfJEC0vPC5e7iL/hw7HR61aDKoVoKzrG+QKp56vhNZe4qwkRmMC0zDLvg=="],
- "@tailwindcss/oxide-darwin-x64": ["@tailwindcss/oxide-darwin-x64@4.1.16", "", { "os": "darwin", "cpu": "x64" }, "sha512-vjrl/1Ub9+JwU6BP0emgipGjowzYZMjbWCDqwA2Z4vCa+HBSpP4v6U2ddejcHsolsYxwL5r4bPNoamlV0xDdLg=="],
+ "@tailwindcss/oxide-android-arm64": ["@tailwindcss/oxide-android-arm64@4.2.2", "", { "os": "android", "cpu": "arm64" }, "sha512-dXGR1n+P3B6748jZO/SvHZq7qBOqqzQ+yFrXpoOWWALWndF9MoSKAT3Q0fYgAzYzGhxNYOoysRvYlpixRBBoDg=="],
- "@tailwindcss/oxide-freebsd-x64": ["@tailwindcss/oxide-freebsd-x64@4.1.16", "", { "os": "freebsd", "cpu": "x64" }, "sha512-TSMpPYpQLm+aR1wW5rKuUuEruc/oOX3C7H0BTnPDn7W/eMw8W+MRMpiypKMkXZfwH8wqPIRKppuZoedTtNj2tg=="],
+ "@tailwindcss/oxide-darwin-arm64": ["@tailwindcss/oxide-darwin-arm64@4.2.2", "", { "os": "darwin", "cpu": "arm64" }, "sha512-iq9Qjr6knfMpZHj55/37ouZeykwbDqF21gPFtfnhCCKGDcPI/21FKC9XdMO/XyBM7qKORx6UIhGgg6jLl7BZlg=="],
- "@tailwindcss/oxide-linux-arm-gnueabihf": ["@tailwindcss/oxide-linux-arm-gnueabihf@4.1.16", "", { "os": "linux", "cpu": "arm" }, "sha512-p0GGfRg/w0sdsFKBjMYvvKIiKy/LNWLWgV/plR4lUgrsxFAoQBFrXkZ4C0w8IOXfslB9vHK/JGASWD2IefIpvw=="],
+ "@tailwindcss/oxide-darwin-x64": ["@tailwindcss/oxide-darwin-x64@4.2.2", "", { "os": "darwin", "cpu": "x64" }, "sha512-BlR+2c3nzc8f2G639LpL89YY4bdcIdUmiOOkv2GQv4/4M0vJlpXEa0JXNHhCHU7VWOKWT/CjqHdTP8aUuDJkuw=="],
- "@tailwindcss/oxide-linux-arm64-gnu": ["@tailwindcss/oxide-linux-arm64-gnu@4.1.16", "", { "os": "linux", "cpu": "arm64" }, "sha512-DoixyMmTNO19rwRPdqviTrG1rYzpxgyYJl8RgQvdAQUzxC1ToLRqtNJpU/ATURSKgIg6uerPw2feW0aS8SNr/w=="],
+ "@tailwindcss/oxide-freebsd-x64": ["@tailwindcss/oxide-freebsd-x64@4.2.2", "", { "os": "freebsd", "cpu": "x64" }, "sha512-YUqUgrGMSu2CDO82hzlQ5qSb5xmx3RUrke/QgnoEx7KvmRJHQuZHZmZTLSuuHwFf0DJPybFMXMYf+WJdxHy/nQ=="],
- "@tailwindcss/oxide-linux-arm64-musl": ["@tailwindcss/oxide-linux-arm64-musl@4.1.16", "", { "os": "linux", "cpu": "arm64" }, "sha512-H81UXMa9hJhWhaAUca6bU2wm5RRFpuHImrwXBUvPbYb+3jo32I9VIwpOX6hms0fPmA6f2pGVlybO6qU8pF4fzQ=="],
+ "@tailwindcss/oxide-linux-arm-gnueabihf": ["@tailwindcss/oxide-linux-arm-gnueabihf@4.2.2", "", { "os": "linux", "cpu": "arm" }, "sha512-FPdhvsW6g06T9BWT0qTwiVZYE2WIFo2dY5aCSpjG/S/u1tby+wXoslXS0kl3/KXnULlLr1E3NPRRw0g7t2kgaQ=="],
- "@tailwindcss/oxide-linux-x64-gnu": ["@tailwindcss/oxide-linux-x64-gnu@4.1.16", "", { "os": "linux", "cpu": "x64" }, "sha512-ZGHQxDtFC2/ruo7t99Qo2TTIvOERULPl5l0K1g0oK6b5PGqjYMga+FcY1wIUnrUxY56h28FxybtDEla+ICOyew=="],
+ "@tailwindcss/oxide-linux-arm64-gnu": ["@tailwindcss/oxide-linux-arm64-gnu@4.2.2", "", { "os": "linux", "cpu": "arm64" }, "sha512-4og1V+ftEPXGttOO7eCmW7VICmzzJWgMx+QXAJRAhjrSjumCwWqMfkDrNu1LXEQzNAwz28NCUpucgQPrR4S2yw=="],
- "@tailwindcss/oxide-linux-x64-musl": ["@tailwindcss/oxide-linux-x64-musl@4.1.16", "", { "os": "linux", "cpu": "x64" }, "sha512-Oi1tAaa0rcKf1Og9MzKeINZzMLPbhxvm7rno5/zuP1WYmpiG0bEHq4AcRUiG2165/WUzvxkW4XDYCscZWbTLZw=="],
+ "@tailwindcss/oxide-linux-arm64-musl": ["@tailwindcss/oxide-linux-arm64-musl@4.2.2", "", { "os": "linux", "cpu": "arm64" }, "sha512-oCfG/mS+/+XRlwNjnsNLVwnMWYH7tn/kYPsNPh+JSOMlnt93mYNCKHYzylRhI51X+TbR+ufNhhKKzm6QkqX8ag=="],
- "@tailwindcss/oxide-wasm32-wasi": ["@tailwindcss/oxide-wasm32-wasi@4.1.16", "", { "dependencies": { "@emnapi/core": "^1.5.0", "@emnapi/runtime": "^1.5.0", "@emnapi/wasi-threads": "^1.1.0", "@napi-rs/wasm-runtime": "^1.0.7", "@tybys/wasm-util": "^0.10.1", "tslib": "^2.4.0" }, "cpu": "none" }, "sha512-B01u/b8LteGRwucIBmCQ07FVXLzImWESAIMcUU6nvFt/tYsQ6IHz8DmZ5KtvmwxD+iTYBtM1xwoGXswnlu9v0Q=="],
+ "@tailwindcss/oxide-linux-x64-gnu": ["@tailwindcss/oxide-linux-x64-gnu@4.2.2", "", { "os": "linux", "cpu": "x64" }, "sha512-rTAGAkDgqbXHNp/xW0iugLVmX62wOp2PoE39BTCGKjv3Iocf6AFbRP/wZT/kuCxC9QBh9Pu8XPkv/zCZB2mcMg=="],
- "@tailwindcss/oxide-win32-arm64-msvc": ["@tailwindcss/oxide-win32-arm64-msvc@4.1.16", "", { "os": "win32", "cpu": "arm64" }, "sha512-zX+Q8sSkGj6HKRTMJXuPvOcP8XfYON24zJBRPlszcH1Np7xuHXhWn8qfFjIujVzvH3BHU+16jBXwgpl20i+v9A=="],
+ "@tailwindcss/oxide-linux-x64-musl": ["@tailwindcss/oxide-linux-x64-musl@4.2.2", "", { "os": "linux", "cpu": "x64" }, "sha512-XW3t3qwbIwiSyRCggeO2zxe3KWaEbM0/kW9e8+0XpBgyKU4ATYzcVSMKteZJ1iukJ3HgHBjbg9P5YPRCVUxlnQ=="],
- "@tailwindcss/oxide-win32-x64-msvc": ["@tailwindcss/oxide-win32-x64-msvc@4.1.16", "", { "os": "win32", "cpu": "x64" }, "sha512-m5dDFJUEejbFqP+UXVstd4W/wnxA4F61q8SoL+mqTypId2T2ZpuxosNSgowiCnLp2+Z+rivdU0AqpfgiD7yCBg=="],
+ "@tailwindcss/oxide-wasm32-wasi": ["@tailwindcss/oxide-wasm32-wasi@4.2.2", "", { "dependencies": { "@emnapi/core": "^1.8.1", "@emnapi/runtime": "^1.8.1", "@emnapi/wasi-threads": "^1.1.0", "@napi-rs/wasm-runtime": "^1.1.1", "@tybys/wasm-util": "^0.10.1", "tslib": "^2.8.1" }, "cpu": "none" }, "sha512-eKSztKsmEsn1O5lJ4ZAfyn41NfG7vzCg496YiGtMDV86jz1q/irhms5O0VrY6ZwTUkFy/EKG3RfWgxSI3VbZ8Q=="],
- "@tailwindcss/postcss": ["@tailwindcss/postcss@4.1.16", "", { "dependencies": { "@alloc/quick-lru": "^5.2.0", "@tailwindcss/node": "4.1.16", "@tailwindcss/oxide": "4.1.16", "postcss": "^8.4.41", "tailwindcss": "4.1.16" } }, "sha512-Qn3SFGPXYQMKR/UtqS+dqvPrzEeBZHrFA92maT4zijCVggdsXnDBMsPFJo1eArX3J+O+Gi+8pV4PkqjLCNBk3A=="],
+ "@tailwindcss/oxide-win32-arm64-msvc": ["@tailwindcss/oxide-win32-arm64-msvc@4.2.2", "", { "os": "win32", "cpu": "arm64" }, "sha512-qPmaQM4iKu5mxpsrWZMOZRgZv1tOZpUm+zdhhQP0VhJfyGGO3aUKdbh3gDZc/dPLQwW4eSqWGrrcWNBZWUWaXQ=="],
- "@turbo/darwin-64": ["@turbo/darwin-64@2.8.20", "", { "os": "darwin", "cpu": "x64" }, "sha512-FQ9EX1xMU5nbwjxXxM3yU88AQQ6Sqc6S44exPRroMcx9XZHqqppl5ymJF0Ig/z3nvQNwDmz1Gsnvxubo+nXWjQ=="],
+ "@tailwindcss/oxide-win32-x64-msvc": ["@tailwindcss/oxide-win32-x64-msvc@4.2.2", "", { "os": "win32", "cpu": "x64" }, "sha512-1T/37VvI7WyH66b+vqHj/cLwnCxt7Qt3WFu5Q8hk65aOvlwAhs7rAp1VkulBJw/N4tMirXjVnylTR72uI0HGcA=="],
- "@turbo/darwin-arm64": ["@turbo/darwin-arm64@2.8.20", "", { "os": "darwin", "cpu": "arm64" }, "sha512-Gpyh9ATFGThD6/s9L95YWY54cizg/VRWl2B67h0yofG8BpHf67DFAh9nuJVKG7bY0+SBJDAo5cMur+wOl9YOYw=="],
+ "@tailwindcss/postcss": ["@tailwindcss/postcss@4.2.2", "", { "dependencies": { "@alloc/quick-lru": "^5.2.0", "@tailwindcss/node": "4.2.2", "@tailwindcss/oxide": "4.2.2", "postcss": "^8.5.6", "tailwindcss": "4.2.2" } }, "sha512-n4goKQbW8RVXIbNKRB/45LzyUqN451deQK0nzIeauVEqjlI49slUlgKYJM2QyUzap/PcpnS7kzSUmPb1sCRvYQ=="],
- "@turbo/gen": ["@turbo/gen@2.8.20", "", { "dependencies": { "@inquirer/prompts": "^7.10.1", "esbuild": "^0.25.0" }, "bin": { "gen": "dist/cli.js" } }, "sha512-SazKn5Pc9mitpc3uc6Pmf+QhkNtvF5t6Ro0V1cuc0QFhblbfw4KwWqFnnfTEmGzgDtb2CZJB3BK8LFMBX52eLg=="],
+ "@testing-library/dom": ["@testing-library/dom@10.4.1", "", { "dependencies": { "@babel/code-frame": "^7.10.4", "@babel/runtime": "^7.12.5", "@types/aria-query": "^5.0.1", "aria-query": "5.3.0", "dom-accessibility-api": "^0.5.9", "lz-string": "^1.5.0", "picocolors": "1.1.1", "pretty-format": "^27.0.2" } }, "sha512-o4PXJQidqJl82ckFaXUeoAW+XysPLauYI43Abki5hABd853iMhitooc6znOnczgbTYmEP6U6/y1ZyKAIsvMKGg=="],
- "@turbo/linux-64": ["@turbo/linux-64@2.8.20", "", { "os": "linux", "cpu": "x64" }, "sha512-p2QxWUYyYUgUFG0b0kR+pPi8t7c9uaVlRtjTTI1AbCvVqkpjUfCcReBn6DgG/Hu8xrWdKLuyQFaLYFzQskZbcA=="],
+ "@testing-library/jest-dom": ["@testing-library/jest-dom@6.9.1", "", { "dependencies": { "@adobe/css-tools": "^4.4.0", "aria-query": "^5.0.0", "css.escape": "^1.5.1", "dom-accessibility-api": "^0.6.3", "picocolors": "^1.1.1", "redent": "^3.0.0" } }, "sha512-zIcONa+hVtVSSep9UT3jZ5rizo2BsxgyDYU7WFD5eICBE7no3881HGeb/QkGfsJs6JTkY1aQhT7rIPC7e+0nnA=="],
- "@turbo/linux-arm64": ["@turbo/linux-arm64@2.8.20", "", { "os": "linux", "cpu": "arm64" }, "sha512-Gn5yjlZGLRZWarLWqdQzv0wMqyBNIdq1QLi48F1oY5Lo9kiohuf7BPQWtWxeNVS2NgJ1+nb/DzK1JduYC4AWOA=="],
+ "@testing-library/react": ["@testing-library/react@16.3.2", "", { "dependencies": { "@babel/runtime": "^7.12.5" }, "peerDependencies": { "@testing-library/dom": "^10.0.0", "@types/react": "^18.0.0 || ^19.0.0", "@types/react-dom": "^18.0.0 || ^19.0.0", "react": "^18.0.0 || ^19.0.0", "react-dom": "^18.0.0 || ^19.0.0" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-XU5/SytQM+ykqMnAnvB2umaJNIOsLF3PVv//1Ew4CTcpz0/BRyy/af40qqrt7SjKpDdT1saBMc42CUok5gaw+g=="],
- "@turbo/windows-64": ["@turbo/windows-64@2.8.20", "", { "os": "win32", "cpu": "x64" }, "sha512-vyaDpYk/8T6Qz5V/X+ihKvKFEZFUoC0oxYpC1sZanK6gaESJlmV3cMRT3Qhcg4D2VxvtC2Jjs9IRkrZGL+exLw=="],
+ "@turbo/darwin-64": ["@turbo/darwin-64@2.9.18", "", { "os": "darwin", "cpu": "x64" }, "sha512-9f27peFu16ur8c0v9nUFUEyBnbKuuFsUTjHFWfmwGfzySBXbHwzU44QhZon6Mznz0cHsIr3984NQj/bVrnGSRw=="],
- "@turbo/windows-arm64": ["@turbo/windows-arm64@2.8.20", "", { "os": "win32", "cpu": "arm64" }, "sha512-voicVULvUV5yaGXo0Iue13BcHGYW3u0VgqSbfQwBaHbpj1zLjYV4KIe+7fYIo6DO8FVUJzxFps3ODCQG/Wy2Qw=="],
+ "@turbo/darwin-arm64": ["@turbo/darwin-arm64@2.9.18", "", { "os": "darwin", "cpu": "arm64" }, "sha512-9A6TMRq/Ib+QnbhLlgkhOm+624wO4pzSQ/yQviQfWHOlFvaYxdnIAYmu2H6TS6y7kSVL0DvzNe04NbESTOzFVQ=="],
+
+ "@turbo/gen": ["@turbo/gen@2.9.18", "", { "dependencies": { "@inquirer/prompts": "^7.10.1", "esbuild": "^0.25.0" }, "bin": { "gen": "dist/cli.js" } }, "sha512-9Ry3V2eqFANYI7A5dyjehq2EOuLTY30XQSg4aDR7F3cJOuiP/Ad2KXwrxD3AnwNDkuSDVbJjlbES7yfJ0y7dhw=="],
+
+ "@turbo/linux-64": ["@turbo/linux-64@2.9.18", "", { "os": "linux", "cpu": "x64" }, "sha512-zCdIDtz69AnbYh913elJRRoF3QY5aa2HNnf+4rAkc7bQ+tWujiDkCNV7stazOUPggaDvhKIf2Z87qHftTeXSkw=="],
+
+ "@turbo/linux-arm64": ["@turbo/linux-arm64@2.9.18", "", { "os": "linux", "cpu": "arm64" }, "sha512-Va1kXI04naMgYwqv/5Dfa36dTDx8015U7oaQAjrXa45ua9OoFjSV4OmvkML4EmXvUclQHCiBRbY8bvd0jV7eAg=="],
+
+ "@turbo/windows-64": ["@turbo/windows-64@2.9.18", "", { "os": "win32", "cpu": "x64" }, "sha512-m0kDhZANxSNz9ck1ybogFscHabriAsp4eDFNrN/1H5WrgTF7b3VlcPZnhuO3v2+E2KnCbeAc+UUT10BZZHdDKw=="],
+
+ "@turbo/windows-arm64": ["@turbo/windows-arm64@2.9.18", "", { "os": "win32", "cpu": "arm64" }, "sha512-nUdR8WqoomUys9iIQmG45TMiizJ+5BV8egSeLLZba/AWblyp3fVBcIH1kSE58OtK4g2YzbMJEth6Ttv9w5rqMA=="],
"@tybys/wasm-util": ["@tybys/wasm-util@0.8.3", "", { "dependencies": { "tslib": "^2.4.0" } }, "sha512-Z96T/L6dUFFxgFJ+pQtkPpne9q7i6kIPYCFnQBHSgSPV9idTsKfIhCss0h5iM9irweZCatkrdeP8yi5uM1eX6Q=="],
+ "@types/aria-query": ["@types/aria-query@5.0.4", "", {}, "sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw=="],
+
"@types/babel__core": ["@types/babel__core@7.20.5", "", { "dependencies": { "@babel/parser": "^7.20.7", "@babel/types": "^7.20.7", "@types/babel__generator": "*", "@types/babel__template": "*", "@types/babel__traverse": "*" } }, "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA=="],
"@types/babel__generator": ["@types/babel__generator@7.27.0", "", { "dependencies": { "@babel/types": "^7.0.0" } }, "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg=="],
@@ -1423,6 +1408,8 @@
"@types/babel__traverse": ["@types/babel__traverse@7.28.0", "", { "dependencies": { "@babel/types": "^7.28.2" } }, "sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q=="],
+ "@types/chai": ["@types/chai@5.2.3", "", { "dependencies": { "@types/deep-eql": "*", "assertion-error": "^2.0.1" } }, "sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA=="],
+
"@types/connect": ["@types/connect@3.4.38", "", { "dependencies": { "@types/node": "*" } }, "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug=="],
"@types/cors": ["@types/cors@2.8.19", "", { "dependencies": { "@types/node": "*" } }, "sha512-mFNylyeyqN93lfe/9CSxOGREz8cpzAhH+E93xJ4xWQf62V8sQ/24reV2nyzUWM6H6Xji+GGHpkbLe7pVoUEskg=="],
@@ -1445,10 +1432,14 @@
"@types/d3-timer": ["@types/d3-timer@3.0.2", "", {}, "sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw=="],
+ "@types/deep-eql": ["@types/deep-eql@4.0.2", "", {}, "sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw=="],
+
"@types/eslint": ["@types/eslint@9.6.1", "", { "dependencies": { "@types/estree": "*", "@types/json-schema": "*" } }, "sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag=="],
"@types/eslint-scope": ["@types/eslint-scope@3.7.7", "", { "dependencies": { "@types/eslint": "*", "@types/estree": "*" } }, "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg=="],
+ "@types/esrecurse": ["@types/esrecurse@4.3.1", "", {}, "sha512-xJBAbDifo5hpffDBuHl0Y8ywswbiAp/Wi7Y/GtAgSlZyIABppyurxVueOPE8LUQOxdlgi6Zqce7uoEpqNTeiUw=="],
+
"@types/estree": ["@types/estree@1.0.8", "", {}, "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w=="],
"@types/graceful-fs": ["@types/graceful-fs@4.1.9", "", { "dependencies": { "@types/node": "*" } }, "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ=="],
@@ -1467,15 +1458,15 @@
"@types/mysql": ["@types/mysql@2.15.27", "", { "dependencies": { "@types/node": "*" } }, "sha512-YfWiV16IY0OeBfBCk8+hXKmdTKrKlwKN1MNKAPBu5JYxLwBEZl7QzeEpGnlZb3VMGJrrGmB84gXiH+ofs/TezA=="],
- "@types/node": ["@types/node@22.19.15", "", { "dependencies": { "undici-types": "~6.21.0" } }, "sha512-F0R/h2+dsy5wJAUe3tAU6oqa2qbWY5TpNfL/RGmo1y38hiyO1w3x2jPtt76wmuaJI4DQnOBu21cNXQ2STIUUWg=="],
+ "@types/node": ["@types/node@25.5.0", "", { "dependencies": { "undici-types": "~7.18.0" } }, "sha512-jp2P3tQMSxWugkCUKLRPVUpGaL5MVFwF8RDuSRztfwgN1wmqJeMSbKlnEtQqU8UrhTmzEmZdu2I6v2dpp7XIxw=="],
"@types/pg": ["@types/pg@8.15.6", "", { "dependencies": { "@types/node": "*", "pg-protocol": "*", "pg-types": "^2.2.0" } }, "sha512-NoaMtzhxOrubeL/7UZuNTrejB4MPAJ0RpxZqXQf2qXuVlTPuG6Y8p4u9dKRaue4yjmC7ZhzVO2/Yyyn25znrPQ=="],
"@types/pg-pool": ["@types/pg-pool@2.0.7", "", { "dependencies": { "@types/pg": "*" } }, "sha512-U4CwmGVQcbEuqpyju8/ptOKg6gEC+Tqsvj2xS9o1g71bUh8twxnC6ZL5rZKCsGN0iyH0CwgUyc9VR5owNQF9Ng=="],
- "@types/react": ["@types/react@19.1.17", "", { "dependencies": { "csstype": "^3.0.2" } }, "sha512-Qec1E3mhALmaspIrhWt9jkQMNdw6bReVu64mjvhbhq2NFPftLPVr+l1SZgmw/66WwBNpDh7ao5AT6gF5v41PFA=="],
+ "@types/react": ["@types/react@19.2.14", "", { "dependencies": { "csstype": "^3.2.2" } }, "sha512-ilcTH/UniCkMdtexkoCN0bI7pMcJDvmQFPvuPvmEaYA/NSfFTAgdUSLAoVjaRJm7+6PvcM+q1zYOwS4wTYMF9w=="],
- "@types/react-dom": ["@types/react-dom@19.1.11", "", { "peerDependencies": { "@types/react": "^19.0.0" } }, "sha512-3BKc/yGdNTYQVVw4idqHtSOcFsgGuBbMveKCOgF8wQ5QtrYOc3jDIlzg3jef04zcXFIHLelyGlj0T+BJ8+KN+w=="],
+ "@types/react-dom": ["@types/react-dom@19.2.3", "", { "peerDependencies": { "@types/react": "^19.2.0" } }, "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ=="],
"@types/stack-utils": ["@types/stack-utils@2.0.3", "", {}, "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw=="],
@@ -1483,29 +1474,33 @@
"@types/use-sync-external-store": ["@types/use-sync-external-store@0.0.6", "", {}, "sha512-zFDAD+tlpf2r4asuHEj0XH6pY6i0g5NeAHPn+15wk3BV6JA69eERFXC1gyGThDkVa1zCyKr5jox1+2LbV/AMLg=="],
+ "@types/whatwg-mimetype": ["@types/whatwg-mimetype@3.0.2", "", {}, "sha512-c2AKvDT8ToxLIOUlN51gTiHXflsfIFisS4pO7pDPoKouJCESkhZnEy623gwP9laCy5lnLDAw1vAzu2vM2YLOrA=="],
+
+ "@types/ws": ["@types/ws@8.18.1", "", { "dependencies": { "@types/node": "*" } }, "sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg=="],
+
"@types/yargs": ["@types/yargs@17.0.34", "", { "dependencies": { "@types/yargs-parser": "*" } }, "sha512-KExbHVa92aJpw9WDQvzBaGVE2/Pz+pLZQloT2hjL8IqsZnV62rlPOYvNnLmf/L2dyllfVUOVBj64M0z/46eR2A=="],
"@types/yargs-parser": ["@types/yargs-parser@21.0.3", "", {}, "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ=="],
- "@typescript-eslint/eslint-plugin": ["@typescript-eslint/eslint-plugin@8.46.2", "", { "dependencies": { "@eslint-community/regexpp": "^4.10.0", "@typescript-eslint/scope-manager": "8.46.2", "@typescript-eslint/type-utils": "8.46.2", "@typescript-eslint/utils": "8.46.2", "@typescript-eslint/visitor-keys": "8.46.2", "graphemer": "^1.4.0", "ignore": "^7.0.0", "natural-compare": "^1.4.0", "ts-api-utils": "^2.1.0" }, "peerDependencies": { "@typescript-eslint/parser": "^8.46.2", "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <6.0.0" } }, "sha512-ZGBMToy857/NIPaaCucIUQgqueOiq7HeAKkhlvqVV4lm089zUFW6ikRySx2v+cAhKeUCPuWVHeimyk6Dw1iY3w=="],
+ "@typescript-eslint/eslint-plugin": ["@typescript-eslint/eslint-plugin@8.57.2", "", { "dependencies": { "@eslint-community/regexpp": "^4.12.2", "@typescript-eslint/scope-manager": "8.57.2", "@typescript-eslint/type-utils": "8.57.2", "@typescript-eslint/utils": "8.57.2", "@typescript-eslint/visitor-keys": "8.57.2", "ignore": "^7.0.5", "natural-compare": "^1.4.0", "ts-api-utils": "^2.4.0" }, "peerDependencies": { "@typescript-eslint/parser": "^8.57.2", "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", "typescript": ">=4.8.4 <6.0.0" } }, "sha512-NZZgp0Fm2IkD+La5PR81sd+g+8oS6JwJje+aRWsDocxHkjyRw0J5L5ZTlN3LI1LlOcGL7ph3eaIUmTXMIjLk0w=="],
- "@typescript-eslint/parser": ["@typescript-eslint/parser@8.46.2", "", { "dependencies": { "@typescript-eslint/scope-manager": "8.46.2", "@typescript-eslint/types": "8.46.2", "@typescript-eslint/typescript-estree": "8.46.2", "@typescript-eslint/visitor-keys": "8.46.2", "debug": "^4.3.4" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <6.0.0" } }, "sha512-BnOroVl1SgrPLywqxyqdJ4l3S2MsKVLDVxZvjI1Eoe8ev2r3kGDo+PcMihNmDE+6/KjkTubSJnmqGZZjQSBq/g=="],
+ "@typescript-eslint/parser": ["@typescript-eslint/parser@8.57.2", "", { "dependencies": { "@typescript-eslint/scope-manager": "8.57.2", "@typescript-eslint/types": "8.57.2", "@typescript-eslint/typescript-estree": "8.57.2", "@typescript-eslint/visitor-keys": "8.57.2", "debug": "^4.4.3" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", "typescript": ">=4.8.4 <6.0.0" } }, "sha512-30ScMRHIAD33JJQkgfGW1t8CURZtjc2JpTrq5n2HFhOefbAhb7ucc7xJwdWcrEtqUIYJ73Nybpsggii6GtAHjA=="],
- "@typescript-eslint/project-service": ["@typescript-eslint/project-service@8.46.2", "", { "dependencies": { "@typescript-eslint/tsconfig-utils": "^8.46.2", "@typescript-eslint/types": "^8.46.2", "debug": "^4.3.4" }, "peerDependencies": { "typescript": ">=4.8.4 <6.0.0" } }, "sha512-PULOLZ9iqwI7hXcmL4fVfIsBi6AN9YxRc0frbvmg8f+4hQAjQ5GYNKK0DIArNo+rOKmR/iBYwkpBmnIwin4wBg=="],
+ "@typescript-eslint/project-service": ["@typescript-eslint/project-service@8.57.2", "", { "dependencies": { "@typescript-eslint/tsconfig-utils": "^8.57.2", "@typescript-eslint/types": "^8.57.2", "debug": "^4.4.3" }, "peerDependencies": { "typescript": ">=4.8.4 <6.0.0" } }, "sha512-FuH0wipFywXRTHf+bTTjNyuNQQsQC3qh/dYzaM4I4W0jrCqjCVuUh99+xd9KamUfmCGPvbO8NDngo/vsnNVqgw=="],
"@typescript-eslint/scope-manager": ["@typescript-eslint/scope-manager@8.46.2", "", { "dependencies": { "@typescript-eslint/types": "8.46.2", "@typescript-eslint/visitor-keys": "8.46.2" } }, "sha512-LF4b/NmGvdWEHD2H4MsHD8ny6JpiVNDzrSZr3CsckEgCbAGZbYM4Cqxvi9L+WqDMT+51Ozy7lt2M+d0JLEuBqA=="],
- "@typescript-eslint/tsconfig-utils": ["@typescript-eslint/tsconfig-utils@8.46.2", "", { "peerDependencies": { "typescript": ">=4.8.4 <6.0.0" } }, "sha512-a7QH6fw4S57+F5y2FIxxSDyi5M4UfGF+Jl1bCGd7+L4KsaUY80GsiF/t0UoRFDHAguKlBaACWJRmdrc6Xfkkag=="],
+ "@typescript-eslint/tsconfig-utils": ["@typescript-eslint/tsconfig-utils@8.57.2", "", { "peerDependencies": { "typescript": ">=4.8.4 <6.0.0" } }, "sha512-3Lm5DSM+DCowsUOJC+YqHHnKEfFh5CoGkj5Z31NQSNF4l5wdOwqGn99wmwN/LImhfY3KJnmordBq/4+VDe2eKw=="],
- "@typescript-eslint/type-utils": ["@typescript-eslint/type-utils@8.46.2", "", { "dependencies": { "@typescript-eslint/types": "8.46.2", "@typescript-eslint/typescript-estree": "8.46.2", "@typescript-eslint/utils": "8.46.2", "debug": "^4.3.4", "ts-api-utils": "^2.1.0" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <6.0.0" } }, "sha512-HbPM4LbaAAt/DjxXaG9yiS9brOOz6fabal4uvUmaUYe6l3K1phQDMQKBRUrr06BQkxkvIZVVHttqiybM9nJsLA=="],
+ "@typescript-eslint/type-utils": ["@typescript-eslint/type-utils@8.57.2", "", { "dependencies": { "@typescript-eslint/types": "8.57.2", "@typescript-eslint/typescript-estree": "8.57.2", "@typescript-eslint/utils": "8.57.2", "debug": "^4.4.3", "ts-api-utils": "^2.4.0" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", "typescript": ">=4.8.4 <6.0.0" } }, "sha512-Co6ZCShm6kIbAM/s+oYVpKFfW7LBc6FXoPXjTRQ449PPNBY8U0KZXuevz5IFuuUj2H9ss40atTaf9dlGLzbWZg=="],
"@typescript-eslint/types": ["@typescript-eslint/types@8.46.2", "", {}, "sha512-lNCWCbq7rpg7qDsQrd3D6NyWYu+gkTENkG5IKYhUIcxSb59SQC/hEQ+MrG4sTgBVghTonNWq42bA/d4yYumldQ=="],
- "@typescript-eslint/typescript-estree": ["@typescript-eslint/typescript-estree@8.46.2", "", { "dependencies": { "@typescript-eslint/project-service": "8.46.2", "@typescript-eslint/tsconfig-utils": "8.46.2", "@typescript-eslint/types": "8.46.2", "@typescript-eslint/visitor-keys": "8.46.2", "debug": "^4.3.4", "fast-glob": "^3.3.2", "is-glob": "^4.0.3", "minimatch": "^9.0.4", "semver": "^7.6.0", "ts-api-utils": "^2.1.0" }, "peerDependencies": { "typescript": ">=4.8.4 <6.0.0" } }, "sha512-f7rW7LJ2b7Uh2EiQ+7sza6RDZnajbNbemn54Ob6fRwQbgcIn+GWfyuHDHRYgRoZu1P4AayVScrRW+YfbTvPQoQ=="],
+ "@typescript-eslint/typescript-estree": ["@typescript-eslint/typescript-estree@8.57.2", "", { "dependencies": { "@typescript-eslint/project-service": "8.57.2", "@typescript-eslint/tsconfig-utils": "8.57.2", "@typescript-eslint/types": "8.57.2", "@typescript-eslint/visitor-keys": "8.57.2", "debug": "^4.4.3", "minimatch": "^10.2.2", "semver": "^7.7.3", "tinyglobby": "^0.2.15", "ts-api-utils": "^2.4.0" }, "peerDependencies": { "typescript": ">=4.8.4 <6.0.0" } }, "sha512-2MKM+I6g8tJxfSmFKOnHv2t8Sk3T6rF20A1Puk0svLK+uVapDZB/4pfAeB7nE83uAZrU6OxW+HmOd5wHVdXwXA=="],
"@typescript-eslint/utils": ["@typescript-eslint/utils@8.46.2", "", { "dependencies": { "@eslint-community/eslint-utils": "^4.7.0", "@typescript-eslint/scope-manager": "8.46.2", "@typescript-eslint/types": "8.46.2", "@typescript-eslint/typescript-estree": "8.46.2" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <6.0.0" } }, "sha512-sExxzucx0Tud5tE0XqR0lT0psBQvEpnpiul9XbGUB1QwpWJJAps1O/Z7hJxLGiZLBKMCutjTzDgmd1muEhBnVg=="],
- "@typescript-eslint/visitor-keys": ["@typescript-eslint/visitor-keys@8.46.2", "", { "dependencies": { "@typescript-eslint/types": "8.46.2", "eslint-visitor-keys": "^4.2.1" } }, "sha512-tUFMXI4gxzzMXt4xpGJEsBsTox0XbNQ1y94EwlD/CuZwFcQP79xfQqMhau9HsRc/J0cAPA/HZt1dZPtGn9V/7w=="],
+ "@typescript-eslint/visitor-keys": ["@typescript-eslint/visitor-keys@8.57.2", "", { "dependencies": { "@typescript-eslint/types": "8.57.2", "eslint-visitor-keys": "^5.0.0" } }, "sha512-zhahknjobV2FiD6Ee9iLbS7OV9zi10rG26odsQdfBO/hjSzUQbkIYgda+iNKK1zNiW2ey+Lf8MU5btN17V3dUw=="],
"@ungap/structured-clone": ["@ungap/structured-clone@1.3.0", "", {}, "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g=="],
@@ -1513,6 +1508,22 @@
"@urql/exchange-retry": ["@urql/exchange-retry@1.3.2", "", { "dependencies": { "@urql/core": "^5.1.2", "wonka": "^6.3.2" } }, "sha512-TQMCz2pFJMfpNxmSfX1VSfTjwUIFx/mL+p1bnfM1xjjdla7Z+KnGMW/EhFbpckp3LyWAH4PgOsMwOMnIN+MBFg=="],
+ "@vitejs/plugin-react": ["@vitejs/plugin-react@6.0.2", "", { "dependencies": { "@rolldown/pluginutils": "^1.0.0" }, "peerDependencies": { "@rolldown/plugin-babel": "^0.1.7 || ^0.2.0", "babel-plugin-react-compiler": "^1.0.0", "vite": "^8.0.0" }, "optionalPeers": ["@rolldown/plugin-babel", "babel-plugin-react-compiler"] }, "sha512-DlSMqo4WhThw4vB8Mpn0Woe9J+Jfq1geJ61AKW0QEgLzGMNwtIMdxbDUzLxcun8W7NbJO0e2Jg/Nxm3cCSVzzg=="],
+
+ "@vitest/expect": ["@vitest/expect@4.1.9", "", { "dependencies": { "@standard-schema/spec": "^1.1.0", "@types/chai": "^5.2.2", "@vitest/spy": "4.1.9", "@vitest/utils": "4.1.9", "chai": "^6.2.2", "tinyrainbow": "^3.1.0" } }, "sha512-vl/rYsUKcBr3SnQn166+XR5ZQcgMx3DQhFWdfli/cWpLnLUmbxZvyrJZotLFUryib+LtArYMSTJ5RbQ57ZqrlA=="],
+
+ "@vitest/mocker": ["@vitest/mocker@4.1.9", "", { "dependencies": { "@vitest/spy": "4.1.9", "estree-walker": "^3.0.3", "magic-string": "^0.30.21" }, "peerDependencies": { "msw": "^2.4.9", "vite": "^6.0.0 || ^7.0.0 || ^8.0.0" }, "optionalPeers": ["msw", "vite"] }, "sha512-EVkXzBjrPGM+cK8/ANWgBrkUCfJfb38/EfTSO8h7pWvKkyPkpWxvR7BkD2MyItMF62C97zAEoqdpUixwR/e+Rw=="],
+
+ "@vitest/pretty-format": ["@vitest/pretty-format@4.1.9", "", { "dependencies": { "tinyrainbow": "^3.1.0" } }, "sha512-s0iufns3iIFitdgm+YR7g1whCAaGtXz459VS9/PqyKDEEFgYIhsHOQmXgIgDuYCt7DeQmiZT0Qe2OA2p4ZPu5A=="],
+
+ "@vitest/runner": ["@vitest/runner@4.1.9", "", { "dependencies": { "@vitest/utils": "4.1.9", "pathe": "^2.0.3" } }, "sha512-KXLMDtc7oe70+3mJfGrPUWPesswH+3sTxAMAMl8DG7I8IUQT4XW718dY5ID3vPUcmlu27CcKfY4P3h3I29SLJg=="],
+
+ "@vitest/snapshot": ["@vitest/snapshot@4.1.9", "", { "dependencies": { "@vitest/pretty-format": "4.1.9", "@vitest/utils": "4.1.9", "magic-string": "^0.30.21", "pathe": "^2.0.3" } }, "sha512-Jc7RKGNBo8Z28WYIm0Niej4xdSPByRf6mU58VpHQkd6Zh05rlnA+twjbK5HyeIGHxrzsc3mJgS43uM0CZKzaIA=="],
+
+ "@vitest/spy": ["@vitest/spy@4.1.9", "", {}, "sha512-fHpsS6mIi+PiEW+vcRVOMkX1oSaPKne3VOclSFICPcGOmfKgXPU5iAah+wcNcj2xPrCCmfq99IDGf+EojhhvhA=="],
+
+ "@vitest/utils": ["@vitest/utils@4.1.9", "", { "dependencies": { "@vitest/pretty-format": "4.1.9", "convert-source-map": "^2.0.0", "tinyrainbow": "^3.1.0" } }, "sha512-A51o8ymO5PpqlWNnBP9ZHPXDIpuMtTLlGSjN7la4US+LJzoUMyhwjA5QXlm39JexgwHKW4Xjs8Z2d3dLCXOeuA=="],
+
"@webassemblyjs/ast": ["@webassemblyjs/ast@1.14.1", "", { "dependencies": { "@webassemblyjs/helper-numbers": "1.13.2", "@webassemblyjs/helper-wasm-bytecode": "1.13.2" } }, "sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ=="],
"@webassemblyjs/floating-point-hex-parser": ["@webassemblyjs/floating-point-hex-parser@1.13.2", "", {}, "sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA=="],
@@ -1553,7 +1564,7 @@
"accepts": ["accepts@1.3.8", "", { "dependencies": { "mime-types": "~2.1.34", "negotiator": "0.6.3" } }, "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw=="],
- "acorn": ["acorn@8.15.0", "", { "bin": { "acorn": "bin/acorn" } }, "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg=="],
+ "acorn": ["acorn@8.16.0", "", { "bin": { "acorn": "bin/acorn" } }, "sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw=="],
"acorn-import-attributes": ["acorn-import-attributes@1.9.5", "", { "peerDependencies": { "acorn": "^8" } }, "sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ=="],
@@ -1565,24 +1576,22 @@
"ajv": ["ajv@6.14.0", "", { "dependencies": { "fast-deep-equal": "^3.1.1", "fast-json-stable-stringify": "^2.0.0", "json-schema-traverse": "^0.4.1", "uri-js": "^4.2.2" } }, "sha512-IWrosm/yrn43eiKqkfkHis7QioDleaXQHdDVPKg0FSwwd/DuvyX79TZnFOnYpB7dcsFAMmtFztZuXPDvSePkFw=="],
- "ajv-formats": ["ajv-formats@2.1.1", "", { "dependencies": { "ajv": "^8.0.0" } }, "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA=="],
+ "ajv-formats": ["ajv-formats@3.0.1", "", { "dependencies": { "ajv": "^8.0.0" } }, "sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ=="],
"ajv-keywords": ["ajv-keywords@5.1.0", "", { "dependencies": { "fast-deep-equal": "^3.1.3" }, "peerDependencies": { "ajv": "^8.8.2" } }, "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw=="],
"anser": ["anser@1.4.10", "", {}, "sha512-hCv9AqTQ8ycjpSd3upOJd7vFwW1JaoYQ7tpham03GJ1ca8/65rqn0RpaWpItOAd6ylW9wAw6luXYPJIyPFVOww=="],
- "ansi-escapes": ["ansi-escapes@4.3.2", "", { "dependencies": { "type-fest": "^0.21.3" } }, "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ=="],
+ "ansi-escapes": ["ansi-escapes@7.3.0", "", { "dependencies": { "environment": "^1.0.0" } }, "sha512-BvU8nYgGQBxcmMuEeUEmNTvrMVjJNSH7RgW24vXexN4Ven6qCvy4TntnvlnwnMLTVlcRQQdbRY8NKnaIoeWDNg=="],
"ansi-regex": ["ansi-regex@5.0.1", "", {}, "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="],
- "ansi-styles": ["ansi-styles@4.3.0", "", { "dependencies": { "color-convert": "^2.0.1" } }, "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="],
+ "ansi-styles": ["ansi-styles@5.2.0", "", {}, "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA=="],
"any-promise": ["any-promise@1.3.0", "", {}, "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A=="],
"anymatch": ["anymatch@3.1.3", "", { "dependencies": { "normalize-path": "^3.0.0", "picomatch": "^2.0.4" } }, "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw=="],
- "arctic": ["arctic@1.9.2", "", { "dependencies": { "oslo": "1.2.0" } }, "sha512-VTnGpYx+ypboJdNrWnK17WeD7zN/xSCHnpecd5QYsBfVZde/5i+7DJ1wrf/ioSDMiEjagXmyNWAE3V2C9f1hNg=="],
-
"arg": ["arg@5.0.2", "", {}, "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg=="],
"argparse": ["argparse@2.0.1", "", {}, "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="],
@@ -1611,12 +1620,16 @@
"asap": ["asap@2.0.6", "", {}, "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA=="],
+ "assertion-error": ["assertion-error@2.0.1", "", {}, "sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA=="],
+
"ast-types-flow": ["ast-types-flow@0.0.8", "", {}, "sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ=="],
"async-function": ["async-function@1.0.0", "", {}, "sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA=="],
"async-limiter": ["async-limiter@1.0.1", "", {}, "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ=="],
+ "atomically": ["atomically@2.1.1", "", { "dependencies": { "stubborn-fs": "^2.0.0", "when-exit": "^2.1.4" } }, "sha512-P4w9o2dqARji6P7MHprklbfiArZAWvo07yW7qs3pdljb3BWr12FIB7W+p0zJiuiVsUpRO0iZn1kFFcpPegg0tQ=="],
+
"available-typed-arrays": ["available-typed-arrays@1.0.7", "", { "dependencies": { "possible-typed-array-names": "^1.0.0" } }, "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ=="],
"axe-core": ["axe-core@4.11.0", "", {}, "sha512-ilYanEU8vxxBexpJd8cWM4ElSQq4QctCLKih0TSfjIfCQTeyH/6zVrmIJfLPrKTKJRbiG+cfnZbQIjAlJmF1jQ=="],
@@ -1649,23 +1662,27 @@
"babel-preset-jest": ["babel-preset-jest@29.6.3", "", { "dependencies": { "babel-plugin-jest-hoist": "^29.6.3", "babel-preset-current-node-syntax": "^1.0.0" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA=="],
- "balanced-match": ["balanced-match@1.0.2", "", {}, "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="],
+ "balanced-match": ["balanced-match@4.0.4", "", {}, "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA=="],
"base64-js": ["base64-js@1.5.1", "", {}, "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA=="],
"base64id": ["base64id@2.0.0", "", {}, "sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog=="],
- "baseline-browser-mapping": ["baseline-browser-mapping@2.10.9", "", { "bin": { "baseline-browser-mapping": "dist/cli.cjs" } }, "sha512-OZd0e2mU11ClX8+IdXe3r0dbqMEznRiT4TfbhYIbcRPZkqJ7Qwer8ij3GZAmLsRKa+II9V1v5czCkvmHH3XZBg=="],
+ "baseline-browser-mapping": ["baseline-browser-mapping@2.10.11", "", { "bin": { "baseline-browser-mapping": "dist/cli.cjs" } }, "sha512-DAKrHphkJyiGuau/cFieRYhcTFeK/lBuD++C7cZ6KZHbMhBrisoi+EvhQ5RZrIfV5qwsW8kgQ07JIC+MDJRAhg=="],
"better-opn": ["better-opn@3.0.2", "", { "dependencies": { "open": "^8.0.4" } }, "sha512-aVNobHnJqLiUelTaHat9DZ1qM2w0C0Eym4LPI/3JxOnSokGVdsl1T1kN7TFvsEAD8G47A6VKQ0TVHqbBnYMJlQ=="],
+ "bidi-js": ["bidi-js@1.0.3", "", { "dependencies": { "require-from-string": "^2.0.2" } }, "sha512-RKshQI1R3YQ+n9YJz2QQ147P66ELpa1FQEg20Dk8oW9t2KgLbpDLLp9aGZ7y8WHSshDknG0bknqGw5/tyCs5tw=="],
+
"big-integer": ["big-integer@1.6.52", "", {}, "sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg=="],
+ "binary-extensions": ["binary-extensions@2.3.0", "", {}, "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw=="],
+
"bplist-creator": ["bplist-creator@0.1.0", "", { "dependencies": { "stream-buffers": "2.2.x" } }, "sha512-sXaHZicyEEmY86WyueLTQesbeoH/mquvarJaQNbjuOQO+7gbFcDEWqKmcWA4cOTLzFlfgvkiVxolk1k5bBIpmg=="],
"bplist-parser": ["bplist-parser@0.3.2", "", { "dependencies": { "big-integer": "1.6.x" } }, "sha512-apC2+fspHGI3mMKj+dGevkGo/tCqVB8jMb6i+OX+E29p0Iposz07fABkRIfVUPNd5A5VbuOz1bZbnmkKLYF+wQ=="],
- "brace-expansion": ["brace-expansion@1.1.12", "", { "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg=="],
+ "brace-expansion": ["brace-expansion@5.0.4", "", { "dependencies": { "balanced-match": "^4.0.2" } }, "sha512-h+DEnpVvxmfVefa4jFbCf5HdH5YMDXRsmKflpf1pILZWRFlTbJpxeU55nJl4Smt5HQaGzg1o6RHFPJaOqnmBDg=="],
"braces": ["braces@3.0.3", "", { "dependencies": { "fill-range": "^7.1.1" } }, "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA=="],
@@ -1691,9 +1708,9 @@
"caniuse-lite": ["caniuse-lite@1.0.30001751", "", {}, "sha512-A0QJhug0Ly64Ii3eIqHu5X51ebln3k4yTUkY1j8drqpWHVreg/VLijN48cZ1bYPiqOQuqpkIKnzr/Ul8V+p6Cw=="],
- "chalk": ["chalk@4.1.2", "", { "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } }, "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="],
+ "chai": ["chai@6.2.2", "", {}, "sha512-NUPRluOfOiTKBKvWPtSD4PhFvWCqOi0BGStNWs57X9js7XGTprSmFoz5F0tWhR4WPjNeR9jXqdC7/UpSJTnlRg=="],
- "chalk-template": ["chalk-template@1.1.2", "", { "dependencies": { "chalk": "^5.2.0" } }, "sha512-2bxTP2yUH7AJj/VAXfcA+4IcWGdQ87HwBANLt5XxGTeomo8yG0y95N1um9i5StvhT/Bl0/2cARA5v1PpPXUxUA=="],
+ "chalk": ["chalk@5.6.2", "", {}, "sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA=="],
"chardet": ["chardet@2.1.1", "", {}, "sha512-PsezH1rqdV9VvyNhxxOW32/d75r01NY7TQCmOqomRo15ZSOKbpTFVsfjghxo6JloQUCGnH4k1LGu0R4yCLlWQQ=="],
@@ -1715,12 +1732,12 @@
"class-variance-authority": ["class-variance-authority@0.7.1", "", { "dependencies": { "clsx": "^2.1.1" } }, "sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg=="],
- "clear-module": ["clear-module@4.1.2", "", { "dependencies": { "parent-module": "^2.0.0", "resolve-from": "^5.0.0" } }, "sha512-LWAxzHqdHsAZlPlEyJ2Poz6AIs384mPeqLVCru2p0BrP9G/kVGuhNyZYClLO6cXlnuJjzC8xtsJIuMjKqLXoAw=="],
-
"cli-cursor": ["cli-cursor@5.0.0", "", { "dependencies": { "restore-cursor": "^5.0.0" } }, "sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw=="],
"cli-spinners": ["cli-spinners@2.9.2", "", {}, "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg=="],
+ "cli-truncate": ["cli-truncate@5.2.0", "", { "dependencies": { "slice-ansi": "^8.0.0", "string-width": "^8.2.0" } }, "sha512-xRwvIOMGrfOAnM1JYtqQImuaNtDEv9v6oIYAs4LIHwTiKee8uwvIi363igssOC0O5U04i4AlENs79LQLu9tEMw=="],
+
"cli-width": ["cli-width@4.1.0", "", {}, "sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ=="],
"client-only": ["client-only@0.0.1", "", {}, "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA=="],
@@ -1755,6 +1772,8 @@
"concat-map": ["concat-map@0.0.1", "", {}, "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg=="],
+ "conf": ["conf@15.1.0", "", { "dependencies": { "ajv": "^8.17.1", "ajv-formats": "^3.0.1", "atomically": "^2.0.3", "debounce-fn": "^6.0.0", "dot-prop": "^10.0.0", "env-paths": "^3.0.0", "json-schema-typed": "^8.0.1", "semver": "^7.7.2", "uint8array-extras": "^1.5.0" } }, "sha512-Uy5YN9KEu0WWDaZAVJ5FAmZoaJt9rdK6kH+utItPyGsCqCgaTKkrmZx3zoE0/3q6S3bcp3Ihkk+ZqPxWxFK5og=="],
+
"confbox": ["confbox@0.2.2", "", {}, "sha512-1NB+BKqhtNipMsov4xI/NnhCKp9XG9NamYp5PVm9klAT0fsrNPjaFICsCFhNhwZJKNh7zB/3q8qXz0E9oaMNtQ=="],
"connect": ["connect@3.7.0", "", { "dependencies": { "debug": "2.6.9", "finalhandler": "1.1.2", "parseurl": "~1.3.3", "utils-merge": "1.0.1" } }, "sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ=="],
@@ -1763,7 +1782,9 @@
"convert-source-map": ["convert-source-map@2.0.0", "", {}, "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg=="],
- "convex": ["convex@1.34.0", "", { "dependencies": { "esbuild": "0.27.0", "prettier": "^3.0.0", "ws": "8.18.0" }, "peerDependencies": { "@auth0/auth0-react": "^2.0.1", "@clerk/clerk-react": "^4.12.8 || ^5.0.0", "react": "^18.0.0 || ^19.0.0-0 || ^19.0.0" }, "optionalPeers": ["@auth0/auth0-react", "@clerk/clerk-react", "react"], "bin": { "convex": "bin/main.js" } }, "sha512-TbC509Z4urZMChZR2aLPgalQ8gMhAYSz2VMxaYsCvba8YqB0Uxma7zWnXwRn7aEGXuA8ro5/uHgD1IJ0HhYYPg=="],
+ "convex": ["convex@1.34.1", "", { "dependencies": { "esbuild": "0.27.0", "prettier": "^3.0.0", "ws": "8.18.0" }, "peerDependencies": { "@auth0/auth0-react": "^2.0.1", "@clerk/clerk-react": "^4.12.8 || ^5.0.0", "react": "^18.0.0 || ^19.0.0-0 || ^19.0.0" }, "optionalPeers": ["@auth0/auth0-react", "@clerk/clerk-react", "react"], "bin": { "convex": "bin/main.js" } }, "sha512-ooyFnZVVq0u6b5zt0Ptq8QB2ixhf/2vXe+PIcUtdtrs0lq/TwpkmmruHdqkFmWgMd6N+Tmfy8AGkz6QnZUYZBA=="],
+
+ "convex-test": ["convex-test@0.0.53", "", { "peerDependencies": { "convex": "^1.32.0" } }, "sha512-bouZQTnTvZi8IHljHL++yClj1vcV+/9ZxEcd8JZz7RDxOfPkRKrkMgkk/xlX4M1EAiwcEJPNiQE7VJFvDM3lCQ=="],
"cookie": ["cookie@1.0.2", "", {}, "sha512-9Kr/j4O16ISv8zBBhJoi4bXOYNTkFLOqSL3UDB0njXxCXNezjeyVrJyGOWtgfs/q2km1gwBcfH8q1yEGoMYunA=="],
@@ -1779,27 +1800,13 @@
"cross-spawn": ["cross-spawn@7.0.6", "", { "dependencies": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", "which": "^2.0.1" } }, "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA=="],
- "cspell": ["cspell@8.19.4", "", { "dependencies": { "@cspell/cspell-json-reporter": "8.19.4", "@cspell/cspell-pipe": "8.19.4", "@cspell/cspell-types": "8.19.4", "@cspell/dynamic-import": "8.19.4", "@cspell/url": "8.19.4", "chalk": "^5.4.1", "chalk-template": "^1.1.0", "commander": "^13.1.0", "cspell-dictionary": "8.19.4", "cspell-gitignore": "8.19.4", "cspell-glob": "8.19.4", "cspell-io": "8.19.4", "cspell-lib": "8.19.4", "fast-json-stable-stringify": "^2.1.0", "file-entry-cache": "^9.1.0", "semver": "^7.7.1", "tinyglobby": "^0.2.13" }, "bin": { "cspell": "bin.mjs", "cspell-esm": "bin.mjs" } }, "sha512-toaLrLj3usWY0Bvdi661zMmpKW2DVLAG3tcwkAv4JBTisdIRn15kN/qZDrhSieUEhVgJgZJDH4UKRiq29mIFxA=="],
-
- "cspell-config-lib": ["cspell-config-lib@8.19.4", "", { "dependencies": { "@cspell/cspell-types": "8.19.4", "comment-json": "^4.2.5", "yaml": "^2.7.1" } }, "sha512-LtFNZEWVrnpjiTNgEDsVN05UqhhJ1iA0HnTv4jsascPehlaUYVoyucgNbFeRs6UMaClJnqR0qT9lnPX+KO1OLg=="],
-
- "cspell-dictionary": ["cspell-dictionary@8.19.4", "", { "dependencies": { "@cspell/cspell-pipe": "8.19.4", "@cspell/cspell-types": "8.19.4", "cspell-trie-lib": "8.19.4", "fast-equals": "^5.2.2" } }, "sha512-lr8uIm7Wub8ToRXO9f6f7in429P1Egm3I+Ps3ZGfWpwLTCUBnHvJdNF/kQqF7PL0Lw6acXcjVWFYT7l2Wdst2g=="],
-
- "cspell-gitignore": ["cspell-gitignore@8.19.4", "", { "dependencies": { "@cspell/url": "8.19.4", "cspell-glob": "8.19.4", "cspell-io": "8.19.4" }, "bin": { "cspell-gitignore": "bin.mjs" } }, "sha512-KrViypPilNUHWZkMV0SM8P9EQVIyH8HvUqFscI7+cyzWnlglvzqDdV4N5f+Ax5mK+IqR6rTEX8JZbCwIWWV7og=="],
-
- "cspell-glob": ["cspell-glob@8.19.4", "", { "dependencies": { "@cspell/url": "8.19.4", "picomatch": "^4.0.2" } }, "sha512-042uDU+RjAz882w+DXKuYxI2rrgVPfRQDYvIQvUrY1hexH4sHbne78+OMlFjjzOCEAgyjnm1ktWUCCmh08pQUw=="],
-
- "cspell-grammar": ["cspell-grammar@8.19.4", "", { "dependencies": { "@cspell/cspell-pipe": "8.19.4", "@cspell/cspell-types": "8.19.4" }, "bin": { "cspell-grammar": "bin.mjs" } }, "sha512-lzWgZYTu/L7DNOHjxuKf8H7DCXvraHMKxtFObf8bAzgT+aBmey5fW2LviXUkZ2Lb2R0qQY+TJ5VIGoEjNf55ow=="],
-
- "cspell-io": ["cspell-io@8.19.4", "", { "dependencies": { "@cspell/cspell-service-bus": "8.19.4", "@cspell/url": "8.19.4" } }, "sha512-W48egJqZ2saEhPWf5ftyighvm4mztxEOi45ILsKgFikXcWFs0H0/hLwqVFeDurgELSzprr12b6dXsr67dV8amg=="],
-
- "cspell-lib": ["cspell-lib@8.19.4", "", { "dependencies": { "@cspell/cspell-bundled-dicts": "8.19.4", "@cspell/cspell-pipe": "8.19.4", "@cspell/cspell-resolver": "8.19.4", "@cspell/cspell-types": "8.19.4", "@cspell/dynamic-import": "8.19.4", "@cspell/filetypes": "8.19.4", "@cspell/strong-weak-map": "8.19.4", "@cspell/url": "8.19.4", "clear-module": "^4.1.2", "comment-json": "^4.2.5", "cspell-config-lib": "8.19.4", "cspell-dictionary": "8.19.4", "cspell-glob": "8.19.4", "cspell-grammar": "8.19.4", "cspell-io": "8.19.4", "cspell-trie-lib": "8.19.4", "env-paths": "^3.0.0", "fast-equals": "^5.2.2", "gensequence": "^7.0.0", "import-fresh": "^3.3.1", "resolve-from": "^5.0.0", "vscode-languageserver-textdocument": "^1.0.12", "vscode-uri": "^3.1.0", "xdg-basedir": "^5.1.0" } }, "sha512-NwfdCCYtIBNQuZcoMlMmL3HSv2olXNErMi/aOTI9BBAjvCHjhgX5hbHySMZ0NFNynnN+Mlbu5kooJ5asZeB3KA=="],
-
- "cspell-trie-lib": ["cspell-trie-lib@8.19.4", "", { "dependencies": { "@cspell/cspell-pipe": "8.19.4", "@cspell/cspell-types": "8.19.4", "gensequence": "^7.0.0" } }, "sha512-yIPlmGSP3tT3j8Nmu+7CNpkPh/gBO2ovdnqNmZV+LNtQmVxqFd2fH7XvR1TKjQyctSH1ip0P5uIdJmzY1uhaYg=="],
-
"css-in-js-utils": ["css-in-js-utils@3.1.0", "", { "dependencies": { "hyphenate-style-name": "^1.0.3" } }, "sha512-fJAcud6B3rRu+KHYk+Bwf+WFL2MDCJJ1XG9x137tJQ0xYxor7XziQtuGFbWNdqrvF4Tk26O3H73nfVqXt/fW1A=="],
- "csstype": ["csstype@3.1.3", "", {}, "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw=="],
+ "css-tree": ["css-tree@3.2.1", "", { "dependencies": { "mdn-data": "2.27.1", "source-map-js": "^1.2.1" } }, "sha512-X7sjQzceUhu1u7Y/ylrRZFU2FS6LRiFVp6rKLPg23y3x3c3DOKAwuXGDp+PAGjh6CSnCjYeAul8pcT8bAl+lSA=="],
+
+ "css.escape": ["css.escape@1.5.1", "", {}, "sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg=="],
+
+ "csstype": ["csstype@3.2.3", "", {}, "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ=="],
"d3-array": ["d3-array@3.2.4", "", { "dependencies": { "internmap": "1 - 2" } }, "sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg=="],
@@ -1825,6 +1832,8 @@
"damerau-levenshtein": ["damerau-levenshtein@1.0.8", "", {}, "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA=="],
+ "data-urls": ["data-urls@7.0.0", "", { "dependencies": { "whatwg-mimetype": "^5.0.0", "whatwg-url": "^16.0.0" } }, "sha512-23XHcCF+coGYevirZceTVD7NdJOqVn+49IHyxgszm+JIiHLoB2TkmPtsYkNWT1pvRSGkc35L6NHs0yHkN2SumA=="],
+
"data-view-buffer": ["data-view-buffer@1.0.2", "", { "dependencies": { "call-bound": "^1.0.3", "es-errors": "^1.3.0", "is-data-view": "^1.0.2" } }, "sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ=="],
"data-view-byte-length": ["data-view-byte-length@1.0.2", "", { "dependencies": { "call-bound": "^1.0.3", "es-errors": "^1.3.0", "is-data-view": "^1.0.2" } }, "sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ=="],
@@ -1837,8 +1846,12 @@
"debounce": ["debounce@2.2.0", "", {}, "sha512-Xks6RUDLZFdz8LIdR6q0MTH44k7FikOmnh5xkSjMig6ch45afc8sjTjRQf3P6ax8dMgcQrYO/AR2RGWURrruqw=="],
+ "debounce-fn": ["debounce-fn@6.0.0", "", { "dependencies": { "mimic-function": "^5.0.0" } }, "sha512-rBMW+F2TXryBwB54Q0d8drNEI+TfoS9JpNTAoVpukbWEhjXQq4rySFYLaqXMFXwdv61Zb2OHtj5bviSoimqxRQ=="],
+
"debug": ["debug@4.4.3", "", { "dependencies": { "ms": "^2.1.3" } }, "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA=="],
+ "decimal.js": ["decimal.js@10.6.0", "", {}, "sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg=="],
+
"decimal.js-light": ["decimal.js-light@2.5.1", "", {}, "sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg=="],
"decode-uri-component": ["decode-uri-component@0.2.2", "", {}, "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ=="],
@@ -1859,6 +1872,8 @@
"depd": ["depd@2.0.0", "", {}, "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw=="],
+ "dequal": ["dequal@2.0.3", "", {}, "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA=="],
+
"destroy": ["destroy@1.2.0", "", {}, "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg=="],
"detect-libc": ["detect-libc@2.1.2", "", {}, "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ=="],
@@ -1867,6 +1882,8 @@
"doctrine": ["doctrine@2.1.0", "", { "dependencies": { "esutils": "^2.0.2" } }, "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw=="],
+ "dom-accessibility-api": ["dom-accessibility-api@0.6.3", "", {}, "sha512-7ZgogeTnjuHbo+ct10G9Ffp0mif17idi0IyWNVA/wcwcm7NPOD/WEHVP3n7n3MhXqxoIYm8d6MuZohYWIZ4T3w=="],
+
"dom-serializer": ["dom-serializer@2.0.0", "", { "dependencies": { "domelementtype": "^2.3.0", "domhandler": "^5.0.2", "entities": "^4.2.0" } }, "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg=="],
"domelementtype": ["domelementtype@2.3.0", "", {}, "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw=="],
@@ -1875,6 +1892,8 @@
"domutils": ["domutils@3.2.2", "", { "dependencies": { "dom-serializer": "^2.0.0", "domelementtype": "^2.3.0", "domhandler": "^5.0.3" } }, "sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw=="],
+ "dot-prop": ["dot-prop@10.1.0", "", { "dependencies": { "type-fest": "^5.0.0" } }, "sha512-MVUtAugQMOff5RnBy2d9N31iG0lNwg1qAoAOn7pOK5wf94WIaE3My2p3uwTQuvS2AcqchkcR3bHByjaM0mmi7Q=="],
+
"dotenv": ["dotenv@17.2.3", "", {}, "sha512-JVUnt+DUIzu87TABbhPmNfVdBDt18BLOWjMUFJMSi/Qqg7NTYtabbvSNJGOJ7afbRuv9D/lngizHtP7QyLQ+9w=="],
"dotenv-cli": ["dotenv-cli@11.0.0", "", { "dependencies": { "cross-spawn": "^7.0.6", "dotenv": "^17.1.0", "dotenv-expand": "^12.0.0", "minimist": "^1.2.6" }, "bin": { "dotenv": "cli.js" } }, "sha512-r5pA8idbk7GFWuHEU7trSTflWcdBpQEK+Aw17UrSHjS6CReuhrrPcyC3zcQBPQvhArRHnBo/h6eLH1fkCvNlww=="],
@@ -1883,8 +1902,6 @@
"dunder-proto": ["dunder-proto@1.0.1", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.1", "es-errors": "^1.3.0", "gopd": "^1.2.0" } }, "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A=="],
- "eastasianwidth": ["eastasianwidth@0.2.0", "", {}, "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA=="],
-
"ee-first": ["ee-first@1.1.1", "", {}, "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow=="],
"electron-to-chromium": ["electron-to-chromium@1.5.243", "", {}, "sha512-ZCphxFW3Q1TVhcgS9blfut1PX8lusVi2SvXQgmEEnK4TCmE1JhH2JkjJN+DNt0pJJwfBri5AROBnz2b/C+YU9g=="],
@@ -1903,14 +1920,16 @@
"engine.io-parser": ["engine.io-parser@5.2.3", "", {}, "sha512-HqD3yTBfnBxIrbnM1DoD6Pcq8NECnh8d4As1Qgh0z5Gg3jRRIqijury0CL3ghu/edArpUYiYqQiDUQBIs4np3Q=="],
- "enhanced-resolve": ["enhanced-resolve@5.18.3", "", { "dependencies": { "graceful-fs": "^4.2.4", "tapable": "^2.2.0" } }, "sha512-d4lC8xfavMeBjzGr2vECC3fsGXziXZQyJxD868h2M/mBI3PwAuODxAkLkq5HYuvrPYcUtiLzsTo8U3PgX3Ocww=="],
+ "enhanced-resolve": ["enhanced-resolve@5.20.1", "", { "dependencies": { "graceful-fs": "^4.2.4", "tapable": "^2.3.0" } }, "sha512-Qohcme7V1inbAfvjItgw0EaxVX5q2rdVEZHRBrEQdRZTssLDGsL8Lwrznl8oQ/6kuTJONLaDcGjkNP247XEhcA=="],
- "entities": ["entities@4.5.0", "", {}, "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw=="],
+ "entities": ["entities@7.0.1", "", {}, "sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA=="],
"env-editor": ["env-editor@0.4.2", "", {}, "sha512-ObFo8v4rQJAE59M69QzwloxPZtd33TpYEIjtKD1rrFDcM1Gd7IkDxEBU+HriziN6HSHQnBJi8Dmy+JWkav5HKA=="],
"env-paths": ["env-paths@3.0.0", "", {}, "sha512-dtJUTepzMW3Lm/NPxRf3wP4642UWhjL2sQxc+ym2YMj1m/H2zDNQOlezafzkHwn6sMstjHTwG6iQQsctDW/b1A=="],
+ "environment": ["environment@1.1.0", "", {}, "sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q=="],
+
"error-stack-parser": ["error-stack-parser@2.1.4", "", { "dependencies": { "stackframe": "^1.3.4" } }, "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ=="],
"es-abstract": ["es-abstract@1.24.0", "", { "dependencies": { "array-buffer-byte-length": "^1.0.2", "arraybuffer.prototype.slice": "^1.0.4", "available-typed-arrays": "^1.0.7", "call-bind": "^1.0.8", "call-bound": "^1.0.4", "data-view-buffer": "^1.0.2", "data-view-byte-length": "^1.0.2", "data-view-byte-offset": "^1.0.1", "es-define-property": "^1.0.1", "es-errors": "^1.3.0", "es-object-atoms": "^1.1.1", "es-set-tostringtag": "^2.1.0", "es-to-primitive": "^1.3.0", "function.prototype.name": "^1.1.8", "get-intrinsic": "^1.3.0", "get-proto": "^1.0.1", "get-symbol-description": "^1.1.0", "globalthis": "^1.0.4", "gopd": "^1.2.0", "has-property-descriptors": "^1.0.2", "has-proto": "^1.2.0", "has-symbols": "^1.1.0", "hasown": "^2.0.2", "internal-slot": "^1.1.0", "is-array-buffer": "^3.0.5", "is-callable": "^1.2.7", "is-data-view": "^1.0.2", "is-negative-zero": "^2.0.3", "is-regex": "^1.2.1", "is-set": "^2.0.3", "is-shared-array-buffer": "^1.0.4", "is-string": "^1.1.1", "is-typed-array": "^1.1.15", "is-weakref": "^1.1.1", "math-intrinsics": "^1.1.0", "object-inspect": "^1.13.4", "object-keys": "^1.1.1", "object.assign": "^4.1.7", "own-keys": "^1.0.1", "regexp.prototype.flags": "^1.5.4", "safe-array-concat": "^1.1.3", "safe-push-apply": "^1.0.0", "safe-regex-test": "^1.1.0", "set-proto": "^1.0.0", "stop-iteration-iterator": "^1.1.0", "string.prototype.trim": "^1.2.10", "string.prototype.trimend": "^1.0.9", "string.prototype.trimstart": "^1.0.8", "typed-array-buffer": "^1.0.3", "typed-array-byte-length": "^1.0.3", "typed-array-byte-offset": "^1.0.4", "typed-array-length": "^1.0.7", "unbox-primitive": "^1.1.0", "which-typed-array": "^1.1.19" } }, "sha512-WSzPgsdLtTcQwm4CROfS5ju2Wa1QQcVeT37jFjYzdFz1r9ahadC8B8/a4qxJxM+09F18iumCdRmlr96ZYkQvEg=="],
@@ -1921,7 +1940,7 @@
"es-iterator-helpers": ["es-iterator-helpers@1.2.1", "", { "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.3", "define-properties": "^1.2.1", "es-abstract": "^1.23.6", "es-errors": "^1.3.0", "es-set-tostringtag": "^2.0.3", "function-bind": "^1.1.2", "get-intrinsic": "^1.2.6", "globalthis": "^1.0.4", "gopd": "^1.2.0", "has-property-descriptors": "^1.0.2", "has-proto": "^1.2.0", "has-symbols": "^1.1.0", "internal-slot": "^1.1.0", "iterator.prototype": "^1.1.4", "safe-array-concat": "^1.1.3" } }, "sha512-uDn+FE1yrDzyC0pCo961B2IHbdM8y/ACZsKD4dG6WqrjV53BADjwa7D+1aom2rsNVfLyDgU/eigvlJGJ08OQ4w=="],
- "es-module-lexer": ["es-module-lexer@1.7.0", "", {}, "sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA=="],
+ "es-module-lexer": ["es-module-lexer@2.1.0", "", {}, "sha512-n27zTYMjYu1aj4MjCWzSP7G9r75utsaoc8m61weK+W8JMBGGQybd43GstCXZ3WNmSFtGT9wi59qQTW6mhTR5LQ=="],
"es-object-atoms": ["es-object-atoms@1.1.1", "", { "dependencies": { "es-errors": "^1.3.0" } }, "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA=="],
@@ -1941,7 +1960,7 @@
"escape-string-regexp": ["escape-string-regexp@4.0.0", "", {}, "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA=="],
- "eslint": ["eslint@9.39.4", "", { "dependencies": { "@eslint-community/eslint-utils": "^4.8.0", "@eslint-community/regexpp": "^4.12.1", "@eslint/config-array": "^0.21.2", "@eslint/config-helpers": "^0.4.2", "@eslint/core": "^0.17.0", "@eslint/eslintrc": "^3.3.5", "@eslint/js": "9.39.4", "@eslint/plugin-kit": "^0.4.1", "@humanfs/node": "^0.16.6", "@humanwhocodes/module-importer": "^1.0.1", "@humanwhocodes/retry": "^0.4.2", "@types/estree": "^1.0.6", "ajv": "^6.14.0", "chalk": "^4.0.0", "cross-spawn": "^7.0.6", "debug": "^4.3.2", "escape-string-regexp": "^4.0.0", "eslint-scope": "^8.4.0", "eslint-visitor-keys": "^4.2.1", "espree": "^10.4.0", "esquery": "^1.5.0", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", "file-entry-cache": "^8.0.0", "find-up": "^5.0.0", "glob-parent": "^6.0.2", "ignore": "^5.2.0", "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", "json-stable-stringify-without-jsonify": "^1.0.1", "lodash.merge": "^4.6.2", "minimatch": "^3.1.5", "natural-compare": "^1.4.0", "optionator": "^0.9.3" }, "peerDependencies": { "jiti": "*" }, "optionalPeers": ["jiti"], "bin": { "eslint": "bin/eslint.js" } }, "sha512-XoMjdBOwe/esVgEvLmNsD3IRHkm7fbKIUGvrleloJXUZgDHig2IPWNniv+GwjyJXzuNqVjlr5+4yVUZjycJwfQ=="],
+ "eslint": ["eslint@10.1.0", "", { "dependencies": { "@eslint-community/eslint-utils": "^4.8.0", "@eslint-community/regexpp": "^4.12.2", "@eslint/config-array": "^0.23.3", "@eslint/config-helpers": "^0.5.3", "@eslint/core": "^1.1.1", "@eslint/plugin-kit": "^0.6.1", "@humanfs/node": "^0.16.6", "@humanwhocodes/module-importer": "^1.0.1", "@humanwhocodes/retry": "^0.4.2", "@types/estree": "^1.0.6", "ajv": "^6.14.0", "cross-spawn": "^7.0.6", "debug": "^4.3.2", "escape-string-regexp": "^4.0.0", "eslint-scope": "^9.1.2", "eslint-visitor-keys": "^5.0.1", "espree": "^11.2.0", "esquery": "^1.7.0", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", "file-entry-cache": "^8.0.0", "find-up": "^5.0.0", "glob-parent": "^6.0.2", "ignore": "^5.2.0", "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", "json-stable-stringify-without-jsonify": "^1.0.1", "minimatch": "^10.2.4", "natural-compare": "^1.4.0", "optionator": "^0.9.3" }, "peerDependencies": { "jiti": "*" }, "optionalPeers": ["jiti"], "bin": { "eslint": "bin/eslint.js" } }, "sha512-S9jlY/ELKEUwwQnqWDO+f+m6sercqOPSqXM5Go94l7DOmxHVDgmSFGWEzeE/gwgTAr0W103BWt0QLe/7mabIvA=="],
"eslint-import-resolver-node": ["eslint-import-resolver-node@0.3.9", "", { "dependencies": { "debug": "^3.2.7", "is-core-module": "^2.13.0", "resolve": "^1.22.4" } }, "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g=="],
@@ -1957,23 +1976,23 @@
"eslint-plugin-react-hooks": ["eslint-plugin-react-hooks@7.0.1", "", { "dependencies": { "@babel/core": "^7.24.4", "@babel/parser": "^7.24.4", "hermes-parser": "^0.25.1", "zod": "^3.25.0 || ^4.0.0", "zod-validation-error": "^3.5.0 || ^4.0.0" }, "peerDependencies": { "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0" } }, "sha512-O0d0m04evaNzEPoSW+59Mezf8Qt0InfgGIBJnpC0h3NH/WjUAR7BIKUfysC6todmtiZ/A0oUVS8Gce0WhBrHsA=="],
- "eslint-plugin-turbo": ["eslint-plugin-turbo@2.5.8", "", { "dependencies": { "dotenv": "16.0.3" }, "peerDependencies": { "eslint": ">6.6.0", "turbo": ">2.0.0" } }, "sha512-bVjx4vTH0oTKIyQ7EGFAXnuhZMrKIfu17qlex/dps7eScPnGQLJ3r1/nFq80l8xA+8oYjsSirSQ2tXOKbz3kEw=="],
+ "eslint-plugin-turbo": ["eslint-plugin-turbo@2.8.20", "", { "dependencies": { "dotenv": "16.0.3" }, "peerDependencies": { "eslint": ">6.6.0", "turbo": ">2.0.0" } }, "sha512-sMDremg73XbX+Imh7iDRS3TAro5jIf7CdzSqrT50wCGhClbiUvmWcLomnX+ldUbfTy+OvtqOeePvTivJMR87eQ=="],
- "eslint-scope": ["eslint-scope@8.4.0", "", { "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^5.2.0" } }, "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg=="],
+ "eslint-scope": ["eslint-scope@9.1.2", "", { "dependencies": { "@types/esrecurse": "^4.3.1", "@types/estree": "^1.0.8", "esrecurse": "^4.3.0", "estraverse": "^5.2.0" } }, "sha512-xS90H51cKw0jltxmvmHy2Iai1LIqrfbw57b79w/J7MfvDfkIkFZ+kj6zC3BjtUwh150HsSSdxXZcsuv72miDFQ=="],
- "eslint-visitor-keys": ["eslint-visitor-keys@4.2.1", "", {}, "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ=="],
+ "eslint-visitor-keys": ["eslint-visitor-keys@5.0.1", "", {}, "sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA=="],
- "espree": ["espree@10.4.0", "", { "dependencies": { "acorn": "^8.15.0", "acorn-jsx": "^5.3.2", "eslint-visitor-keys": "^4.2.1" } }, "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ=="],
+ "espree": ["espree@11.2.0", "", { "dependencies": { "acorn": "^8.16.0", "acorn-jsx": "^5.3.2", "eslint-visitor-keys": "^5.0.1" } }, "sha512-7p3DrVEIopW1B1avAGLuCSh1jubc01H2JHc8B4qqGblmg5gI9yumBgACjWo4JlIc04ufug4xJ3SQI8HkS/Rgzw=="],
"esprima": ["esprima@4.0.1", "", { "bin": { "esparse": "./bin/esparse.js", "esvalidate": "./bin/esvalidate.js" } }, "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A=="],
- "esquery": ["esquery@1.6.0", "", { "dependencies": { "estraverse": "^5.1.0" } }, "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg=="],
+ "esquery": ["esquery@1.7.0", "", { "dependencies": { "estraverse": "^5.1.0" } }, "sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g=="],
"esrecurse": ["esrecurse@4.3.0", "", { "dependencies": { "estraverse": "^5.2.0" } }, "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag=="],
"estraverse": ["estraverse@5.3.0", "", {}, "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA=="],
- "estree-walker": ["estree-walker@2.0.2", "", {}, "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w=="],
+ "estree-walker": ["estree-walker@3.0.3", "", { "dependencies": { "@types/estree": "^1.0.0" } }, "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g=="],
"esutils": ["esutils@2.0.3", "", {}, "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g=="],
@@ -1985,6 +2004,8 @@
"events": ["events@3.3.0", "", {}, "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q=="],
+ "expect-type": ["expect-type@1.3.0", "", {}, "sha512-knvyeauYhqjOYvQ66MznSMs83wmHrCycNEN6Ao+2AeYEfxUIkuiVxdEa1qlGEPK+We3n0THiDciYSsCcgW/DoA=="],
+
"expo": ["expo@54.0.33", "", { "dependencies": { "@babel/runtime": "^7.20.0", "@expo/cli": "54.0.23", "@expo/config": "~12.0.13", "@expo/config-plugins": "~54.0.4", "@expo/devtools": "0.1.8", "@expo/fingerprint": "0.15.4", "@expo/metro": "~54.2.0", "@expo/metro-config": "54.0.14", "@expo/vector-icons": "^15.0.3", "@ungap/structured-clone": "^1.3.0", "babel-preset-expo": "~54.0.10", "expo-asset": "~12.0.12", "expo-constants": "~18.0.13", "expo-file-system": "~19.0.21", "expo-font": "~14.0.11", "expo-keep-awake": "~15.0.8", "expo-modules-autolinking": "3.0.24", "expo-modules-core": "3.0.29", "pretty-format": "^29.7.0", "react-refresh": "^0.14.2", "whatwg-url-without-unicode": "8.0.0-3" }, "peerDependencies": { "@expo/dom-webview": "*", "@expo/metro-runtime": "*", "react": "*", "react-native": "*", "react-native-webview": "*" }, "optionalPeers": ["@expo/dom-webview", "@expo/metro-runtime", "react-native-webview"], "bin": { "expo": "bin/cli", "fingerprint": "bin/fingerprint", "expo-modules-autolinking": "bin/autolinking" } }, "sha512-3yOEfAKqo+gqHcV8vKcnq0uA5zxlohnhA3fu4G43likN8ct5ZZ3LjAh9wDdKteEkoad3tFPvwxmXW711S5OHUw=="],
"expo-apple-authentication": ["expo-apple-authentication@8.0.8", "", { "peerDependencies": { "expo": "*", "react-native": "*" } }, "sha512-TwCHWXYR1kS0zaeV7QZKLWYluxsvqL31LFJubzK30njZqeWoWO89HZ8nZVaeXbFV1LrArKsze4BmMb+94wS0AQ=="],
@@ -2045,8 +2066,6 @@
"fast-deep-equal": ["fast-deep-equal@3.1.3", "", {}, "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="],
- "fast-equals": ["fast-equals@5.3.2", "", {}, "sha512-6rxyATwPCkaFIL3JLqw8qXqMpIZ942pTX/tbQFkRsDGblS8tNGtlUauA/+mt6RUfqn/4MoEr+WDkYoIQbibWuQ=="],
-
"fast-glob": ["fast-glob@3.3.1", "", { "dependencies": { "@nodelib/fs.stat": "^2.0.2", "@nodelib/fs.walk": "^1.2.3", "glob-parent": "^5.1.2", "merge2": "^1.3.0", "micromatch": "^4.0.4" } }, "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg=="],
"fast-json-stable-stringify": ["fast-json-stable-stringify@2.1.0", "", {}, "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="],
@@ -2085,10 +2104,10 @@
"for-each": ["for-each@0.3.5", "", { "dependencies": { "is-callable": "^1.2.7" } }, "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg=="],
- "foreground-child": ["foreground-child@3.3.1", "", { "dependencies": { "cross-spawn": "^7.0.6", "signal-exit": "^4.0.1" } }, "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw=="],
-
"forwarded-parse": ["forwarded-parse@2.1.2", "", {}, "sha512-alTFZZQDKMporBH77856pXgzhEzaUVmLCDk+egLgIgHst3Tpndzz8MnKe+GzRJRfvVdn69HhpW7cmXzvtLvJAw=="],
+ "framer-motion": ["framer-motion@12.38.0", "", { "dependencies": { "motion-dom": "^12.38.0", "motion-utils": "^12.36.0", "tslib": "^2.4.0" }, "peerDependencies": { "@emotion/is-prop-valid": "*", "react": "^18.0.0 || ^19.0.0", "react-dom": "^18.0.0 || ^19.0.0" }, "optionalPeers": ["@emotion/is-prop-valid", "react", "react-dom"] }, "sha512-rFYkY/pigbcswl1XQSb7q424kSTQ8q6eAC+YUsSKooHQYuLdzdHjrt6uxUC+PRAO++q5IS7+TamgIw1AphxR+g=="],
+
"freeport-async": ["freeport-async@2.0.0", "", {}, "sha512-K7od3Uw45AJg00XUmy15+Hae2hOcgKcmN3/EF6Y7i01O0gaqiRx8sUSpsb9+BRNL8RPBrhzPsVfy8q9ADlJuWQ=="],
"fresh": ["fresh@0.5.2", "", {}, "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q=="],
@@ -2107,8 +2126,6 @@
"generator-function": ["generator-function@2.0.1", "", {}, "sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g=="],
- "gensequence": ["gensequence@7.0.0", "", {}, "sha512-47Frx13aZh01afHJTB3zTtKIlFI6vWY+MYCN9Qpew6i52rfKjnhCF/l1YlC8UmEMvvntZZ6z4PiCcmyuedR2aQ=="],
-
"gensync": ["gensync@1.0.0-beta.2", "", {}, "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg=="],
"get-caller-file": ["get-caller-file@2.0.5", "", {}, "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg=="],
@@ -2125,17 +2142,17 @@
"get-symbol-description": ["get-symbol-description@1.1.0", "", { "dependencies": { "call-bound": "^1.0.3", "es-errors": "^1.3.0", "get-intrinsic": "^1.2.6" } }, "sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg=="],
+ "get-tsconfig": ["get-tsconfig@4.8.1", "", { "dependencies": { "resolve-pkg-maps": "^1.0.0" } }, "sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg=="],
+
"getenv": ["getenv@2.0.0", "", {}, "sha512-VilgtJj/ALgGY77fiLam5iD336eSWi96Q15JSAG1zi8NRBysm3LXKdGnHb4m5cuyxvOLQQKWpBZAT6ni4FI2iQ=="],
- "glob": ["glob@11.0.3", "", { "dependencies": { "foreground-child": "^3.3.1", "jackspeak": "^4.1.1", "minimatch": "^10.0.3", "minipass": "^7.1.2", "package-json-from-dist": "^1.0.0", "path-scurry": "^2.0.0" }, "bin": { "glob": "dist/esm/bin.mjs" } }, "sha512-2Nim7dha1KVkaiF4q6Dj+ngPPMdfvLJEOpZk/jKiUAkqKebpGAWQXAq9z1xu9HKu5lWfqw/FASuccEjyznjPaA=="],
+ "glob": ["glob@13.0.6", "", { "dependencies": { "minimatch": "^10.2.2", "minipass": "^7.1.3", "path-scurry": "^2.0.2" } }, "sha512-Wjlyrolmm8uDpm/ogGyXZXb1Z+Ca2B8NbJwqBVg0axK9GbBeoS7yGV6vjXnYdGm6X53iehEuxxbyiKp8QmN4Vw=="],
"glob-parent": ["glob-parent@6.0.2", "", { "dependencies": { "is-glob": "^4.0.3" } }, "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A=="],
"glob-to-regexp": ["glob-to-regexp@0.4.1", "", {}, "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw=="],
- "global-directory": ["global-directory@4.0.1", "", { "dependencies": { "ini": "4.1.1" } }, "sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q=="],
-
- "globals": ["globals@14.0.0", "", {}, "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ=="],
+ "globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="],
"globalthis": ["globalthis@1.0.4", "", { "dependencies": { "define-properties": "^1.2.1", "gopd": "^1.0.1" } }, "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ=="],
@@ -2143,7 +2160,9 @@
"graceful-fs": ["graceful-fs@4.2.11", "", {}, "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ=="],
- "graphemer": ["graphemer@1.4.0", "", {}, "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag=="],
+ "graphql": ["graphql@16.13.2", "", {}, "sha512-5bJ+nf/UCpAjHM8i06fl7eLyVC9iuNAjm9qzkiu2ZGhM0VscSvS6WDPfAwkdkBuoXGM9FJSbKl6wylMwP9Ktig=="],
+
+ "happy-dom": ["happy-dom@20.8.8", "", { "dependencies": { "@types/node": ">=20.0.0", "@types/whatwg-mimetype": "^3.0.2", "@types/ws": "^8.18.1", "entities": "^7.0.1", "whatwg-mimetype": "^3.0.0", "ws": "^8.18.3" } }, "sha512-5/F8wxkNxYtsN0bXfMwIyNLZ9WYsoOYPbmoluqVJqv8KBUbcyKZawJ7uYK4WTX8IHBLYv+VXIwfeNDPy1oKMwQ=="],
"has-bigints": ["has-bigints@1.1.0", "", {}, "sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg=="],
@@ -2167,6 +2186,8 @@
"hosted-git-info": ["hosted-git-info@7.0.2", "", { "dependencies": { "lru-cache": "^10.0.1" } }, "sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w=="],
+ "html-encoding-sniffer": ["html-encoding-sniffer@6.0.0", "", { "dependencies": { "@exodus/bytes": "^1.6.0" } }, "sha512-CV9TW3Y3f8/wT0BRFc1/KAVQ3TUHiXmaAb6VW9vtiMFf7SLoMd1PdAc4W3KFOFETBJUb90KatHqlsZMWV+R9Gg=="],
+
"html-to-text": ["html-to-text@9.0.5", "", { "dependencies": { "@selderee/plugin-htmlparser2": "^0.11.0", "deepmerge": "^4.3.1", "dom-serializer": "^2.0.0", "htmlparser2": "^8.0.2", "selderee": "^0.11.0" } }, "sha512-qY60FjREgVZL03vJU6IfMV4GDjGBIoOyvuFdpBDIX9yTlDw0TjxVBQp+P8NvpdIXNJvfWBTNul7fsAQJq2FNpg=="],
"htmlparser2": ["htmlparser2@8.0.2", "", { "dependencies": { "domelementtype": "^2.3.0", "domhandler": "^5.0.3", "domutils": "^3.0.1", "entities": "^4.4.0" } }, "sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA=="],
@@ -2175,6 +2196,8 @@
"https-proxy-agent": ["https-proxy-agent@5.0.1", "", { "dependencies": { "agent-base": "6", "debug": "4" } }, "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA=="],
+ "husky": ["husky@9.1.7", "", { "bin": { "husky": "bin.js" } }, "sha512-5gs5ytaNjBrh5Ow3zrvdUUY+0VxIuWVL4i9irt6friV+BqdCfmV11CQTWMiBYWHbXhco+J1kHfTOUkePhCDvMA=="],
+
"hyphenate-style-name": ["hyphenate-style-name@1.1.0", "", {}, "sha512-WDC/ui2VVRrz3jOVi+XtjqkDjiVjTtFaAGiW37k6b+ohyQ5wYDOGkvCZa8+H0nx3gyvv0+BST9xuOgIyGQ00gw=="],
"iconv-lite": ["iconv-lite@0.7.2", "", { "dependencies": { "safer-buffer": ">= 2.1.2 < 3.0.0" } }, "sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw=="],
@@ -2187,14 +2210,16 @@
"immer": ["immer@10.2.0", "", {}, "sha512-d/+XTN3zfODyjr89gM3mPq1WNX2B8pYsu7eORitdwyA2sBubnTl3laYlBk4sXY5FUa5qTZGBDPJICVbvqzjlbw=="],
+ "immutable": ["immutable@4.3.8", "", {}, "sha512-d/Ld9aLbKpNwyl0KiM2CT1WYvkitQ1TSvmRtkcV8FKStiDoA7Slzgjmb/1G2yhKM1p0XeNOieaTbFZmU1d3Xuw=="],
+
"import-fresh": ["import-fresh@3.3.1", "", { "dependencies": { "parent-module": "^1.0.0", "resolve-from": "^4.0.0" } }, "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ=="],
"import-in-the-middle": ["import-in-the-middle@3.0.0", "", { "dependencies": { "acorn": "^8.15.0", "acorn-import-attributes": "^1.9.5", "cjs-module-lexer": "^2.2.0", "module-details-from-path": "^1.0.4" } }, "sha512-OnGy+eYT7wVejH2XWgLRgbmzujhhVIATQH0ztIeRilwHBjTeG3pD+XnH3PKX0r9gJ0BuJmJ68q/oh9qgXnNDQg=="],
- "import-meta-resolve": ["import-meta-resolve@4.2.0", "", {}, "sha512-Iqv2fzaTQN28s/FwZAoFq0ZSs/7hMAHJVX+w8PZl3cY19Pxk6jFFalxQoIfW2826i/fDLXv8IiEZRIT0lDuWcg=="],
-
"imurmurhash": ["imurmurhash@0.1.4", "", {}, "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA=="],
+ "indent-string": ["indent-string@4.0.0", "", {}, "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg=="],
+
"inflight": ["inflight@1.0.6", "", { "dependencies": { "once": "^1.3.0", "wrappy": "1" } }, "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA=="],
"inherits": ["inherits@2.0.4", "", {}, "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="],
@@ -2219,6 +2244,8 @@
"is-bigint": ["is-bigint@1.1.0", "", { "dependencies": { "has-bigints": "^1.0.2" } }, "sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ=="],
+ "is-binary-path": ["is-binary-path@2.1.0", "", { "dependencies": { "binary-extensions": "^2.0.0" } }, "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw=="],
+
"is-boolean-object": ["is-boolean-object@1.2.2", "", { "dependencies": { "call-bound": "^1.0.3", "has-tostringtag": "^1.0.2" } }, "sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A=="],
"is-callable": ["is-callable@1.2.7", "", {}, "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA=="],
@@ -2253,6 +2280,8 @@
"is-number-object": ["is-number-object@1.1.1", "", { "dependencies": { "call-bound": "^1.0.3", "has-tostringtag": "^1.0.2" } }, "sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw=="],
+ "is-potential-custom-element-name": ["is-potential-custom-element-name@1.0.1", "", {}, "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ=="],
+
"is-reference": ["is-reference@1.2.1", "", { "dependencies": { "@types/estree": "*" } }, "sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ=="],
"is-regex": ["is-regex@1.2.1", "", { "dependencies": { "call-bound": "^1.0.2", "gopd": "^1.2.0", "has-tostringtag": "^1.0.2", "hasown": "^2.0.2" } }, "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g=="],
@@ -2289,8 +2318,6 @@
"iterator.prototype": ["iterator.prototype@1.1.5", "", { "dependencies": { "define-data-property": "^1.1.4", "es-object-atoms": "^1.0.0", "get-intrinsic": "^1.2.6", "get-proto": "^1.0.0", "has-symbols": "^1.1.0", "set-function-name": "^2.0.2" } }, "sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g=="],
- "jackspeak": ["jackspeak@4.1.1", "", { "dependencies": { "@isaacs/cliui": "^8.0.2" } }, "sha512-zptv57P3GpL+O0I7VdMJNBZCu+BPHVQUk55Ft8/QCJjTVxrnJHuVuX/0Bl2A6/+2oyR/ZMEuFKwmzqqZ/U5nPQ=="],
-
"jest-environment-node": ["jest-environment-node@29.7.0", "", { "dependencies": { "@jest/environment": "^29.7.0", "@jest/fake-timers": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", "jest-mock": "^29.7.0", "jest-util": "^29.7.0" } }, "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw=="],
"jest-get-type": ["jest-get-type@29.6.3", "", {}, "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw=="],
@@ -2321,6 +2348,8 @@
"jsc-safe-url": ["jsc-safe-url@0.2.4", "", {}, "sha512-0wM3YBWtYePOjfyXQH5MWQ8H7sdk5EXSwZvmSLKk2RboVQ2Bu239jycHDz5J/8Blf3K0Qnoy2b6xD+z10MFB+Q=="],
+ "jsdom": ["jsdom@29.1.1", "", { "dependencies": { "@asamuzakjp/css-color": "^5.1.11", "@asamuzakjp/dom-selector": "^7.1.1", "@bramus/specificity": "^2.4.2", "@csstools/css-syntax-patches-for-csstree": "^1.1.3", "@exodus/bytes": "^1.15.0", "css-tree": "^3.2.1", "data-urls": "^7.0.0", "decimal.js": "^10.6.0", "html-encoding-sniffer": "^6.0.0", "is-potential-custom-element-name": "^1.0.1", "lru-cache": "^11.3.5", "parse5": "^8.0.1", "saxes": "^6.0.0", "symbol-tree": "^3.2.4", "tough-cookie": "^6.0.1", "undici": "^7.25.0", "w3c-xmlserializer": "^5.0.0", "webidl-conversions": "^8.0.1", "whatwg-mimetype": "^5.0.0", "whatwg-url": "^16.0.1", "xml-name-validator": "^5.0.0" }, "peerDependencies": { "canvas": "^3.0.0" }, "optionalPeers": ["canvas"] }, "sha512-ECi4Fi2f7BdJtUKTflYRTiaMxIB0O6zfR1fX0GXpUrf6flp8QIYn1UT20YQqdSOfk2dfkCwS8LAFoJDEppNK5Q=="],
+
"jsesc": ["jsesc@3.1.0", "", { "bin": { "jsesc": "bin/jsesc" } }, "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA=="],
"json-buffer": ["json-buffer@3.0.1", "", {}, "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ=="],
@@ -2329,6 +2358,8 @@
"json-schema-traverse": ["json-schema-traverse@0.4.1", "", {}, "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="],
+ "json-schema-typed": ["json-schema-typed@8.0.2", "", {}, "sha512-fQhoXdcvc3V28x7C7BMs4P5+kNlgUURe2jmUT1T//oBRMDrqy1QPelJimwZGo7Hg9VPV3EQV5Bnq4hbFy2vetA=="],
+
"json-stable-stringify-without-jsonify": ["json-stable-stringify-without-jsonify@1.0.1", "", {}, "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw=="],
"json5": ["json5@2.2.3", "", { "bin": { "json5": "lib/cli.js" } }, "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg=="],
@@ -2381,6 +2412,10 @@
"lines-and-columns": ["lines-and-columns@1.2.4", "", {}, "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg=="],
+ "lint-staged": ["lint-staged@17.0.8", "", { "dependencies": { "listr2": "^10.2.1", "picomatch": "^4.0.4", "string-argv": "^0.3.2", "tinyexec": "^1.2.4" }, "optionalDependencies": { "yaml": "^2.9.0" }, "bin": { "lint-staged": "bin/lint-staged.js" } }, "sha512-B2P/d+jVW0UXOQ0MVMLrB/9ydA1P+zz6jYfdrbbEd9ur3S2rcbduFWKiUCC02Sm5hbC8nrm7y24WuYMG54HfxA=="],
+
+ "listr2": ["listr2@10.2.1", "", { "dependencies": { "cli-truncate": "^5.2.0", "eventemitter3": "^5.0.4", "log-update": "^6.1.0", "rfdc": "^1.4.1", "wrap-ansi": "^10.0.0" } }, "sha512-7I5knELsJKTUjXG+A6BkKAiGkW1i25fNa/xlUl9hFtk15WbE9jndA89xu5FzQKrY5llajE1hfZZFMILXkDHk/Q=="],
+
"loader-runner": ["loader-runner@4.3.1", "", {}, "sha512-IWqP2SCPhyVFTBtRcgMHdzlf9ul25NwaFx4wCEH/KjAXuuHY4yNjvPXsBokp8jCB936PyWRaPKUNh8NvylLp2Q=="],
"locate-path": ["locate-path@6.0.0", "", { "dependencies": { "p-locate": "^5.0.0" } }, "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw=="],
@@ -2393,25 +2428,29 @@
"log-symbols": ["log-symbols@7.0.1", "", { "dependencies": { "is-unicode-supported": "^2.0.0", "yoctocolors": "^2.1.1" } }, "sha512-ja1E3yCr9i/0hmBVaM0bfwDjnGy8I/s6PP4DFp+yP+a+mrHO4Rm7DtmnqROTUkHIkqffC84YY7AeqX6oFk0WFg=="],
+ "log-update": ["log-update@6.1.0", "", { "dependencies": { "ansi-escapes": "^7.0.0", "cli-cursor": "^5.0.0", "slice-ansi": "^7.1.0", "strip-ansi": "^7.1.0", "wrap-ansi": "^9.0.0" } }, "sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w=="],
+
"loose-envify": ["loose-envify@1.4.0", "", { "dependencies": { "js-tokens": "^3.0.0 || ^4.0.0" }, "bin": { "loose-envify": "cli.js" } }, "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q=="],
- "lru-cache": ["lru-cache@11.2.2", "", {}, "sha512-F9ODfyqML2coTIsQpSkRHnLSZMtkU8Q+mSfcaIyKwy58u+8k5nvAYeiNhsyMARvzNcXJ9QfWVrcPsC9e9rAxtg=="],
+ "lru-cache": ["lru-cache@11.5.1", "", {}, "sha512-RPimw/7aMdv2oqRrxKwvZXcPfwBrn/JZ2xYcY9Hus/6LaS3VOAKVWKWgNLCFSiOm1ESXinjsDlidVU7JlnCN2A=="],
"lucia": ["lucia@3.2.2", "", { "dependencies": { "@oslojs/crypto": "^1.0.1", "@oslojs/encoding": "^1.1.0" } }, "sha512-P1FlFBGCMPMXu+EGdVD9W4Mjm0DqsusmKgO7Xc33mI5X1bklmsQb0hfzPhXomQr9waWIBDsiOjvr1e6BTaUqpA=="],
"lucide-react": ["lucide-react@0.577.0", "", { "peerDependencies": { "react": "^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0" } }, "sha512-4LjoFv2eEPwYDPg/CUdBJQSDfPyzXCRrVW1X7jrx/trgxnxkHFjnVZINbzvzxjN70dxychOfg+FTYwBiS3pQ5A=="],
+ "lz-string": ["lz-string@1.5.0", "", { "bin": { "lz-string": "bin/bin.js" } }, "sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ=="],
+
"magic-string": ["magic-string@0.30.21", "", { "dependencies": { "@jridgewell/sourcemap-codec": "^1.5.5" } }, "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ=="],
"makeerror": ["makeerror@1.0.12", "", { "dependencies": { "tmpl": "1.0.5" } }, "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg=="],
- "marked": ["marked@7.0.4", "", { "bin": { "marked": "bin/marked.js" } }, "sha512-t8eP0dXRJMtMvBojtkcsA7n48BkauktUKzfkPSCq85ZMTJ0v76Rke4DYz01omYpPTUh4p/f7HePgRo3ebG8+QQ=="],
+ "marked": ["marked@15.0.12", "", { "bin": { "marked": "bin/marked.js" } }, "sha512-8dD6FusOQSrpv9Z1rdNMdlSgQOIP880DHqnohobOmYLElGEqAL/JvxvuxZO16r4HtjTlfPRDC1hbvxC9dPN2nA=="],
"marky": ["marky@1.3.0", "", {}, "sha512-ocnPZQLNpvbedwTy9kNrQEsknEfgvcLMvOtz3sFeWApDq1MXH1TqkCIx58xlpESsfwQOnuBO9beyQuNGzVvuhQ=="],
"math-intrinsics": ["math-intrinsics@1.1.0", "", {}, "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g=="],
- "md-to-react-email": ["md-to-react-email@5.0.5", "", { "dependencies": { "marked": "7.0.4" }, "peerDependencies": { "react": "^18.0 || ^19.0" } }, "sha512-OvAXqwq57uOk+WZqFFNCMZz8yDp8BD3WazW1wAKHUrPbbdr89K9DWS6JXY09vd9xNdPNeurI8DU/X4flcfaD8A=="],
+ "mdn-data": ["mdn-data@2.27.1", "", {}, "sha512-9Yubnt3e8A0OKwxYSXyhLymGW4sCufcLG6VdiDdUGVkPhpqLxlvP5vl1983gQjJl3tqbrM731mjaZaP68AgosQ=="],
"memfs": ["memfs@3.5.3", "", { "dependencies": { "fs-monkey": "^1.0.4" } }, "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw=="],
@@ -2463,11 +2502,13 @@
"mimic-function": ["mimic-function@5.0.1", "", {}, "sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA=="],
- "minimatch": ["minimatch@3.1.5", "", { "dependencies": { "brace-expansion": "^1.1.7" } }, "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w=="],
+ "min-indent": ["min-indent@1.0.1", "", {}, "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg=="],
+
+ "minimatch": ["minimatch@10.2.4", "", { "dependencies": { "brace-expansion": "^5.0.2" } }, "sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg=="],
"minimist": ["minimist@1.2.8", "", {}, "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA=="],
- "minipass": ["minipass@7.1.2", "", {}, "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw=="],
+ "minipass": ["minipass@7.1.3", "", {}, "sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A=="],
"minizlib": ["minizlib@3.1.0", "", { "dependencies": { "minipass": "^7.1.2" } }, "sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw=="],
@@ -2475,6 +2516,12 @@
"module-details-from-path": ["module-details-from-path@1.0.4", "", {}, "sha512-EGWKgxALGMgzvxYF1UyGTy0HXX/2vHLkw6+NvDKW2jypWbHpjQuj4UMcqQWXHERJhVGKikolT06G3bcKe4fi7w=="],
+ "motion": ["motion@12.38.0", "", { "dependencies": { "framer-motion": "^12.38.0", "tslib": "^2.4.0" }, "peerDependencies": { "@emotion/is-prop-valid": "*", "react": "^18.0.0 || ^19.0.0", "react-dom": "^18.0.0 || ^19.0.0" }, "optionalPeers": ["@emotion/is-prop-valid", "react", "react-dom"] }, "sha512-uYfXzeHlgThchzwz5Te47dlv5JOUC7OB4rjJ/7XTUgtBZD8CchMN8qEJ4ZVsUmTyYA44zjV0fBwsiktRuFnn+w=="],
+
+ "motion-dom": ["motion-dom@12.38.0", "", { "dependencies": { "motion-utils": "^12.36.0" } }, "sha512-pdkHLD8QYRp8VfiNLb8xIBJis1byQ9gPT3Jnh2jqfFtAsWUA3dEepDlsWe/xMpO8McV+VdpKVcp+E+TGJEtOoA=="],
+
+ "motion-utils": ["motion-utils@12.36.0", "", {}, "sha512-eHWisygbiwVvf6PZ1vhaHCLamvkSbPIeAYxWUuL3a2PD/TROgE7FvfHWTIH4vMl798QLfMw15nRqIaRDXTlYRg=="],
+
"ms": ["ms@2.1.3", "", {}, "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="],
"mute-stream": ["mute-stream@2.0.0", "", {}, "sha512-WWdIxpyjEn+FhQJQQv9aQAYlHoNVdzIzUySNV1gHUPDSdZJ3yZn7pAAbQcV7B56Mvu881q9FZV+0Vx2xC44VWA=="],
@@ -2493,7 +2540,7 @@
"nested-error-stacks": ["nested-error-stacks@2.0.1", "", {}, "sha512-SrQrok4CATudVzBS7coSz26QRSmlK9TzzoFbeKfcPBUFPjcQM9Rqvr/DlJkOrwI/0KcgvMub1n1g5Jt9EgRn4A=="],
- "next": ["next@16.2.0", "", { "dependencies": { "@next/env": "16.2.0", "@swc/helpers": "0.5.15", "baseline-browser-mapping": "^2.9.19", "caniuse-lite": "^1.0.30001579", "postcss": "8.4.31", "styled-jsx": "5.1.6" }, "optionalDependencies": { "@next/swc-darwin-arm64": "16.2.0", "@next/swc-darwin-x64": "16.2.0", "@next/swc-linux-arm64-gnu": "16.2.0", "@next/swc-linux-arm64-musl": "16.2.0", "@next/swc-linux-x64-gnu": "16.2.0", "@next/swc-linux-x64-musl": "16.2.0", "@next/swc-win32-arm64-msvc": "16.2.0", "@next/swc-win32-x64-msvc": "16.2.0", "sharp": "^0.34.5" }, "peerDependencies": { "@opentelemetry/api": "^1.1.0", "@playwright/test": "^1.51.1", "babel-plugin-react-compiler": "*", "react": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0", "react-dom": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0", "sass": "^1.3.0" }, "optionalPeers": ["@opentelemetry/api", "@playwright/test", "babel-plugin-react-compiler", "sass"], "bin": { "next": "dist/bin/next" } }, "sha512-NLBVrJy1pbV1Yn00L5sU4vFyAHt5XuSjzrNyFnxo6Com0M0KrL6hHM5B99dbqXb2bE9pm4Ow3Zl1xp6HVY9edQ=="],
+ "next": ["next@16.2.1", "", { "dependencies": { "@next/env": "16.2.1", "@swc/helpers": "0.5.15", "baseline-browser-mapping": "^2.9.19", "caniuse-lite": "^1.0.30001579", "postcss": "8.4.31", "styled-jsx": "5.1.6" }, "optionalDependencies": { "@next/swc-darwin-arm64": "16.2.1", "@next/swc-darwin-x64": "16.2.1", "@next/swc-linux-arm64-gnu": "16.2.1", "@next/swc-linux-arm64-musl": "16.2.1", "@next/swc-linux-x64-gnu": "16.2.1", "@next/swc-linux-x64-musl": "16.2.1", "@next/swc-win32-arm64-msvc": "16.2.1", "@next/swc-win32-x64-msvc": "16.2.1", "sharp": "^0.34.5" }, "peerDependencies": { "@opentelemetry/api": "^1.1.0", "@playwright/test": "^1.51.1", "babel-plugin-react-compiler": "*", "react": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0", "react-dom": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0", "sass": "^1.3.0" }, "optionalPeers": ["@opentelemetry/api", "@playwright/test", "babel-plugin-react-compiler", "sass"], "bin": { "next": "dist/bin/next" } }, "sha512-VaChzNL7o9rbfdt60HUj8tev4m6d7iC1igAy157526+cJlXOQu5LzsBXNT+xaJnTP/k+utSX5vMv7m0G+zKH+Q=="],
"next-plausible": ["next-plausible@3.12.5", "", { "peerDependencies": { "next": "^11.1.0 || ^12.0.0 || ^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 ", "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" } }, "sha512-l1YMuTI9akb2u7z4hyTuxXpudy8KfSteRNXCYpWpnhAoBjaWQlv6sITai1TwcR7wWvVW8DFbLubvMQAsirAjcA=="],
@@ -2513,7 +2560,7 @@
"nullthrows": ["nullthrows@1.1.1", "", {}, "sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw=="],
- "nypm": ["nypm@0.6.0", "", { "dependencies": { "citty": "^0.1.6", "consola": "^3.4.0", "pathe": "^2.0.3", "pkg-types": "^2.0.0", "tinyexec": "^0.3.2" }, "bin": { "nypm": "dist/cli.mjs" } }, "sha512-mn8wBFV9G9+UFHIrq+pZ2r2zL4aPau/by3kJb3cM7+5tQHMt6HGQB8FDIeKFYp8o0D2pnH6nVsO88N4AmUxIWg=="],
+ "nypm": ["nypm@0.6.2", "", { "dependencies": { "citty": "^0.1.6", "consola": "^3.4.2", "pathe": "^2.0.3", "pkg-types": "^2.3.0", "tinyexec": "^1.0.1" }, "bin": { "nypm": "dist/cli.mjs" } }, "sha512-7eM+hpOtrKrBDCh7Ypu2lJ9Z7PNZBdi/8AT3AX8xoCj43BBVHD0hPSTEvMtkMpfs8FCqBGhxB+uToIQimA111g=="],
"oauth4webapi": ["oauth4webapi@3.8.2", "", {}, "sha512-FzZZ+bht5X0FKe7Mwz3DAVAmlH1BV5blSak/lHMBKz0/EBMhX6B10GlQYI51+oRp8ObJaX0g6pXrAxZh5s8rjw=="],
@@ -2535,6 +2582,8 @@
"object.values": ["object.values@1.2.1", "", { "dependencies": { "call-bind": "^1.0.8", "call-bound": "^1.0.3", "define-properties": "^1.2.1", "es-object-atoms": "^1.0.0" } }, "sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA=="],
+ "obug": ["obug@2.1.3", "", {}, "sha512-9miFgM2OFba7hB+pRgvtV84pYTBaoTHohvmIgiRt6dRIzbwEOIaNaP+dIlGs2fNFoB0SeISs0Jz5WFVRid6Xyg=="],
+
"on-finished": ["on-finished@2.4.1", "", { "dependencies": { "ee-first": "1.1.1" } }, "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg=="],
"on-headers": ["on-headers@1.1.0", "", {}, "sha512-737ZY3yNnXy37FHkQxPzt4UZ2UWPWiCZWLvFZ4fu5cueciegX0zGPnrlY6bwRg4FdQOe9YU8MkmJwGhoMybl8A=="],
@@ -2559,12 +2608,12 @@
"p-try": ["p-try@2.2.0", "", {}, "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ=="],
- "package-json-from-dist": ["package-json-from-dist@1.0.1", "", {}, "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw=="],
-
"parent-module": ["parent-module@1.0.1", "", { "dependencies": { "callsites": "^3.0.0" } }, "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g=="],
"parse-png": ["parse-png@2.1.0", "", { "dependencies": { "pngjs": "^3.3.0" } }, "sha512-Nt/a5SfCLiTnQAjx3fHlqp8hRgTL3z7kTQZzvIMS9uCAepnCyjpdEc6M/sz69WqMBdaDBw9sF1F1UaHROYzGkQ=="],
+ "parse5": ["parse5@8.0.1", "", { "dependencies": { "entities": "^8.0.0" } }, "sha512-z1e/HMG90obSGeidlli3hj7cbocou0/wa5HacvI3ASx34PecNjNQeaHNo5WIZpWofN9kgkqV1q5YvXe3F0FoPw=="],
+
"parseley": ["parseley@0.12.1", "", { "dependencies": { "leac": "^0.6.0", "peberminta": "^0.9.0" } }, "sha512-e6qHKe3a9HWr0oMRVDTRhKce+bRO8VGQR3NyVwcjwrbhMmFCX9KszEV35+rn4AdilFAq9VPxP/Fe1wC9Qjd2lw=="],
"parseurl": ["parseurl@1.3.3", "", {}, "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ=="],
@@ -2577,7 +2626,7 @@
"path-parse": ["path-parse@1.0.7", "", {}, "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw=="],
- "path-scurry": ["path-scurry@2.0.0", "", { "dependencies": { "lru-cache": "^11.0.0", "minipass": "^7.1.2" } }, "sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg=="],
+ "path-scurry": ["path-scurry@2.0.2", "", { "dependencies": { "lru-cache": "^11.0.0", "minipass": "^7.1.2" } }, "sha512-3O/iVVsJAPsOnpwWIeD+d6z/7PmqApyQePUtCndjatj/9I5LylHvt5qluFaBT3I5h3r1ejfR056c+FCv+NnNXg=="],
"path-to-regexp": ["path-to-regexp@6.3.0", "", {}, "sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ=="],
@@ -2593,7 +2642,7 @@
"picocolors": ["picocolors@1.1.1", "", {}, "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="],
- "picomatch": ["picomatch@3.0.1", "", {}, "sha512-I3EurrIQMlRc9IaAZnqRR044Phh2DXY+55o7uJ0V+hYZAcQYSuFWsc9q5PvyDHUSCe1Qxn/iBz+78s86zWnGag=="],
+ "picomatch": ["picomatch@4.0.4", "", {}, "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A=="],
"pirates": ["pirates@4.0.7", "", {}, "sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA=="],
@@ -2605,7 +2654,7 @@
"possible-typed-array-names": ["possible-typed-array-names@1.1.0", "", {}, "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg=="],
- "postcss": ["postcss@8.5.8", "", { "dependencies": { "nanoid": "^3.3.11", "picocolors": "^1.1.1", "source-map-js": "^1.2.1" } }, "sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg=="],
+ "postcss": ["postcss@8.5.15", "", { "dependencies": { "nanoid": "^3.3.12", "picocolors": "^1.1.1", "source-map-js": "^1.2.1" } }, "sha512-FfR8sjd4em2T6fb3I2MwAJU7HWVMr9zba+enmQeeWFfCbm+UOC/0X4DS8XtpUTMwWMGbjKYP7xjfNekzyGmB3A=="],
"postcss-value-parser": ["postcss-value-parser@4.2.0", "", {}, "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ=="],
@@ -2663,21 +2712,21 @@
"rc": ["rc@1.2.8", "", { "dependencies": { "deep-extend": "^0.6.0", "ini": "~1.3.0", "minimist": "^1.2.0", "strip-json-comments": "~2.0.1" }, "bin": { "rc": "./cli.js" } }, "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw=="],
- "react": ["react@19.1.4", "", {}, "sha512-DHINL3PAmPUiK1uszfbKiXqfE03eszdt5BpVSuEAHb5nfmNPwnsy7g39h2t8aXFc/Bv99GH81s+j8dobtD+jOw=="],
+ "react": ["react@19.2.4", "", {}, "sha512-9nfp2hYpCwOjAN+8TZFGhtWEwgvWHXqESH8qT89AT/lWklpLON22Lc8pEtnpsZz7VmawabSU0gCjnj8aC0euHQ=="],
"react-day-picker": ["react-day-picker@9.14.0", "", { "dependencies": { "@date-fns/tz": "^1.4.1", "@tabby_ai/hijri-converter": "1.0.5", "date-fns": "^4.1.0", "date-fns-jalali": "4.1.0-0" }, "peerDependencies": { "react": ">=16.8.0" } }, "sha512-tBaoDWjPwe0M5pGrum4H0SR6Lyk+BO9oHnp9JbKpGKW2mlraNPgP9BMfsg5pWpwrssARmeqk7YBl2oXutZTaHA=="],
"react-devtools-core": ["react-devtools-core@6.1.5", "", { "dependencies": { "shell-quote": "^1.6.1", "ws": "^7" } }, "sha512-ePrwPfxAnB+7hgnEr8vpKxL9cmnp7F322t8oqcPshbIQQhDKgFDW4tjhF2wjVbdXF9O/nyuy3sQWd9JGpiLPvA=="],
- "react-dom": ["react-dom@19.1.4", "", { "dependencies": { "scheduler": "^0.26.0" }, "peerDependencies": { "react": "^19.1.4" } }, "sha512-s2868ab/xo2SI6H4106A7aFI8Mrqa4xC6HZT/pBzYyQ3cBLqa88hu47xYD8xf+uECleN698Awn7RCWlkTiKnqQ=="],
+ "react-dom": ["react-dom@19.2.4", "", { "dependencies": { "scheduler": "^0.27.0" }, "peerDependencies": { "react": "^19.2.4" } }, "sha512-AXJdLo8kgMbimY95O2aKQqsz2iWi9jMgKJhRBAxECE4IFxfcazB2LmzloIoibJI3C12IlY20+KFaLv+71bUJeQ=="],
- "react-email": ["react-email@4.2.11", "", { "dependencies": { "@babel/parser": "^7.27.0", "@babel/traverse": "^7.27.0", "chokidar": "^4.0.3", "commander": "^13.0.0", "debounce": "^2.0.0", "esbuild": "^0.25.0", "glob": "^11.0.0", "jiti": "2.4.2", "log-symbols": "^7.0.0", "mime-types": "^3.0.0", "normalize-path": "^3.0.0", "nypm": "0.6.0", "ora": "^8.0.0", "prompts": "2.4.2", "socket.io": "^4.8.1", "tsconfig-paths": "4.2.0" }, "bin": { "email": "dist/index.js" } }, "sha512-/7TXRgsTrXcV1u7kc5ZXDVlPvZqEBaYcflMhE2FgWIJh3OHLjj2FqctFTgYcp0iwzbR59a7gzJLmSKyD0wYJEQ=="],
+ "react-email": ["react-email@5.2.10", "", { "dependencies": { "@babel/parser": "7.27.0", "@babel/traverse": "7.27.0", "chokidar": "^4.0.3", "commander": "^13.0.0", "conf": "^15.0.2", "debounce": "^2.0.0", "esbuild": "0.27.3", "glob": "^13.0.6", "jiti": "2.4.2", "log-symbols": "^7.0.0", "mime-types": "^3.0.0", "normalize-path": "^3.0.0", "nypm": "0.6.2", "ora": "^8.0.0", "prompts": "2.4.2", "socket.io": "^4.8.1", "tsconfig-paths": "4.2.0" }, "bin": { "email": "dist/index.mjs" } }, "sha512-Ys8yR5/a0nXf5u2GlT2UV93PJHC3ZnuMnNebEn7I5UE9XfMFPtlpgDs02mPJOJn49fhJjDTWIUlZD1vmQPDgJg=="],
"react-fast-compare": ["react-fast-compare@3.2.2", "", {}, "sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ=="],
"react-freeze": ["react-freeze@1.0.4", "", { "peerDependencies": { "react": ">=17.0.0" } }, "sha512-r4F0Sec0BLxWicc7HEyo2x3/2icUTrRmDjaaRyzzn+7aDyFZliszMDOgLVwSnQnYENOlL1o569Ze2HZefk8clA=="],
- "react-hook-form": ["react-hook-form@7.65.0", "", { "peerDependencies": { "react": "^16.8.0 || ^17 || ^18 || ^19" } }, "sha512-xtOzDz063WcXvGWaHgLNrNzlsdFgtUWcb32E6WFaGTd7kPZG3EeDusjdZfUsPwKCKVXy1ZlntifaHZ4l8pAsmw=="],
+ "react-hook-form": ["react-hook-form@7.72.0", "", { "peerDependencies": { "react": "^16.8.0 || ^17 || ^18 || ^19" } }, "sha512-V4v6jubaf6JAurEaVnT9aUPKFbNtDgohj5CIgVGyPHvT9wRx5OZHVjz31GsxnPNI278XMu+ruFz+wGOscHaLKw=="],
"react-image-crop": ["react-image-crop@11.0.10", "", { "peerDependencies": { "react": ">=16.13.1" } }, "sha512-+5FfDXUgYLLqBh1Y/uQhIycpHCbXkI50a+nbfkB1C0xXXUTwkisHDo2QCB1SQJyHCqIuia4FeyReqXuMDKWQTQ=="],
@@ -2711,13 +2760,15 @@
"react-remove-scroll-bar": ["react-remove-scroll-bar@2.3.8", "", { "dependencies": { "react-style-singleton": "^2.2.2", "tslib": "^2.0.0" }, "peerDependencies": { "@types/react": "*", "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" }, "optionalPeers": ["@types/react"] }, "sha512-9r+yi9+mgU33AKcj6IbT9oRCO78WriSj6t/cF8DWBZJ9aOGPOTEDvdUDz1FwKim7QXWwmHqtdHnRJfhAxEG46Q=="],
- "react-resizable-panels": ["react-resizable-panels@4.7.3", "", { "peerDependencies": { "react": "^18.0.0 || ^19.0.0", "react-dom": "^18.0.0 || ^19.0.0" } }, "sha512-PYcYMLtvJD+Pr0TQNeMvddcnLOwUa/Yb4iNwU7ThNLlHaQYEEC9MIBWHaBGODzYuXIkPRZ/OWe5sbzG1Rzq5ew=="],
+ "react-resizable-panels": ["react-resizable-panels@4.7.6", "", { "peerDependencies": { "react": "^18.0.0 || ^19.0.0", "react-dom": "^18.0.0 || ^19.0.0" } }, "sha512-w3gbmUihfvH2Ho0iV1ULS2c/E/7HW/6g0GihogsIHjZf+JmmyVnKhryB3+I4JSxO8++uD3cKsSpOVTJV+GWEuA=="],
"react-style-singleton": ["react-style-singleton@2.2.3", "", { "dependencies": { "get-nonce": "^1.0.0", "tslib": "^2.0.0" }, "peerDependencies": { "@types/react": "*", "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ=="],
"readdirp": ["readdirp@4.1.2", "", {}, "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg=="],
- "recharts": ["recharts@3.8.0", "", { "dependencies": { "@reduxjs/toolkit": "^1.9.0 || 2.x.x", "clsx": "^2.1.1", "decimal.js-light": "^2.5.1", "es-toolkit": "^1.39.3", "eventemitter3": "^5.0.1", "immer": "^10.1.1", "react-redux": "8.x.x || 9.x.x", "reselect": "5.1.1", "tiny-invariant": "^1.3.3", "use-sync-external-store": "^1.2.2", "victory-vendor": "^37.0.2" }, "peerDependencies": { "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", "react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", "react-is": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" } }, "sha512-Z/m38DX3L73ExO4Tpc9/iZWHmHnlzWG4njQbxsF5aSjwqmHNDDIm0rdEBArkwsBvR8U6EirlEHiQNYWCVh9sGQ=="],
+ "recharts": ["recharts@3.8.1", "", { "dependencies": { "@reduxjs/toolkit": "^1.9.0 || 2.x.x", "clsx": "^2.1.1", "decimal.js-light": "^2.5.1", "es-toolkit": "^1.39.3", "eventemitter3": "^5.0.1", "immer": "^10.1.1", "react-redux": "8.x.x || 9.x.x", "reselect": "5.1.1", "tiny-invariant": "^1.3.3", "use-sync-external-store": "^1.2.2", "victory-vendor": "^37.0.2" }, "peerDependencies": { "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", "react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", "react-is": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" } }, "sha512-mwzmO1s9sFL0TduUpwndxCUNoXsBw3u3E/0+A+cLcrSfQitSG62L32N69GhqUrrT5qKcAE3pCGVINC6pqkBBQg=="],
+
+ "redent": ["redent@3.0.0", "", { "dependencies": { "indent-string": "^4.0.0", "strip-indent": "^3.0.0" } }, "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg=="],
"redux": ["redux@5.0.1", "", {}, "sha512-M9/ELqF6fy8FwmkpnF0S3YKOqMyoWJ4+CS5Efg2ct3oY9daQvd/Pc71FpGZsVsbl3Cpb+IIcjBDUnnyBdQbq4w=="],
@@ -2753,6 +2804,8 @@
"resolve-from": ["resolve-from@5.0.0", "", {}, "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw=="],
+ "resolve-pkg-maps": ["resolve-pkg-maps@1.0.0", "", {}, "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw=="],
+
"resolve-workspace-root": ["resolve-workspace-root@2.0.0", "", {}, "sha512-IsaBUZETJD5WsI11Wt8PKHwaIe45or6pwNc8yflvLJ4DWtImK9kuLoH5kUva/2Mmx/RdIyr4aONNSa2v9LTJsw=="],
"resolve.exports": ["resolve.exports@2.0.3", "", {}, "sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A=="],
@@ -2761,8 +2814,12 @@
"reusify": ["reusify@1.1.0", "", {}, "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw=="],
+ "rfdc": ["rfdc@1.4.1", "", {}, "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA=="],
+
"rimraf": ["rimraf@3.0.2", "", { "dependencies": { "glob": "^7.1.3" }, "bin": { "rimraf": "bin.js" } }, "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA=="],
+ "rolldown": ["rolldown@1.0.3", "", { "dependencies": { "@oxc-project/types": "=0.133.0", "@rolldown/pluginutils": "^1.0.0" }, "optionalDependencies": { "@rolldown/binding-android-arm64": "1.0.3", "@rolldown/binding-darwin-arm64": "1.0.3", "@rolldown/binding-darwin-x64": "1.0.3", "@rolldown/binding-freebsd-x64": "1.0.3", "@rolldown/binding-linux-arm-gnueabihf": "1.0.3", "@rolldown/binding-linux-arm64-gnu": "1.0.3", "@rolldown/binding-linux-arm64-musl": "1.0.3", "@rolldown/binding-linux-ppc64-gnu": "1.0.3", "@rolldown/binding-linux-s390x-gnu": "1.0.3", "@rolldown/binding-linux-x64-gnu": "1.0.3", "@rolldown/binding-linux-x64-musl": "1.0.3", "@rolldown/binding-openharmony-arm64": "1.0.3", "@rolldown/binding-wasm32-wasi": "1.0.3", "@rolldown/binding-win32-arm64-msvc": "1.0.3", "@rolldown/binding-win32-x64-msvc": "1.0.3" }, "bin": { "rolldown": "./bin/cli.mjs" } }, "sha512-i00lAJ2ks1BYr7rjNjKC7BcqAS7nVfiT3QX1SI5aY+AFHblCmaUf9OE9dbdzDvW6dJxbi2ZCZiy9v3CcwOiX3g=="],
+
"rollup": ["rollup@4.52.5", "", { "dependencies": { "@types/estree": "1.0.8" }, "optionalDependencies": { "@rollup/rollup-android-arm-eabi": "4.52.5", "@rollup/rollup-android-arm64": "4.52.5", "@rollup/rollup-darwin-arm64": "4.52.5", "@rollup/rollup-darwin-x64": "4.52.5", "@rollup/rollup-freebsd-arm64": "4.52.5", "@rollup/rollup-freebsd-x64": "4.52.5", "@rollup/rollup-linux-arm-gnueabihf": "4.52.5", "@rollup/rollup-linux-arm-musleabihf": "4.52.5", "@rollup/rollup-linux-arm64-gnu": "4.52.5", "@rollup/rollup-linux-arm64-musl": "4.52.5", "@rollup/rollup-linux-loong64-gnu": "4.52.5", "@rollup/rollup-linux-ppc64-gnu": "4.52.5", "@rollup/rollup-linux-riscv64-gnu": "4.52.5", "@rollup/rollup-linux-riscv64-musl": "4.52.5", "@rollup/rollup-linux-s390x-gnu": "4.52.5", "@rollup/rollup-linux-x64-gnu": "4.52.5", "@rollup/rollup-linux-x64-musl": "4.52.5", "@rollup/rollup-openharmony-arm64": "4.52.5", "@rollup/rollup-win32-arm64-msvc": "4.52.5", "@rollup/rollup-win32-ia32-msvc": "4.52.5", "@rollup/rollup-win32-x64-gnu": "4.52.5", "@rollup/rollup-win32-x64-msvc": "4.52.5", "fsevents": "~2.3.2" }, "bin": { "rollup": "dist/bin/rollup" } }, "sha512-3GuObel8h7Kqdjt0gxkEzaifHTqLVW56Y/bjN7PSQtkKr0w3V/QYSdt6QWYtd7A1xUtYQigtdUfgj1RvWVtorw=="],
"run-parallel": ["run-parallel@1.2.0", "", { "dependencies": { "queue-microtask": "^1.2.2" } }, "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA=="],
@@ -2777,9 +2834,13 @@
"safer-buffer": ["safer-buffer@2.1.2", "", {}, "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="],
+ "sass": ["sass@1.77.4", "", { "dependencies": { "chokidar": ">=3.0.0 <4.0.0", "immutable": "^4.0.0", "source-map-js": ">=0.6.2 <2.0.0" }, "bin": { "sass": "sass.js" } }, "sha512-vcF3Ckow6g939GMA4PeU7b2K/9FALXk2KF9J87txdHzXbUF9XRQRwSxcAs/fGaTnJeBFd7UoV22j3lzMLdM0Pw=="],
+
"sax": ["sax@1.4.1", "", {}, "sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg=="],
- "scheduler": ["scheduler@0.26.0", "", {}, "sha512-NlHwttCI/l5gCPR3D1nNXtWABUmBwvZpEQiD4IXSbIDq8BzLIK/7Ir5gTFSGZDUu37K5cMNp0hFtzO38sC7gWA=="],
+ "saxes": ["saxes@6.0.0", "", { "dependencies": { "xmlchars": "^2.2.0" } }, "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA=="],
+
+ "scheduler": ["scheduler@0.27.0", "", {}, "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q=="],
"schema-utils": ["schema-utils@4.3.3", "", { "dependencies": { "@types/json-schema": "^7.0.9", "ajv": "^8.9.0", "ajv-formats": "^2.1.1", "ajv-keywords": "^5.1.0" } }, "sha512-eflK8wEtyOE6+hsaRVPxvUKYCpRgzLqDTb8krvAsRIwOGlHoSgYLgBXoubGgLd2fT41/OUYdb48v4k4WWHQurA=="],
@@ -2827,6 +2888,8 @@
"side-channel-weakmap": ["side-channel-weakmap@1.0.2", "", { "dependencies": { "call-bound": "^1.0.2", "es-errors": "^1.3.0", "get-intrinsic": "^1.2.5", "object-inspect": "^1.13.3", "side-channel-map": "^1.0.1" } }, "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A=="],
+ "siginfo": ["siginfo@2.0.0", "", {}, "sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g=="],
+
"signal-exit": ["signal-exit@4.1.0", "", {}, "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw=="],
"simple-plist": ["simple-plist@1.3.1", "", { "dependencies": { "bplist-creator": "0.1.0", "bplist-parser": "0.3.1", "plist": "^3.0.5" } }, "sha512-iMSw5i0XseMnrhtIzRb7XpQEXepa9xhWxGUojHBL43SIpQuDQkh3Wpy67ZbDzZVr6EKxvwVChnVpdl8hEVLDiw=="],
@@ -2837,6 +2900,8 @@
"slash": ["slash@3.0.0", "", {}, "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q=="],
+ "slice-ansi": ["slice-ansi@8.0.0", "", { "dependencies": { "ansi-styles": "^6.2.3", "is-fullwidth-code-point": "^5.1.0" } }, "sha512-stxByr12oeeOyY2BlviTNQlYV5xOj47GirPr4yA1hE9JCtxfQN0+tVbkxwCtYDQWhEKWFHsEK48ORg5jrouCAg=="],
+
"slugify": ["slugify@1.6.6", "", {}, "sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw=="],
"socket.io": ["socket.io@4.8.1", "", { "dependencies": { "accepts": "~1.3.4", "base64id": "~2.0.0", "cors": "~2.8.5", "debug": "~4.3.2", "engine.io": "~6.6.0", "socket.io-adapter": "~2.5.2", "socket.io-parser": "~4.2.4" } }, "sha512-oZ7iUCxph8WYRHHcjBEc9unw3adt5CmSNlppj/5Q4k2RIrhl8Z5yY2Xr4j9zj0+wzVZ0bxmYoGSzKJnRl6A4yg=="],
@@ -2859,12 +2924,16 @@
"stack-utils": ["stack-utils@2.0.6", "", { "dependencies": { "escape-string-regexp": "^2.0.0" } }, "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ=="],
+ "stackback": ["stackback@0.0.2", "", {}, "sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw=="],
+
"stackframe": ["stackframe@1.3.4", "", {}, "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw=="],
"stacktrace-parser": ["stacktrace-parser@0.1.11", "", { "dependencies": { "type-fest": "^0.7.1" } }, "sha512-WjlahMgHmCJpqzU8bIBy4qtsZdU9lRlcZE3Lvyej6t4tuOuv1vk57OW3MBrj6hXBFx/nNoC9MPMTcr5YA7NQbg=="],
"statuses": ["statuses@2.0.1", "", {}, "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ=="],
+ "std-env": ["std-env@4.1.0", "", {}, "sha512-Rq7ybcX2RuC55r9oaPVEW7/xu3tj8u4GeBYHBWCychFtzMIr86A7e3PPEBPT37sHStKX3+TiX/Fr/ACmJLVlLQ=="],
+
"stdin-discarder": ["stdin-discarder@0.2.2", "", {}, "sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ=="],
"stop-iteration-iterator": ["stop-iteration-iterator@1.1.0", "", { "dependencies": { "es-errors": "^1.3.0", "internal-slot": "^1.1.0" } }, "sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ=="],
@@ -2873,9 +2942,9 @@
"strict-uri-encode": ["strict-uri-encode@2.0.0", "", {}, "sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ=="],
- "string-width": ["string-width@7.2.0", "", { "dependencies": { "emoji-regex": "^10.3.0", "get-east-asian-width": "^1.0.0", "strip-ansi": "^7.1.0" } }, "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ=="],
+ "string-argv": ["string-argv@0.3.2", "", {}, "sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q=="],
- "string-width-cjs": ["string-width@4.2.3", "", { "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" } }, "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="],
+ "string-width": ["string-width@7.2.0", "", { "dependencies": { "emoji-regex": "^10.3.0", "get-east-asian-width": "^1.0.0", "strip-ansi": "^7.1.0" } }, "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ=="],
"string.prototype.includes": ["string.prototype.includes@2.0.1", "", { "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", "es-abstract": "^1.23.3" } }, "sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg=="],
@@ -2891,14 +2960,18 @@
"strip-ansi": ["strip-ansi@7.1.2", "", { "dependencies": { "ansi-regex": "^6.0.1" } }, "sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA=="],
- "strip-ansi-cjs": ["strip-ansi@6.0.1", "", { "dependencies": { "ansi-regex": "^5.0.1" } }, "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="],
-
"strip-bom": ["strip-bom@3.0.0", "", {}, "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA=="],
+ "strip-indent": ["strip-indent@3.0.0", "", { "dependencies": { "min-indent": "^1.0.0" } }, "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ=="],
+
"strip-json-comments": ["strip-json-comments@3.1.1", "", {}, "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig=="],
"structured-headers": ["structured-headers@0.4.1", "", {}, "sha512-0MP/Cxx5SzeeZ10p/bZI0S6MpgD+yxAhi1BOQ34jgnMXsCq3j1t6tQnZu+KdlL7dvJTLT3g9xN8tl10TqgFMcg=="],
+ "stubborn-fs": ["stubborn-fs@2.0.0", "", { "dependencies": { "stubborn-utils": "^1.0.1" } }, "sha512-Y0AvSwDw8y+nlSNFXMm2g6L51rBGdAQT20J3YSOqxC53Lo3bjWRtr2BKcfYoAf352WYpsZSTURrA0tqhfgudPA=="],
+
+ "stubborn-utils": ["stubborn-utils@1.0.2", "", {}, "sha512-zOh9jPYI+xrNOyisSelgym4tolKTJCQd5GBhK0+0xJvcYDcwlOoxF/rnFKQ2KRZknXSG9jWAp66fwP6AxN9STg=="],
+
"styled-jsx": ["styled-jsx@5.1.6", "", { "dependencies": { "client-only": "0.0.1" }, "peerDependencies": { "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0" } }, "sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA=="],
"styleq": ["styleq@0.1.3", "", {}, "sha512-3ZUifmCDCQanjeej1f6kyl/BeP/Vae5EYkQ9iJfUm/QwZvlgnZzyflqAsAWYURdtea8Vkvswu2GrC57h3qffcA=="],
@@ -2913,11 +2986,15 @@
"supports-preserve-symlinks-flag": ["supports-preserve-symlinks-flag@1.0.0", "", {}, "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w=="],
+ "symbol-tree": ["symbol-tree@3.2.4", "", {}, "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw=="],
+
"tabbable": ["tabbable@6.4.0", "", {}, "sha512-05PUHKSNE8ou2dwIxTngl4EzcnsCDZGJ/iCLtDflR/SHB/ny14rXc+qU5P4mG9JkusiV7EivzY9Mhm55AzAvCg=="],
- "tailwind-merge": ["tailwind-merge@3.3.1", "", {}, "sha512-gBXpgUm/3rp1lMZZrM/w7D8GKqshif0zAymAhbCyIt8KMe+0v9DQ7cdYLR4FHH/cKpdTXb+A/tKKU3eolfsI+g=="],
+ "tagged-tag": ["tagged-tag@1.0.0", "", {}, "sha512-yEFYrVhod+hdNyx7g5Bnkkb0G6si8HJurOoOEgC8B/O0uXLHlaey/65KRv6cuWBNhBgHKAROVpc7QyYqE5gFng=="],
- "tailwindcss": ["tailwindcss@4.1.16", "", {}, "sha512-pONL5awpaQX4LN5eiv7moSiSPd/DLDzKVRJz8Q9PgzmAdd1R4307GQS2ZpfiN7ZmekdQrfhZZiSE5jkLR4WNaA=="],
+ "tailwind-merge": ["tailwind-merge@3.5.0", "", {}, "sha512-I8K9wewnVDkL1NTGoqWmVEIlUcB9gFriAEkXkfCjX5ib8ezGxtR3xD7iZIxrfArjEsH7F1CHD4RFUtxefdqV/A=="],
+
+ "tailwindcss": ["tailwindcss@4.2.2", "", {}, "sha512-KWBIxs1Xb6NoLdMVqhbhgwZf2PGBpPEiwOqgI4pFIYbNTfBXiKYyWoTsXgBQ9WFg/OlhnvHaY+AEpW7wSmFo2Q=="],
"tailwindcss-safe-area": ["tailwindcss-safe-area@1.1.0", "", { "peerDependencies": { "tailwindcss": "^4.0.0" } }, "sha512-wuPUeW5BhWNv9yr3OzaGgpqImQG9FBM4mQIQh2C6yjHmOOZsJ3gh5RfNHt+TM16TMtpQs/8k2TWx8yQTFG7Fcw=="],
@@ -2941,19 +3018,29 @@
"tiny-invariant": ["tiny-invariant@1.3.3", "", {}, "sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg=="],
- "tinyexec": ["tinyexec@0.3.2", "", {}, "sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA=="],
+ "tinybench": ["tinybench@2.9.0", "", {}, "sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg=="],
+
+ "tinyexec": ["tinyexec@1.2.4", "", {}, "sha512-SHf/r48b7vOrjve9PxJo3MN5v5yuyjHvdUcrQffT3WXMUfnGmHDVbC4k3sHJaJTgZCwpUplIaAo5ANtMyp3YHg=="],
"tinyglobby": ["tinyglobby@0.2.15", "", { "dependencies": { "fdir": "^6.5.0", "picomatch": "^4.0.3" } }, "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ=="],
+ "tinyrainbow": ["tinyrainbow@3.1.0", "", {}, "sha512-Bf+ILmBgretUrdJxzXM0SgXLZ3XfiaUuOj/IKQHuTXip+05Xn+uyEYdVg0kYDipTBcLrCVyUzAPz7QmArb0mmw=="],
+
+ "tldts": ["tldts@7.4.3", "", { "dependencies": { "tldts-core": "^7.4.3" }, "bin": { "tldts": "bin/cli.js" } }, "sha512-A3BDQBeeukYPzB4QdQ1DtdlUmp4x2OCH8n5UVhEWbyANxNep8GavottKzd1xYKFJKjUgMyPT7EzOfnBO55s8Sg=="],
+
+ "tldts-core": ["tldts-core@7.4.3", "", {}, "sha512-27ep5H9PzdBrNd5OFM/j3WCU8F3kPwM9D0BOaOf7uYfxMJfyr0K5Tjj69Gri+sZlh2WXd5buIm47NuPF29CDiw=="],
+
"tmpl": ["tmpl@1.0.5", "", {}, "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw=="],
"to-regex-range": ["to-regex-range@5.0.1", "", { "dependencies": { "is-number": "^7.0.0" } }, "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ=="],
"toidentifier": ["toidentifier@1.0.1", "", {}, "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA=="],
- "tr46": ["tr46@0.0.3", "", {}, "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw=="],
+ "tough-cookie": ["tough-cookie@6.0.1", "", { "dependencies": { "tldts": "^7.0.5" } }, "sha512-LktZQb3IeoUWB9lqR5EWTHgW/VTITCXg4D21M+lvybRVdylLrRMnqaIONLVb5mav8vM19m44HIcGq4qASeu2Qw=="],
- "ts-api-utils": ["ts-api-utils@2.1.0", "", { "peerDependencies": { "typescript": ">=4.8.4" } }, "sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ=="],
+ "tr46": ["tr46@6.0.0", "", { "dependencies": { "punycode": "^2.3.1" } }, "sha512-bLVMLPtstlZ4iMQHpFHTR7GAGj2jxi8Dg0s2h2MafAE4uSWF98FC/3MomU51iQAMf8/qDUbKWf5GxuvvVcXEhw=="],
+
+ "ts-api-utils": ["ts-api-utils@2.5.0", "", { "peerDependencies": { "typescript": ">=4.8.4" } }, "sha512-OJ/ibxhPlqrMM0UiNHJ/0CKQkoKF243/AEmplt3qpRgkW8VG7IfOS41h7V8TjITqdByHzrjcS/2si+y4lIh8NA=="],
"ts-interface-checker": ["ts-interface-checker@0.1.13", "", {}, "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA=="],
@@ -2961,7 +3048,9 @@
"tslib": ["tslib@2.8.1", "", {}, "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="],
- "turbo": ["turbo@2.8.20", "", { "optionalDependencies": { "@turbo/darwin-64": "2.8.20", "@turbo/darwin-arm64": "2.8.20", "@turbo/linux-64": "2.8.20", "@turbo/linux-arm64": "2.8.20", "@turbo/windows-64": "2.8.20", "@turbo/windows-arm64": "2.8.20" }, "bin": { "turbo": "bin/turbo" } }, "sha512-Rb4qk5YT8RUwwdXtkLpkVhNEe/lor6+WV7S5tTlLpxSz6MjV5Qi8jGNn4gS6NAvrYGA/rNrE6YUQM85sCZUDbQ=="],
+ "tsx": ["tsx@4.21.0", "", { "dependencies": { "esbuild": "~0.27.0", "get-tsconfig": "^4.7.5" }, "optionalDependencies": { "fsevents": "~2.3.3" }, "bin": { "tsx": "dist/cli.mjs" } }, "sha512-5C1sg4USs1lfG0GFb2RLXsdpXqBSEhAaA/0kPL01wxzpMqLILNxIxIOKiILz+cdg/pLnOUxFYOR5yhHU666wbw=="],
+
+ "turbo": ["turbo@2.9.18", "", { "optionalDependencies": { "@turbo/darwin-64": "2.9.18", "@turbo/darwin-arm64": "2.9.18", "@turbo/linux-64": "2.9.18", "@turbo/linux-arm64": "2.9.18", "@turbo/windows-64": "2.9.18", "@turbo/windows-arm64": "2.9.18" }, "bin": { "turbo": "bin/turbo" } }, "sha512-bwabv6PupzeavybzEoArBAkwq5fnzwf8OFnRtpHwnviFWuwJPFxtyH+aVp36TmIqK3aYYgtTJ3J0m2ysxxSzQg=="],
"tw-animate-css": ["tw-animate-css@1.4.0", "", {}, "sha512-7bziOlRqH0hJx80h/3mbicLW7o8qLsH5+RaLR2t+OHM3D0JlWGODQKQ4cxbK7WlvmUxpcj6Kgu6EKqjrGFe3QQ=="],
@@ -2979,17 +3068,19 @@
"typed-array-length": ["typed-array-length@1.0.7", "", { "dependencies": { "call-bind": "^1.0.7", "for-each": "^0.3.3", "gopd": "^1.0.1", "is-typed-array": "^1.1.13", "possible-typed-array-names": "^1.0.0", "reflect.getprototypeof": "^1.0.6" } }, "sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg=="],
- "typescript": ["typescript@5.9.3", "", { "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" } }, "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw=="],
+ "typescript": ["typescript@6.0.2", "", { "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" } }, "sha512-bGdAIrZ0wiGDo5l8c++HWtbaNCWTS4UTv7RaTH/ThVIgjkveJt83m74bBHMJkuCbslY8ixgLBVZJIOiQlQTjfQ=="],
- "typescript-eslint": ["typescript-eslint@8.46.2", "", { "dependencies": { "@typescript-eslint/eslint-plugin": "8.46.2", "@typescript-eslint/parser": "8.46.2", "@typescript-eslint/typescript-estree": "8.46.2", "@typescript-eslint/utils": "8.46.2" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <6.0.0" } }, "sha512-vbw8bOmiuYNdzzV3lsiWv6sRwjyuKJMQqWulBOU7M0RrxedXledX8G8kBbQeiOYDnTfiXz0Y4081E1QMNB6iQg=="],
+ "typescript-eslint": ["typescript-eslint@8.57.2", "", { "dependencies": { "@typescript-eslint/eslint-plugin": "8.57.2", "@typescript-eslint/parser": "8.57.2", "@typescript-eslint/typescript-estree": "8.57.2", "@typescript-eslint/utils": "8.57.2" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", "typescript": ">=4.8.4 <6.0.0" } }, "sha512-VEPQ0iPgWO/sBaZOU1xo4nuNdODVOajPnTIbog2GKYr31nIlZ0fWPoCQgGfF3ETyBl1vn63F/p50Um9Z4J8O8A=="],
"ua-parser-js": ["ua-parser-js@1.0.41", "", { "bin": { "ua-parser-js": "script/cli.js" } }, "sha512-LbBDqdIC5s8iROCUjMbW1f5dJQTEFB1+KO9ogbvlb3nm9n4YHa5p4KTvFPWvh2Hs8gZMBuiB1/8+pdfe/tDPug=="],
+ "uint8array-extras": ["uint8array-extras@1.5.0", "", {}, "sha512-rvKSBiC5zqCCiDZ9kAOszZcDvdAHwwIKJG33Ykj43OKcWsnmcBRL09YTU4nOeHZ8Y2a7l1MgTd08SBe9A8Qj6A=="],
+
"unbox-primitive": ["unbox-primitive@1.1.0", "", { "dependencies": { "call-bound": "^1.0.3", "has-bigints": "^1.0.2", "has-symbols": "^1.1.0", "which-boxed-primitive": "^1.1.1" } }, "sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw=="],
- "undici": ["undici@6.22.0", "", {}, "sha512-hU/10obOIu62MGYjdskASR3CUAiYaFTtC9Pa6vHyf//mAipSvSQg6od2CnJswq7fvzNS3zJhxoRkgNVaHurWKw=="],
+ "undici": ["undici@7.28.0", "", {}, "sha512-cRZYrTDwWznlnRiPjggAGxZXanty6M8RV1ff8Wm4LWXBp7/IG8v5DnOm74DtUBp9OONpK75YlPnIjQqX0dBDtA=="],
- "undici-types": ["undici-types@6.21.0", "", {}, "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ=="],
+ "undici-types": ["undici-types@7.18.2", "", {}, "sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w=="],
"unicode-canonical-property-names-ecmascript": ["unicode-canonical-property-names-ecmascript@2.0.1", "", {}, "sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg=="],
@@ -3013,7 +3104,7 @@
"use-sync-external-store": ["use-sync-external-store@1.6.0", "", { "peerDependencies": { "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" } }, "sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w=="],
- "usesend-js": ["usesend-js@1.5.6", "", { "dependencies": { "@react-email/render": "^1.0.6", "react": "^19.1.0" } }, "sha512-Di852tonJuFy62v676msug/+Hbu9YxesoPcT75KU9oPB0ZvXKs42OmTjbOve12M/cv599TsNWMio6TsL2WMIqw=="],
+ "usesend-js": ["usesend-js@1.6.3", "", { "dependencies": { "@react-email/render": "^1.0.6", "react": "^19.1.0" } }, "sha512-HKhW4F+RbAnp6izWxo2sjISmxhYQvxAjAsBFvdn0P25oVnZ8kXTMjvEqKyvkhgRrzXALu0N6NUyQjVOdOsjnoA=="],
"utils-merge": ["utils-merge@1.0.1", "", {}, "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA=="],
@@ -3027,11 +3118,13 @@
"victory-vendor": ["victory-vendor@37.3.6", "", { "dependencies": { "@types/d3-array": "^3.0.3", "@types/d3-ease": "^3.0.0", "@types/d3-interpolate": "^3.0.1", "@types/d3-scale": "^4.0.2", "@types/d3-shape": "^3.1.0", "@types/d3-time": "^3.0.0", "@types/d3-timer": "^3.0.0", "d3-array": "^3.1.6", "d3-ease": "^3.0.1", "d3-interpolate": "^3.0.1", "d3-scale": "^4.0.2", "d3-shape": "^3.1.0", "d3-time": "^3.0.0", "d3-timer": "^3.0.1" } }, "sha512-SbPDPdDBYp+5MJHhBCAyI7wKM3d5ivekigc2Dk2s7pgbZ9wIgIBYGVw4zGHBml/qTFbexrofXW6Gu4noGxrOwQ=="],
+ "vite": ["vite@8.0.16", "", { "dependencies": { "lightningcss": "^1.32.0", "picomatch": "^4.0.4", "postcss": "^8.5.15", "rolldown": "1.0.3", "tinyglobby": "^0.2.17" }, "optionalDependencies": { "fsevents": "~2.3.3" }, "peerDependencies": { "@types/node": "^20.19.0 || >=22.12.0", "@vitejs/devtools": "^0.1.18", "esbuild": "^0.27.0 || ^0.28.0", "jiti": ">=1.21.0", "less": "^4.0.0", "sass": "^1.70.0", "sass-embedded": "^1.70.0", "stylus": ">=0.54.8", "sugarss": "^5.0.0", "terser": "^5.16.0", "tsx": "^4.8.1", "yaml": "^2.4.2" }, "optionalPeers": ["@types/node", "@vitejs/devtools", "esbuild", "jiti", "less", "sass", "sass-embedded", "stylus", "sugarss", "terser", "tsx", "yaml"], "bin": { "vite": "bin/vite.js" } }, "sha512-h9bXPmJichP5fLmVQo3PyaGSDE2n3aPuomeAlVRm0JLmt4rY6zmPKd59HYI4LNW8oTK7tlTsuC7l/m7awx9Jcw=="],
+
+ "vitest": ["vitest@4.1.9", "", { "dependencies": { "@vitest/expect": "4.1.9", "@vitest/mocker": "4.1.9", "@vitest/pretty-format": "4.1.9", "@vitest/runner": "4.1.9", "@vitest/snapshot": "4.1.9", "@vitest/spy": "4.1.9", "@vitest/utils": "4.1.9", "es-module-lexer": "^2.0.0", "expect-type": "^1.3.0", "magic-string": "^0.30.21", "obug": "^2.1.1", "pathe": "^2.0.3", "picomatch": "^4.0.3", "std-env": "^4.0.0-rc.1", "tinybench": "^2.9.0", "tinyexec": "^1.0.2", "tinyglobby": "^0.2.15", "tinyrainbow": "^3.1.0", "vite": "^6.0.0 || ^7.0.0 || ^8.0.0", "why-is-node-running": "^2.3.0" }, "peerDependencies": { "@edge-runtime/vm": "*", "@opentelemetry/api": "^1.9.0", "@types/node": "^20.0.0 || ^22.0.0 || >=24.0.0", "@vitest/browser-playwright": "4.1.9", "@vitest/browser-preview": "4.1.9", "@vitest/browser-webdriverio": "4.1.9", "@vitest/coverage-istanbul": "4.1.9", "@vitest/coverage-v8": "4.1.9", "@vitest/ui": "4.1.9", "happy-dom": "*", "jsdom": "*" }, "optionalPeers": ["@edge-runtime/vm", "@opentelemetry/api", "@types/node", "@vitest/browser-playwright", "@vitest/browser-preview", "@vitest/browser-webdriverio", "@vitest/coverage-istanbul", "@vitest/coverage-v8", "@vitest/ui", "happy-dom", "jsdom"], "bin": { "vitest": "./vitest.mjs" } }, "sha512-nE3/LEyc0z87uHYLZebqCUOaJr2hdtuPp7BQ4BosVFnfltxgAvMG08NyrSGlPpOUWvR27c5flSmYFTNr78L9GQ=="],
+
"vlq": ["vlq@1.0.1", "", {}, "sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w=="],
- "vscode-languageserver-textdocument": ["vscode-languageserver-textdocument@1.0.12", "", {}, "sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA=="],
-
- "vscode-uri": ["vscode-uri@3.1.0", "", {}, "sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ=="],
+ "w3c-xmlserializer": ["w3c-xmlserializer@5.0.0", "", { "dependencies": { "xml-name-validator": "^5.0.0" } }, "sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA=="],
"walker": ["walker@1.0.8", "", { "dependencies": { "makeerror": "1.0.12" } }, "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ=="],
@@ -3041,7 +3134,7 @@
"wcwidth": ["wcwidth@1.0.1", "", { "dependencies": { "defaults": "^1.0.3" } }, "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg=="],
- "webidl-conversions": ["webidl-conversions@5.0.0", "", {}, "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA=="],
+ "webidl-conversions": ["webidl-conversions@8.0.1", "", {}, "sha512-BMhLD/Sw+GbJC21C/UgyaZX41nPt8bUTg+jWyDeg7e7YN4xOM05YPSIXceACnXVtqyEw/LMClUQMtMZ+PGGpqQ=="],
"webpack": ["webpack@5.102.1", "", { "dependencies": { "@types/eslint-scope": "^3.7.7", "@types/estree": "^1.0.8", "@types/json-schema": "^7.0.15", "@webassemblyjs/ast": "^1.14.1", "@webassemblyjs/wasm-edit": "^1.14.1", "@webassemblyjs/wasm-parser": "^1.14.1", "acorn": "^8.15.0", "acorn-import-phases": "^1.0.3", "browserslist": "^4.26.3", "chrome-trace-event": "^1.0.2", "enhanced-resolve": "^5.17.3", "es-module-lexer": "^1.2.1", "eslint-scope": "5.1.1", "events": "^3.2.0", "glob-to-regexp": "^0.4.1", "graceful-fs": "^4.2.11", "json-parse-even-better-errors": "^2.3.1", "loader-runner": "^4.2.0", "mime-types": "^2.1.27", "neo-async": "^2.6.2", "schema-utils": "^4.3.3", "tapable": "^2.3.0", "terser-webpack-plugin": "^5.3.11", "watchpack": "^2.4.4", "webpack-sources": "^3.3.3" }, "bin": { "webpack": "bin/webpack.js" } }, "sha512-7h/weGm9d/ywQ6qzJ+Xy+r9n/3qgp/thalBbpOi5i223dPXKi04IBtqPN9nTd+jBc7QKfvDbaBnFipYp4sJAUQ=="],
@@ -3049,10 +3142,14 @@
"whatwg-fetch": ["whatwg-fetch@3.6.20", "", {}, "sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg=="],
- "whatwg-url": ["whatwg-url@5.0.0", "", { "dependencies": { "tr46": "~0.0.3", "webidl-conversions": "^3.0.0" } }, "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw=="],
+ "whatwg-mimetype": ["whatwg-mimetype@5.0.0", "", {}, "sha512-sXcNcHOC51uPGF0P/D4NVtrkjSU2fNsm9iog4ZvZJsL3rjoDAzXZhkm2MWt1y+PUdggKAYVoMAIYcs78wJ51Cw=="],
+
+ "whatwg-url": ["whatwg-url@16.0.1", "", { "dependencies": { "@exodus/bytes": "^1.11.0", "tr46": "^6.0.0", "webidl-conversions": "^8.0.1" } }, "sha512-1to4zXBxmXHV3IiSSEInrreIlu02vUOvrhxJJH5vcxYTBDAx51cqZiKdyTxlecdKNSjj8EcxGBxNf6Vg+945gw=="],
"whatwg-url-without-unicode": ["whatwg-url-without-unicode@8.0.0-3", "", { "dependencies": { "buffer": "^5.4.3", "punycode": "^2.1.1", "webidl-conversions": "^5.0.0" } }, "sha512-HoKuzZrUlgpz35YO27XgD28uh/WJH4B0+3ttFqRo//lmq+9T/mIOJ6kqmINI9HpUpz1imRC/nR/lxKpJiv0uig=="],
+ "when-exit": ["when-exit@2.1.5", "", {}, "sha512-VGkKJ564kzt6Ms1dbgPP/yuIoQCrsFAnRbptpC5wOEsDaNsbCB2bnfnaA8i/vRs5tjUSEOtIuvl9/MyVsvQZCg=="],
+
"which": ["which@2.0.2", "", { "dependencies": { "isexe": "^2.0.0" }, "bin": { "node-which": "./bin/node-which" } }, "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA=="],
"which-boxed-primitive": ["which-boxed-primitive@1.1.1", "", { "dependencies": { "is-bigint": "^1.1.0", "is-boolean-object": "^1.2.1", "is-number-object": "^1.1.1", "is-string": "^1.1.1", "is-symbol": "^1.1.1" } }, "sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA=="],
@@ -3063,13 +3160,13 @@
"which-typed-array": ["which-typed-array@1.1.19", "", { "dependencies": { "available-typed-arrays": "^1.0.7", "call-bind": "^1.0.8", "call-bound": "^1.0.4", "for-each": "^0.3.5", "get-proto": "^1.0.1", "gopd": "^1.2.0", "has-tostringtag": "^1.0.2" } }, "sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw=="],
+ "why-is-node-running": ["why-is-node-running@2.3.0", "", { "dependencies": { "siginfo": "^2.0.0", "stackback": "0.0.2" }, "bin": { "why-is-node-running": "cli.js" } }, "sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w=="],
+
"wonka": ["wonka@6.3.5", "", {}, "sha512-SSil+ecw6B4/Dm7Pf2sAshKQ5hWFvfyGlfPbEd6A14dOH6VDjrmbY86u6nZvy9omGwwIPFR8V41+of1EezgoUw=="],
"word-wrap": ["word-wrap@1.2.5", "", {}, "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA=="],
- "wrap-ansi": ["wrap-ansi@7.0.0", "", { "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0" } }, "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q=="],
-
- "wrap-ansi-cjs": ["wrap-ansi@7.0.0", "", { "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0" } }, "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q=="],
+ "wrap-ansi": ["wrap-ansi@10.0.0", "", { "dependencies": { "ansi-styles": "^6.2.3", "string-width": "^8.2.0", "strip-ansi": "^7.1.2" } }, "sha512-SGcvg80f0wUy2/fXES19feHMz8E0JoXv2uNgHOu4Dgi2OrCy1lqwFYEJz1BLbDI0exjPMe/ZdzZ/YpGECBG/aQ=="],
"wrappy": ["wrappy@1.0.2", "", {}, "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ=="],
@@ -3079,19 +3176,21 @@
"xcode": ["xcode@3.0.1", "", { "dependencies": { "simple-plist": "^1.1.0", "uuid": "^7.0.3" } }, "sha512-kCz5k7J7XbJtjABOvkc5lJmkiDh8VhjVCGNiqdKCscmVpdVUpEAyXv1xmCLkQJ5dsHqx3IPO4XW+NTDhU/fatA=="],
- "xdg-basedir": ["xdg-basedir@5.1.0", "", {}, "sha512-GCPAHLvrIH13+c0SuacwvRYj2SxJXQ4kaVTT5xgL3kPrz56XxkF21IGhjSE1+W0aw7gpBWRGXLCPnPby6lSpmQ=="],
+ "xml-name-validator": ["xml-name-validator@5.0.0", "", {}, "sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg=="],
"xml2js": ["xml2js@0.6.0", "", { "dependencies": { "sax": ">=0.6.0", "xmlbuilder": "~11.0.0" } }, "sha512-eLTh0kA8uHceqesPqSE+VvO1CDDJWMwlQfB6LuN6T8w6MaDJ8Txm8P7s5cHD0miF0V+GGTZrDQfxPZQVsur33w=="],
"xmlbuilder": ["xmlbuilder@15.1.1", "", {}, "sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg=="],
+ "xmlchars": ["xmlchars@2.2.0", "", {}, "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw=="],
+
"xtend": ["xtend@4.0.2", "", {}, "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ=="],
"y18n": ["y18n@5.0.8", "", {}, "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA=="],
"yallist": ["yallist@5.0.0", "", {}, "sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw=="],
- "yaml": ["yaml@2.8.1", "", { "bin": { "yaml": "bin.mjs" } }, "sha512-lcYcMxX2PO9XMGvAJkJ3OsNMw+/7FKes7/hgerGUYWIoWu5j/+YQqcZr5JnPZWzOsEBgMbSbiSTn/dv/69Mkpw=="],
+ "yaml": ["yaml@2.9.0", "", { "bin": { "yaml": "bin.mjs" } }, "sha512-2AvhNX3mb8zd6Zy7INTtSpl1F15HW6Wnqj0srWlkKLcpYl/gMIMJiyuGq2KeI2YFxUPjdlB+3Lc10seMLtL4cA=="],
"yargs": ["yargs@17.7.2", "", { "dependencies": { "cliui": "^8.0.1", "escalade": "^3.1.1", "get-caller-file": "^2.0.5", "require-directory": "^2.1.1", "string-width": "^4.2.3", "y18n": "^5.0.5", "yargs-parser": "^21.1.1" } }, "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w=="],
@@ -3107,85 +3206,143 @@
"zod-validation-error": ["zod-validation-error@4.0.2", "", { "peerDependencies": { "zod": "^3.25.0 || ^4.0.0" } }, "sha512-Q6/nZLe6jxuU80qb/4uJ4t5v2VEZ44lzQjPDhYJNztRQ4wyWc6VF3D3Kb/fAuPetZQnhS3hnajCf9CsWesghLQ=="],
+ "@babel/core/@babel/parser": ["@babel/parser@7.28.5", "", { "dependencies": { "@babel/types": "^7.28.5" }, "bin": "./bin/babel-parser.js" }, "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ=="],
+
+ "@babel/core/@babel/traverse": ["@babel/traverse@7.28.5", "", { "dependencies": { "@babel/code-frame": "^7.27.1", "@babel/generator": "^7.28.5", "@babel/helper-globals": "^7.28.0", "@babel/parser": "^7.28.5", "@babel/template": "^7.27.2", "@babel/types": "^7.28.5", "debug": "^4.3.1" } }, "sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ=="],
+
+ "@babel/generator/@babel/parser": ["@babel/parser@7.28.5", "", { "dependencies": { "@babel/types": "^7.28.5" }, "bin": "./bin/babel-parser.js" }, "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ=="],
+
"@babel/helper-compilation-targets/lru-cache": ["lru-cache@5.1.1", "", { "dependencies": { "yallist": "^3.0.2" } }, "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w=="],
+ "@babel/helper-create-class-features-plugin/@babel/traverse": ["@babel/traverse@7.28.5", "", { "dependencies": { "@babel/code-frame": "^7.27.1", "@babel/generator": "^7.28.5", "@babel/helper-globals": "^7.28.0", "@babel/parser": "^7.28.5", "@babel/template": "^7.27.2", "@babel/types": "^7.28.5", "debug": "^4.3.1" } }, "sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ=="],
+
"@babel/helper-define-polyfill-provider/resolve": ["resolve@1.22.11", "", { "dependencies": { "is-core-module": "^2.16.1", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" }, "bin": { "resolve": "bin/resolve" } }, "sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ=="],
+ "@babel/helper-member-expression-to-functions/@babel/traverse": ["@babel/traverse@7.28.5", "", { "dependencies": { "@babel/code-frame": "^7.27.1", "@babel/generator": "^7.28.5", "@babel/helper-globals": "^7.28.0", "@babel/parser": "^7.28.5", "@babel/template": "^7.27.2", "@babel/types": "^7.28.5", "debug": "^4.3.1" } }, "sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ=="],
+
+ "@babel/helper-module-imports/@babel/traverse": ["@babel/traverse@7.28.5", "", { "dependencies": { "@babel/code-frame": "^7.27.1", "@babel/generator": "^7.28.5", "@babel/helper-globals": "^7.28.0", "@babel/parser": "^7.28.5", "@babel/template": "^7.27.2", "@babel/types": "^7.28.5", "debug": "^4.3.1" } }, "sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ=="],
+
+ "@babel/helper-module-transforms/@babel/traverse": ["@babel/traverse@7.28.5", "", { "dependencies": { "@babel/code-frame": "^7.27.1", "@babel/generator": "^7.28.5", "@babel/helper-globals": "^7.28.0", "@babel/parser": "^7.28.5", "@babel/template": "^7.27.2", "@babel/types": "^7.28.5", "debug": "^4.3.1" } }, "sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ=="],
+
+ "@babel/helper-remap-async-to-generator/@babel/traverse": ["@babel/traverse@7.28.5", "", { "dependencies": { "@babel/code-frame": "^7.27.1", "@babel/generator": "^7.28.5", "@babel/helper-globals": "^7.28.0", "@babel/parser": "^7.28.5", "@babel/template": "^7.27.2", "@babel/types": "^7.28.5", "debug": "^4.3.1" } }, "sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ=="],
+
+ "@babel/helper-replace-supers/@babel/traverse": ["@babel/traverse@7.28.5", "", { "dependencies": { "@babel/code-frame": "^7.27.1", "@babel/generator": "^7.28.5", "@babel/helper-globals": "^7.28.0", "@babel/parser": "^7.28.5", "@babel/template": "^7.27.2", "@babel/types": "^7.28.5", "debug": "^4.3.1" } }, "sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ=="],
+
+ "@babel/helper-skip-transparent-expression-wrappers/@babel/traverse": ["@babel/traverse@7.28.5", "", { "dependencies": { "@babel/code-frame": "^7.27.1", "@babel/generator": "^7.28.5", "@babel/helper-globals": "^7.28.0", "@babel/parser": "^7.28.5", "@babel/template": "^7.27.2", "@babel/types": "^7.28.5", "debug": "^4.3.1" } }, "sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ=="],
+
+ "@babel/helper-wrap-function/@babel/traverse": ["@babel/traverse@7.28.5", "", { "dependencies": { "@babel/code-frame": "^7.27.1", "@babel/generator": "^7.28.5", "@babel/helper-globals": "^7.28.0", "@babel/parser": "^7.28.5", "@babel/template": "^7.27.2", "@babel/types": "^7.28.5", "debug": "^4.3.1" } }, "sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ=="],
+
"@babel/highlight/chalk": ["chalk@2.4.2", "", { "dependencies": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", "supports-color": "^5.3.0" } }, "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ=="],
+ "@babel/plugin-transform-async-generator-functions/@babel/traverse": ["@babel/traverse@7.28.5", "", { "dependencies": { "@babel/code-frame": "^7.27.1", "@babel/generator": "^7.28.5", "@babel/helper-globals": "^7.28.0", "@babel/parser": "^7.28.5", "@babel/template": "^7.27.2", "@babel/types": "^7.28.5", "debug": "^4.3.1" } }, "sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ=="],
+
+ "@babel/plugin-transform-classes/@babel/traverse": ["@babel/traverse@7.28.5", "", { "dependencies": { "@babel/code-frame": "^7.27.1", "@babel/generator": "^7.28.5", "@babel/helper-globals": "^7.28.0", "@babel/parser": "^7.28.5", "@babel/template": "^7.27.2", "@babel/types": "^7.28.5", "debug": "^4.3.1" } }, "sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ=="],
+
+ "@babel/plugin-transform-destructuring/@babel/traverse": ["@babel/traverse@7.28.5", "", { "dependencies": { "@babel/code-frame": "^7.27.1", "@babel/generator": "^7.28.5", "@babel/helper-globals": "^7.28.0", "@babel/parser": "^7.28.5", "@babel/template": "^7.27.2", "@babel/types": "^7.28.5", "debug": "^4.3.1" } }, "sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ=="],
+
+ "@babel/plugin-transform-function-name/@babel/traverse": ["@babel/traverse@7.28.5", "", { "dependencies": { "@babel/code-frame": "^7.27.1", "@babel/generator": "^7.28.5", "@babel/helper-globals": "^7.28.0", "@babel/parser": "^7.28.5", "@babel/template": "^7.27.2", "@babel/types": "^7.28.5", "debug": "^4.3.1" } }, "sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ=="],
+
+ "@babel/plugin-transform-object-rest-spread/@babel/traverse": ["@babel/traverse@7.28.5", "", { "dependencies": { "@babel/code-frame": "^7.27.1", "@babel/generator": "^7.28.5", "@babel/helper-globals": "^7.28.0", "@babel/parser": "^7.28.5", "@babel/template": "^7.27.2", "@babel/types": "^7.28.5", "debug": "^4.3.1" } }, "sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ=="],
+
+ "@babel/template/@babel/parser": ["@babel/parser@7.28.5", "", { "dependencies": { "@babel/types": "^7.28.5" }, "bin": "./bin/babel-parser.js" }, "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ=="],
+
+ "@babel/traverse/@babel/parser": ["@babel/parser@7.28.5", "", { "dependencies": { "@babel/types": "^7.28.5" }, "bin": "./bin/babel-parser.js" }, "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ=="],
+
+ "@babel/traverse--for-generate-function-map/@babel/parser": ["@babel/parser@7.28.5", "", { "dependencies": { "@babel/types": "^7.28.5" }, "bin": "./bin/babel-parser.js" }, "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ=="],
+
"@base-ui/react/@babel/runtime": ["@babel/runtime@7.29.2", "", {}, "sha512-JiDShH45zKHWyGe4ZNVRrCjBz8Nh9TMmZG1kh4QTK8hCBTWBi8Da+i7s1fJw7/lYpM4ccepSNfqzZ/QvABBi5g=="],
"@base-ui/utils/@babel/runtime": ["@babel/runtime@7.29.2", "", {}, "sha512-JiDShH45zKHWyGe4ZNVRrCjBz8Nh9TMmZG1kh4QTK8hCBTWBi8Da+i7s1fJw7/lYpM4ccepSNfqzZ/QvABBi5g=="],
"@eslint-community/eslint-utils/eslint-visitor-keys": ["eslint-visitor-keys@3.4.3", "", {}, "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag=="],
- "@expo/cli/glob": ["glob@13.0.6", "", { "dependencies": { "minimatch": "^10.2.2", "minipass": "^7.1.3", "path-scurry": "^2.0.2" } }, "sha512-Wjlyrolmm8uDpm/ogGyXZXb1Z+Ca2B8NbJwqBVg0axK9GbBeoS7yGV6vjXnYdGm6X53iehEuxxbyiKp8QmN4Vw=="],
+ "@eslint/eslintrc/espree": ["espree@10.4.0", "", { "dependencies": { "acorn": "^8.15.0", "acorn-jsx": "^5.3.2", "eslint-visitor-keys": "^4.2.1" } }, "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ=="],
+
+ "@eslint/eslintrc/globals": ["globals@14.0.0", "", {}, "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ=="],
+
+ "@eslint/eslintrc/minimatch": ["minimatch@3.1.5", "", { "dependencies": { "brace-expansion": "^1.1.7" } }, "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w=="],
+
+ "@expo/cli/chalk": ["chalk@4.1.2", "", { "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } }, "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="],
"@expo/cli/minimatch": ["minimatch@9.0.5", "", { "dependencies": { "brace-expansion": "^2.0.1" } }, "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow=="],
"@expo/cli/ora": ["ora@3.4.0", "", { "dependencies": { "chalk": "^2.4.2", "cli-cursor": "^2.1.0", "cli-spinners": "^2.0.0", "log-symbols": "^2.2.0", "strip-ansi": "^5.2.0", "wcwidth": "^1.0.1" } }, "sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg=="],
+ "@expo/cli/picomatch": ["picomatch@3.0.1", "", {}, "sha512-I3EurrIQMlRc9IaAZnqRR044Phh2DXY+55o7uJ0V+hYZAcQYSuFWsc9q5PvyDHUSCe1Qxn/iBz+78s86zWnGag=="],
+
"@expo/cli/resolve": ["resolve@1.22.11", "", { "dependencies": { "is-core-module": "^2.16.1", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" }, "bin": { "resolve": "bin/resolve" } }, "sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ=="],
"@expo/cli/semver": ["semver@7.7.3", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q=="],
+ "@expo/cli/undici": ["undici@6.22.0", "", {}, "sha512-hU/10obOIu62MGYjdskASR3CUAiYaFTtC9Pa6vHyf//mAipSvSQg6od2CnJswq7fvzNS3zJhxoRkgNVaHurWKw=="],
+
+ "@expo/cli/wrap-ansi": ["wrap-ansi@7.0.0", "", { "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0" } }, "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q=="],
+
"@expo/cli/ws": ["ws@8.18.3", "", { "peerDependencies": { "bufferutil": "^4.0.1", "utf-8-validate": ">=5.0.2" }, "optionalPeers": ["bufferutil", "utf-8-validate"] }, "sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg=="],
"@expo/config/@babel/code-frame": ["@babel/code-frame@7.10.4", "", { "dependencies": { "@babel/highlight": "^7.10.4" } }, "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg=="],
- "@expo/config/glob": ["glob@13.0.6", "", { "dependencies": { "minimatch": "^10.2.2", "minipass": "^7.1.3", "path-scurry": "^2.0.2" } }, "sha512-Wjlyrolmm8uDpm/ogGyXZXb1Z+Ca2B8NbJwqBVg0axK9GbBeoS7yGV6vjXnYdGm6X53iehEuxxbyiKp8QmN4Vw=="],
-
"@expo/config/semver": ["semver@7.7.3", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q=="],
- "@expo/config-plugins/glob": ["glob@13.0.6", "", { "dependencies": { "minimatch": "^10.2.2", "minipass": "^7.1.3", "path-scurry": "^2.0.2" } }, "sha512-Wjlyrolmm8uDpm/ogGyXZXb1Z+Ca2B8NbJwqBVg0axK9GbBeoS7yGV6vjXnYdGm6X53iehEuxxbyiKp8QmN4Vw=="],
+ "@expo/config-plugins/chalk": ["chalk@4.1.2", "", { "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } }, "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="],
"@expo/config-plugins/semver": ["semver@7.7.3", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q=="],
"@expo/devcert/debug": ["debug@3.2.7", "", { "dependencies": { "ms": "^2.1.1" } }, "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ=="],
+ "@expo/devtools/chalk": ["chalk@4.1.2", "", { "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } }, "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="],
+
+ "@expo/env/chalk": ["chalk@4.1.2", "", { "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } }, "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="],
+
"@expo/env/dotenv": ["dotenv@16.4.7", "", {}, "sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ=="],
"@expo/env/dotenv-expand": ["dotenv-expand@11.0.7", "", { "dependencies": { "dotenv": "^16.4.5" } }, "sha512-zIHwmZPRshsCdpMDyVsqGmgyP0yT8GAgXUnkdAoJisxvf33k7yO6OuoKmcTGuXPWSsm8Oh88nZicRLA9Y0rUeA=="],
- "@expo/fingerprint/glob": ["glob@13.0.6", "", { "dependencies": { "minimatch": "^10.2.2", "minipass": "^7.1.3", "path-scurry": "^2.0.2" } }, "sha512-Wjlyrolmm8uDpm/ogGyXZXb1Z+Ca2B8NbJwqBVg0axK9GbBeoS7yGV6vjXnYdGm6X53iehEuxxbyiKp8QmN4Vw=="],
+ "@expo/fingerprint/chalk": ["chalk@4.1.2", "", { "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } }, "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="],
"@expo/fingerprint/minimatch": ["minimatch@9.0.5", "", { "dependencies": { "brace-expansion": "^2.0.1" } }, "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow=="],
"@expo/fingerprint/semver": ["semver@7.7.3", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q=="],
+ "@expo/image-utils/chalk": ["chalk@4.1.2", "", { "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } }, "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="],
+
"@expo/image-utils/semver": ["semver@7.7.3", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q=="],
+ "@expo/metro-config/chalk": ["chalk@4.1.2", "", { "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } }, "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="],
+
"@expo/metro-config/dotenv": ["dotenv@16.4.7", "", {}, "sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ=="],
"@expo/metro-config/dotenv-expand": ["dotenv-expand@11.0.7", "", { "dependencies": { "dotenv": "^16.4.5" } }, "sha512-zIHwmZPRshsCdpMDyVsqGmgyP0yT8GAgXUnkdAoJisxvf33k7yO6OuoKmcTGuXPWSsm8Oh88nZicRLA9Y0rUeA=="],
- "@expo/metro-config/glob": ["glob@13.0.6", "", { "dependencies": { "minimatch": "^10.2.2", "minipass": "^7.1.3", "path-scurry": "^2.0.2" } }, "sha512-Wjlyrolmm8uDpm/ogGyXZXb1Z+Ca2B8NbJwqBVg0axK9GbBeoS7yGV6vjXnYdGm6X53iehEuxxbyiKp8QmN4Vw=="],
-
"@expo/metro-config/hermes-parser": ["hermes-parser@0.29.1", "", { "dependencies": { "hermes-estree": "0.29.1" } }, "sha512-xBHWmUtRC5e/UL0tI7Ivt2riA/YBq9+SiYFU7C1oBa/j2jYGlIF9043oak1F47ihuDIxQ5nbsKueYJDRY02UgA=="],
"@expo/metro-config/minimatch": ["minimatch@9.0.5", "", { "dependencies": { "brace-expansion": "^2.0.1" } }, "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow=="],
"@expo/metro-config/postcss": ["postcss@8.4.49", "", { "dependencies": { "nanoid": "^3.3.7", "picocolors": "^1.1.1", "source-map-js": "^1.2.1" } }, "sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA=="],
+ "@expo/package-manager/chalk": ["chalk@4.1.2", "", { "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } }, "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="],
+
"@expo/package-manager/ora": ["ora@3.4.0", "", { "dependencies": { "chalk": "^2.4.2", "cli-cursor": "^2.1.0", "cli-spinners": "^2.0.0", "log-symbols": "^2.2.0", "strip-ansi": "^5.2.0", "wcwidth": "^1.0.1" } }, "sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg=="],
"@expo/prebuild-config/semver": ["semver@7.7.3", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q=="],
"@expo/xcpretty/@babel/code-frame": ["@babel/code-frame@7.10.4", "", { "dependencies": { "@babel/highlight": "^7.10.4" } }, "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg=="],
+ "@expo/xcpretty/chalk": ["chalk@4.1.2", "", { "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } }, "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="],
+
"@expo/xcpretty/js-yaml": ["js-yaml@4.1.0", "", { "dependencies": { "argparse": "^2.0.1" }, "bin": { "js-yaml": "bin/js-yaml.js" } }, "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA=="],
"@fastify/otel/@opentelemetry/instrumentation": ["@opentelemetry/instrumentation@0.212.0", "", { "dependencies": { "@opentelemetry/api-logs": "0.212.0", "import-in-the-middle": "^2.0.6", "require-in-the-middle": "^8.0.0" }, "peerDependencies": { "@opentelemetry/api": "^1.3.0" } }, "sha512-IyXmpNnifNouMOe0I/gX7ENfv2ZCNdYTF0FpCsoBcpbIHzk81Ww9rQTYTnvghszCg7qGrIhNvWC8dhEifgX9Jg=="],
- "@fastify/otel/minimatch": ["minimatch@10.2.4", "", { "dependencies": { "brace-expansion": "^5.0.2" } }, "sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg=="],
+ "@ianvs/prettier-plugin-sort-imports/@babel/parser": ["@babel/parser@7.28.5", "", { "dependencies": { "@babel/types": "^7.28.5" }, "bin": "./bin/babel-parser.js" }, "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ=="],
+
+ "@ianvs/prettier-plugin-sort-imports/@babel/traverse": ["@babel/traverse@7.28.5", "", { "dependencies": { "@babel/code-frame": "^7.27.1", "@babel/generator": "^7.28.5", "@babel/helper-globals": "^7.28.0", "@babel/parser": "^7.28.5", "@babel/template": "^7.27.2", "@babel/types": "^7.28.5", "debug": "^4.3.1" } }, "sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ=="],
"@ianvs/prettier-plugin-sort-imports/semver": ["semver@7.7.3", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q=="],
"@inquirer/core/wrap-ansi": ["wrap-ansi@6.2.0", "", { "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0" } }, "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA=="],
- "@isaacs/cliui/string-width": ["string-width@5.1.2", "", { "dependencies": { "eastasianwidth": "^0.2.0", "emoji-regex": "^9.2.2", "strip-ansi": "^7.0.1" } }, "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA=="],
-
- "@isaacs/cliui/wrap-ansi": ["wrap-ansi@8.1.0", "", { "dependencies": { "ansi-styles": "^6.1.0", "string-width": "^5.0.1", "strip-ansi": "^7.0.1" } }, "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ=="],
+ "@isaacs/fs-minipass/minipass": ["minipass@7.1.2", "", {}, "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw=="],
"@istanbuljs/load-nyc-config/camelcase": ["camelcase@5.3.1", "", {}, "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg=="],
@@ -3197,10 +3354,20 @@
"@jest/fake-timers/@types/node": ["@types/node@22.18.13", "", { "dependencies": { "undici-types": "~6.21.0" } }, "sha512-Bo45YKIjnmFtv6I1TuC8AaHBbqXtIo+Om5fE4QiU1Tj8QR/qt+8O3BAtOimG5IFmwaWiPmB3Mv3jtYzBA4Us2A=="],
+ "@jest/transform/chalk": ["chalk@4.1.2", "", { "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } }, "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="],
+
"@jest/types/@types/node": ["@types/node@22.18.13", "", { "dependencies": { "undici-types": "~6.21.0" } }, "sha512-Bo45YKIjnmFtv6I1TuC8AaHBbqXtIo+Om5fE4QiU1Tj8QR/qt+8O3BAtOimG5IFmwaWiPmB3Mv3jtYzBA4Us2A=="],
+ "@jest/types/chalk": ["chalk@4.1.2", "", { "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } }, "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="],
+
+ "@napi-rs/wasm-runtime/@tybys/wasm-util": ["@tybys/wasm-util@0.10.2", "", { "dependencies": { "tslib": "^2.4.0" } }, "sha512-RoBvJ2X0wuKlWFIjrwffGw1IqZHKQqzIchKaadZZfnNpsAYp2mM0h36JtPCjNDAHGgYez/15uMBpfGwchhiMgg=="],
+
+ "@node-rs/argon2-wasm32-wasi/@emnapi/core": ["@emnapi/core@0.45.0", "", { "dependencies": { "tslib": "^2.4.0" } }, "sha512-DPWjcUDQkCeEM4VnljEOEcXdAD7pp8zSZsgOujk/LGIwCXWbXJngin+MO4zbH429lzeC3WbYLGjE2MaUOwzpyw=="],
+
"@node-rs/argon2-wasm32-wasi/@emnapi/runtime": ["@emnapi/runtime@0.45.0", "", { "dependencies": { "tslib": "^2.4.0" } }, "sha512-Txumi3td7J4A/xTTwlssKieHKTGl3j4A1tglBx72auZ49YK7ePY6XZricgIg9mnZT4xPfA+UPCUdnhRuEFDL+w=="],
+ "@node-rs/bcrypt-wasm32-wasi/@emnapi/core": ["@emnapi/core@0.45.0", "", { "dependencies": { "tslib": "^2.4.0" } }, "sha512-DPWjcUDQkCeEM4VnljEOEcXdAD7pp8zSZsgOujk/LGIwCXWbXJngin+MO4zbH429lzeC3WbYLGjE2MaUOwzpyw=="],
+
"@node-rs/bcrypt-wasm32-wasi/@emnapi/runtime": ["@emnapi/runtime@0.45.0", "", { "dependencies": { "tslib": "^2.4.0" } }, "sha512-Txumi3td7J4A/xTTwlssKieHKTGl3j4A1tglBx72auZ49YK7ePY6XZricgIg9mnZT4xPfA+UPCUdnhRuEFDL+w=="],
"@opentelemetry/instrumentation/require-in-the-middle": ["require-in-the-middle@8.0.1", "", { "dependencies": { "debug": "^4.3.5", "module-details-from-path": "^1.0.3" } }, "sha512-QT7FVMXfWOYFbeRBF6nu+I6tr2Tf3u0q8RIEjNob/heKY/nh7drD/k7eeMFmSQgnTtCzLDcCu/XEnpW2wk4xCQ=="],
@@ -3209,14 +3376,160 @@
"@prisma/instrumentation/@opentelemetry/instrumentation": ["@opentelemetry/instrumentation@0.207.0", "", { "dependencies": { "@opentelemetry/api-logs": "0.207.0", "import-in-the-middle": "^2.0.0", "require-in-the-middle": "^8.0.0" }, "peerDependencies": { "@opentelemetry/api": "^1.3.0" } }, "sha512-y6eeli9+TLKnznrR8AZlQMSJT7wILpXH+6EYq5Vf/4Ao+huI7EedxQHwRgVUOMLFbe7VFDvHJrX9/f4lcwnJsA=="],
+ "@radix-ui/react-accordion/@radix-ui/react-context": ["@radix-ui/react-context@1.1.2", "", { "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA=="],
+
+ "@radix-ui/react-accordion/@radix-ui/react-primitive": ["@radix-ui/react-primitive@2.1.3", "", { "dependencies": { "@radix-ui/react-slot": "1.2.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ=="],
+
+ "@radix-ui/react-alert-dialog/@radix-ui/react-context": ["@radix-ui/react-context@1.1.2", "", { "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA=="],
+
+ "@radix-ui/react-alert-dialog/@radix-ui/react-primitive": ["@radix-ui/react-primitive@2.1.3", "", { "dependencies": { "@radix-ui/react-slot": "1.2.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ=="],
+
+ "@radix-ui/react-alert-dialog/@radix-ui/react-slot": ["@radix-ui/react-slot@1.2.3", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A=="],
+
+ "@radix-ui/react-arrow/@radix-ui/react-primitive": ["@radix-ui/react-primitive@2.1.3", "", { "dependencies": { "@radix-ui/react-slot": "1.2.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ=="],
+
+ "@radix-ui/react-aspect-ratio/@radix-ui/react-primitive": ["@radix-ui/react-primitive@2.1.3", "", { "dependencies": { "@radix-ui/react-slot": "1.2.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ=="],
+
+ "@radix-ui/react-checkbox/@radix-ui/react-context": ["@radix-ui/react-context@1.1.2", "", { "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA=="],
+
+ "@radix-ui/react-checkbox/@radix-ui/react-primitive": ["@radix-ui/react-primitive@2.1.3", "", { "dependencies": { "@radix-ui/react-slot": "1.2.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ=="],
+
+ "@radix-ui/react-collapsible/@radix-ui/react-context": ["@radix-ui/react-context@1.1.2", "", { "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA=="],
+
+ "@radix-ui/react-collapsible/@radix-ui/react-primitive": ["@radix-ui/react-primitive@2.1.3", "", { "dependencies": { "@radix-ui/react-slot": "1.2.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ=="],
+
+ "@radix-ui/react-collection/@radix-ui/react-context": ["@radix-ui/react-context@1.1.2", "", { "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA=="],
+
+ "@radix-ui/react-collection/@radix-ui/react-primitive": ["@radix-ui/react-primitive@2.1.3", "", { "dependencies": { "@radix-ui/react-slot": "1.2.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ=="],
+
+ "@radix-ui/react-collection/@radix-ui/react-slot": ["@radix-ui/react-slot@1.2.3", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A=="],
+
+ "@radix-ui/react-context-menu/@radix-ui/react-context": ["@radix-ui/react-context@1.1.2", "", { "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA=="],
+
+ "@radix-ui/react-context-menu/@radix-ui/react-primitive": ["@radix-ui/react-primitive@2.1.3", "", { "dependencies": { "@radix-ui/react-slot": "1.2.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ=="],
+
+ "@radix-ui/react-dialog/@radix-ui/react-context": ["@radix-ui/react-context@1.1.2", "", { "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA=="],
+
+ "@radix-ui/react-dialog/@radix-ui/react-primitive": ["@radix-ui/react-primitive@2.1.3", "", { "dependencies": { "@radix-ui/react-slot": "1.2.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ=="],
+
+ "@radix-ui/react-dialog/@radix-ui/react-slot": ["@radix-ui/react-slot@1.2.3", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A=="],
+
+ "@radix-ui/react-dismissable-layer/@radix-ui/react-primitive": ["@radix-ui/react-primitive@2.1.3", "", { "dependencies": { "@radix-ui/react-slot": "1.2.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ=="],
+
+ "@radix-ui/react-dropdown-menu/@radix-ui/react-context": ["@radix-ui/react-context@1.1.2", "", { "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA=="],
+
+ "@radix-ui/react-dropdown-menu/@radix-ui/react-primitive": ["@radix-ui/react-primitive@2.1.3", "", { "dependencies": { "@radix-ui/react-slot": "1.2.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ=="],
+
+ "@radix-ui/react-focus-scope/@radix-ui/react-primitive": ["@radix-ui/react-primitive@2.1.3", "", { "dependencies": { "@radix-ui/react-slot": "1.2.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ=="],
+
+ "@radix-ui/react-form/@radix-ui/react-context": ["@radix-ui/react-context@1.1.2", "", { "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA=="],
+
+ "@radix-ui/react-form/@radix-ui/react-label": ["@radix-ui/react-label@2.1.7", "", { "dependencies": { "@radix-ui/react-primitive": "2.1.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-YT1GqPSL8kJn20djelMX7/cTRp/Y9w5IZHvfxQTVHrOqa2yMl7i/UfMqKRU5V7mEyKTrUVgJXhNQPVCG8PBLoQ=="],
+
+ "@radix-ui/react-form/@radix-ui/react-primitive": ["@radix-ui/react-primitive@2.1.3", "", { "dependencies": { "@radix-ui/react-slot": "1.2.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ=="],
+
+ "@radix-ui/react-hover-card/@radix-ui/react-context": ["@radix-ui/react-context@1.1.2", "", { "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA=="],
+
+ "@radix-ui/react-hover-card/@radix-ui/react-primitive": ["@radix-ui/react-primitive@2.1.3", "", { "dependencies": { "@radix-ui/react-slot": "1.2.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ=="],
+
+ "@radix-ui/react-menu/@radix-ui/react-context": ["@radix-ui/react-context@1.1.2", "", { "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA=="],
+
+ "@radix-ui/react-menu/@radix-ui/react-primitive": ["@radix-ui/react-primitive@2.1.3", "", { "dependencies": { "@radix-ui/react-slot": "1.2.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ=="],
+
+ "@radix-ui/react-menu/@radix-ui/react-slot": ["@radix-ui/react-slot@1.2.3", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A=="],
+
+ "@radix-ui/react-menubar/@radix-ui/react-context": ["@radix-ui/react-context@1.1.2", "", { "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA=="],
+
+ "@radix-ui/react-menubar/@radix-ui/react-primitive": ["@radix-ui/react-primitive@2.1.3", "", { "dependencies": { "@radix-ui/react-slot": "1.2.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ=="],
+
+ "@radix-ui/react-navigation-menu/@radix-ui/react-context": ["@radix-ui/react-context@1.1.2", "", { "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA=="],
+
+ "@radix-ui/react-navigation-menu/@radix-ui/react-primitive": ["@radix-ui/react-primitive@2.1.3", "", { "dependencies": { "@radix-ui/react-slot": "1.2.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ=="],
+
+ "@radix-ui/react-one-time-password-field/@radix-ui/react-context": ["@radix-ui/react-context@1.1.2", "", { "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA=="],
+
+ "@radix-ui/react-one-time-password-field/@radix-ui/react-primitive": ["@radix-ui/react-primitive@2.1.3", "", { "dependencies": { "@radix-ui/react-slot": "1.2.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ=="],
+
+ "@radix-ui/react-password-toggle-field/@radix-ui/react-context": ["@radix-ui/react-context@1.1.2", "", { "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA=="],
+
+ "@radix-ui/react-password-toggle-field/@radix-ui/react-primitive": ["@radix-ui/react-primitive@2.1.3", "", { "dependencies": { "@radix-ui/react-slot": "1.2.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ=="],
+
+ "@radix-ui/react-popover/@radix-ui/react-context": ["@radix-ui/react-context@1.1.2", "", { "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA=="],
+
+ "@radix-ui/react-popover/@radix-ui/react-primitive": ["@radix-ui/react-primitive@2.1.3", "", { "dependencies": { "@radix-ui/react-slot": "1.2.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ=="],
+
+ "@radix-ui/react-popover/@radix-ui/react-slot": ["@radix-ui/react-slot@1.2.3", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A=="],
+
"@radix-ui/react-popper/@floating-ui/react-dom": ["@floating-ui/react-dom@2.1.6", "", { "dependencies": { "@floating-ui/dom": "^1.7.4" }, "peerDependencies": { "react": ">=16.8.0", "react-dom": ">=16.8.0" } }, "sha512-4JX6rEatQEvlmgU80wZyq9RT96HZJa88q8hp0pBd+LrczeDI4o6uA2M+uvxngVHo4Ihr8uibXxH6+70zhAFrVw=="],
- "@react-email/components/@react-email/render": ["@react-email/render@1.3.0", "", { "dependencies": { "html-to-text": "^9.0.5", "prettier": "^3.5.3", "react-promise-suspense": "^0.3.4" }, "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-AuKT93RJO+eBg9FIo5+QzVCUTB62sBcKewtDwoKS46KMTRSHeLH0oi3k8+B3ag51zgxAmk6Dda2630KVKNaggg=="],
+ "@radix-ui/react-popper/@radix-ui/react-context": ["@radix-ui/react-context@1.1.2", "", { "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA=="],
- "@react-email/render/prettier": ["prettier@3.6.2", "", { "bin": { "prettier": "bin/prettier.cjs" } }, "sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ=="],
+ "@radix-ui/react-popper/@radix-ui/react-primitive": ["@radix-ui/react-primitive@2.1.3", "", { "dependencies": { "@radix-ui/react-slot": "1.2.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ=="],
+
+ "@radix-ui/react-portal/@radix-ui/react-primitive": ["@radix-ui/react-primitive@2.1.3", "", { "dependencies": { "@radix-ui/react-slot": "1.2.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ=="],
+
+ "@radix-ui/react-radio-group/@radix-ui/react-context": ["@radix-ui/react-context@1.1.2", "", { "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA=="],
+
+ "@radix-ui/react-radio-group/@radix-ui/react-primitive": ["@radix-ui/react-primitive@2.1.3", "", { "dependencies": { "@radix-ui/react-slot": "1.2.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ=="],
+
+ "@radix-ui/react-roving-focus/@radix-ui/react-context": ["@radix-ui/react-context@1.1.2", "", { "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA=="],
+
+ "@radix-ui/react-roving-focus/@radix-ui/react-primitive": ["@radix-ui/react-primitive@2.1.3", "", { "dependencies": { "@radix-ui/react-slot": "1.2.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ=="],
+
+ "@radix-ui/react-scroll-area/@radix-ui/react-context": ["@radix-ui/react-context@1.1.2", "", { "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA=="],
+
+ "@radix-ui/react-scroll-area/@radix-ui/react-primitive": ["@radix-ui/react-primitive@2.1.3", "", { "dependencies": { "@radix-ui/react-slot": "1.2.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ=="],
+
+ "@radix-ui/react-select/@radix-ui/react-context": ["@radix-ui/react-context@1.1.2", "", { "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA=="],
+
+ "@radix-ui/react-select/@radix-ui/react-primitive": ["@radix-ui/react-primitive@2.1.3", "", { "dependencies": { "@radix-ui/react-slot": "1.2.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ=="],
+
+ "@radix-ui/react-select/@radix-ui/react-slot": ["@radix-ui/react-slot@1.2.3", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A=="],
+
+ "@radix-ui/react-slider/@radix-ui/react-context": ["@radix-ui/react-context@1.1.2", "", { "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA=="],
+
+ "@radix-ui/react-slider/@radix-ui/react-primitive": ["@radix-ui/react-primitive@2.1.3", "", { "dependencies": { "@radix-ui/react-slot": "1.2.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ=="],
+
+ "@radix-ui/react-switch/@radix-ui/react-context": ["@radix-ui/react-context@1.1.2", "", { "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA=="],
+
+ "@radix-ui/react-switch/@radix-ui/react-primitive": ["@radix-ui/react-primitive@2.1.3", "", { "dependencies": { "@radix-ui/react-slot": "1.2.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ=="],
+
+ "@radix-ui/react-tabs/@radix-ui/react-context": ["@radix-ui/react-context@1.1.2", "", { "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA=="],
+
+ "@radix-ui/react-tabs/@radix-ui/react-primitive": ["@radix-ui/react-primitive@2.1.3", "", { "dependencies": { "@radix-ui/react-slot": "1.2.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ=="],
+
+ "@radix-ui/react-toast/@radix-ui/react-context": ["@radix-ui/react-context@1.1.2", "", { "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA=="],
+
+ "@radix-ui/react-toast/@radix-ui/react-primitive": ["@radix-ui/react-primitive@2.1.3", "", { "dependencies": { "@radix-ui/react-slot": "1.2.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ=="],
+
+ "@radix-ui/react-toggle/@radix-ui/react-primitive": ["@radix-ui/react-primitive@2.1.3", "", { "dependencies": { "@radix-ui/react-slot": "1.2.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ=="],
+
+ "@radix-ui/react-toggle-group/@radix-ui/react-context": ["@radix-ui/react-context@1.1.2", "", { "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA=="],
+
+ "@radix-ui/react-toggle-group/@radix-ui/react-primitive": ["@radix-ui/react-primitive@2.1.3", "", { "dependencies": { "@radix-ui/react-slot": "1.2.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ=="],
+
+ "@radix-ui/react-toolbar/@radix-ui/react-context": ["@radix-ui/react-context@1.1.2", "", { "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA=="],
+
+ "@radix-ui/react-toolbar/@radix-ui/react-primitive": ["@radix-ui/react-primitive@2.1.3", "", { "dependencies": { "@radix-ui/react-slot": "1.2.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ=="],
+
+ "@radix-ui/react-toolbar/@radix-ui/react-separator": ["@radix-ui/react-separator@1.1.7", "", { "dependencies": { "@radix-ui/react-primitive": "2.1.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-0HEb8R9E8A+jZjvmFCy/J4xhbXy3TV+9XSnGJ3KvTtjlIUy/YQ/p6UYZvi7YbeoeXdyU9+Y3scizK6hkY37baA=="],
+
+ "@radix-ui/react-tooltip/@radix-ui/react-context": ["@radix-ui/react-context@1.1.2", "", { "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA=="],
+
+ "@radix-ui/react-tooltip/@radix-ui/react-primitive": ["@radix-ui/react-primitive@2.1.3", "", { "dependencies": { "@radix-ui/react-slot": "1.2.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ=="],
+
+ "@radix-ui/react-tooltip/@radix-ui/react-slot": ["@radix-ui/react-slot@1.2.3", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A=="],
+
+ "@radix-ui/react-visually-hidden/@radix-ui/react-primitive": ["@radix-ui/react-primitive@2.1.3", "", { "dependencies": { "@radix-ui/react-slot": "1.2.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ=="],
+
+ "@react-email/tailwind/tailwindcss": ["tailwindcss@4.1.18", "", {}, "sha512-4+Z+0yiYyEtUVCScyfHCxOYP06L5Ne+JiHhY2IjR2KWMIWhJOYZKLSGZaP5HkZ8+bY0cxfzwDE5uOmzFXyIwxw=="],
+
+ "@react-native/babel-plugin-codegen/@babel/traverse": ["@babel/traverse@7.28.5", "", { "dependencies": { "@babel/code-frame": "^7.27.1", "@babel/generator": "^7.28.5", "@babel/helper-globals": "^7.28.0", "@babel/parser": "^7.28.5", "@babel/template": "^7.27.2", "@babel/types": "^7.28.5", "debug": "^4.3.1" } }, "sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ=="],
"@react-native/babel-plugin-codegen/@react-native/codegen": ["@react-native/codegen@0.81.5", "", { "dependencies": { "@babel/core": "^7.25.2", "@babel/parser": "^7.25.3", "glob": "^7.1.1", "hermes-parser": "0.29.1", "invariant": "^2.2.4", "nullthrows": "^1.1.1", "yargs": "^17.6.2" } }, "sha512-a2TDA03Up8lpSa9sh5VRGCQDXgCTOyDOFH+aqyinxp1HChG8uk89/G+nkJ9FPd0rqgi25eCTR16TWdS3b+fA6g=="],
+ "@react-native/codegen/@babel/parser": ["@babel/parser@7.28.5", "", { "dependencies": { "@babel/types": "^7.28.5" }, "bin": "./bin/babel-parser.js" }, "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ=="],
+
"@react-native/codegen/glob": ["glob@7.2.3", "", { "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.1.1", "once": "^1.3.0", "path-is-absolute": "^1.0.0" } }, "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q=="],
"@react-native/codegen/hermes-parser": ["hermes-parser@0.29.1", "", { "dependencies": { "hermes-estree": "0.29.1" } }, "sha512-xBHWmUtRC5e/UL0tI7Ivt2riA/YBq9+SiYFU7C1oBa/j2jYGlIF9043oak1F47ihuDIxQ5nbsKueYJDRY02UgA=="],
@@ -3237,11 +3550,17 @@
"@reduxjs/toolkit/immer": ["immer@11.1.4", "", {}, "sha512-XREFCPo6ksxVzP4E0ekD5aMdf8WMwmdNaz6vuvxgI40UaEiu6q3p8X52aU6GdyvLY3XXX/8R7JOTXStz/nBbRw=="],
+ "@rolldown/binding-wasm32-wasi/@emnapi/runtime": ["@emnapi/runtime@1.10.0", "", { "dependencies": { "tslib": "^2.4.0" } }, "sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA=="],
+
+ "@rollup/plugin-commonjs/estree-walker": ["estree-walker@2.0.2", "", {}, "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w=="],
+
"@rollup/plugin-commonjs/picomatch": ["picomatch@4.0.3", "", {}, "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q=="],
+ "@rollup/pluginutils/estree-walker": ["estree-walker@2.0.2", "", {}, "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w=="],
+
"@rollup/pluginutils/picomatch": ["picomatch@4.0.3", "", {}, "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q=="],
- "@sentry-internal/browser-utils/@sentry/core": ["@sentry/core@10.45.0", "", {}, "sha512-s69UXxvefeQxuZ5nY7/THtTrIEvJxNVCp3ns4kwoCw1qMpgpvn/296WCKVmM7MiwnaAdzEKnAvLAwaxZc2nM7Q=="],
+ "@sentry-internal/browser-utils/@sentry/core": ["@sentry/core@10.46.0", "", {}, "sha512-N3fj4zqBQOhXliS1Ne9euqIKuciHCGOJfPGQLwBoW9DNz03jF+NB8+dUKtrJ79YLoftjVgf8nbgwtADK7NR+2Q=="],
"@sentry-internal/replay/@sentry-internal/browser-utils": ["@sentry-internal/browser-utils@10.38.0", "", { "dependencies": { "@sentry/core": "10.38.0" } }, "sha512-UOJtYmdcxHCcV0NPfXFff/a95iXl/E0EhuQ1y0uE0BuZDMupWSF5t2BgC4HaE5Aw3RTjDF3XkSHWoIF6ohy7eA=="],
@@ -3253,35 +3572,49 @@
"@sentry/bundler-plugin-core/dotenv": ["dotenv@16.6.1", "", {}, "sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow=="],
- "@sentry/bundler-plugin-core/glob": ["glob@13.0.6", "", { "dependencies": { "minimatch": "^10.2.2", "minipass": "^7.1.3", "path-scurry": "^2.0.2" } }, "sha512-Wjlyrolmm8uDpm/ogGyXZXb1Z+Ca2B8NbJwqBVg0axK9GbBeoS7yGV6vjXnYdGm6X53iehEuxxbyiKp8QmN4Vw=="],
+ "@sentry/nextjs/@sentry/core": ["@sentry/core@10.46.0", "", {}, "sha512-N3fj4zqBQOhXliS1Ne9euqIKuciHCGOJfPGQLwBoW9DNz03jF+NB8+dUKtrJ79YLoftjVgf8nbgwtADK7NR+2Q=="],
- "@sentry/nextjs/@sentry/core": ["@sentry/core@10.45.0", "", {}, "sha512-s69UXxvefeQxuZ5nY7/THtTrIEvJxNVCp3ns4kwoCw1qMpgpvn/296WCKVmM7MiwnaAdzEKnAvLAwaxZc2nM7Q=="],
+ "@sentry/nextjs/@sentry/react": ["@sentry/react@10.46.0", "", { "dependencies": { "@sentry/browser": "10.46.0", "@sentry/core": "10.46.0" }, "peerDependencies": { "react": "^16.14.0 || 17.x || 18.x || 19.x" } }, "sha512-Rb1S+9OuUPVwsz7GWnQ6Kgf3azbsseUymIegg3JZHNcW/fM1nPpaljzTBnuineia113DH0pgMBcdrrZDLaosFQ=="],
- "@sentry/nextjs/@sentry/react": ["@sentry/react@10.45.0", "", { "dependencies": { "@sentry/browser": "10.45.0", "@sentry/core": "10.45.0" }, "peerDependencies": { "react": "^16.14.0 || 17.x || 18.x || 19.x" } }, "sha512-jLezuxi4BUIU3raKyAPR5xMbQG/nhwnWmKo5p11NCbLmWzkS+lxoyDTUB4B8TAKZLfdtdkKLOn1S0tFc8vbUHw=="],
+ "@sentry/node/@sentry/core": ["@sentry/core@10.46.0", "", {}, "sha512-N3fj4zqBQOhXliS1Ne9euqIKuciHCGOJfPGQLwBoW9DNz03jF+NB8+dUKtrJ79YLoftjVgf8nbgwtADK7NR+2Q=="],
- "@sentry/node/@sentry/core": ["@sentry/core@10.45.0", "", {}, "sha512-s69UXxvefeQxuZ5nY7/THtTrIEvJxNVCp3ns4kwoCw1qMpgpvn/296WCKVmM7MiwnaAdzEKnAvLAwaxZc2nM7Q=="],
+ "@sentry/node-core/@sentry/core": ["@sentry/core@10.46.0", "", {}, "sha512-N3fj4zqBQOhXliS1Ne9euqIKuciHCGOJfPGQLwBoW9DNz03jF+NB8+dUKtrJ79YLoftjVgf8nbgwtADK7NR+2Q=="],
- "@sentry/node-core/@sentry/core": ["@sentry/core@10.45.0", "", {}, "sha512-s69UXxvefeQxuZ5nY7/THtTrIEvJxNVCp3ns4kwoCw1qMpgpvn/296WCKVmM7MiwnaAdzEKnAvLAwaxZc2nM7Q=="],
+ "@sentry/opentelemetry/@sentry/core": ["@sentry/core@10.46.0", "", {}, "sha512-N3fj4zqBQOhXliS1Ne9euqIKuciHCGOJfPGQLwBoW9DNz03jF+NB8+dUKtrJ79YLoftjVgf8nbgwtADK7NR+2Q=="],
- "@sentry/opentelemetry/@sentry/core": ["@sentry/core@10.45.0", "", {}, "sha512-s69UXxvefeQxuZ5nY7/THtTrIEvJxNVCp3ns4kwoCw1qMpgpvn/296WCKVmM7MiwnaAdzEKnAvLAwaxZc2nM7Q=="],
-
- "@sentry/vercel-edge/@sentry/core": ["@sentry/core@10.45.0", "", {}, "sha512-s69UXxvefeQxuZ5nY7/THtTrIEvJxNVCp3ns4kwoCw1qMpgpvn/296WCKVmM7MiwnaAdzEKnAvLAwaxZc2nM7Q=="],
+ "@sentry/vercel-edge/@sentry/core": ["@sentry/core@10.46.0", "", {}, "sha512-N3fj4zqBQOhXliS1Ne9euqIKuciHCGOJfPGQLwBoW9DNz03jF+NB8+dUKtrJ79YLoftjVgf8nbgwtADK7NR+2Q=="],
"@tailwindcss/node/jiti": ["jiti@2.6.1", "", { "bin": { "jiti": "lib/jiti-cli.mjs" } }, "sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ=="],
- "@tailwindcss/oxide-wasm32-wasi/@emnapi/core": ["@emnapi/core@1.6.0", "", { "dependencies": { "@emnapi/wasi-threads": "1.1.0", "tslib": "^2.4.0" }, "bundled": true }, "sha512-zq/ay+9fNIJJtJiZxdTnXS20PllcYMX3OE23ESc4HK/bdYu3cOWYVhsOhVnXALfU/uqJIxn5NBPd9z4v+SfoSg=="],
+ "@tailwindcss/node/lightningcss": ["lightningcss@1.32.0", "", { "dependencies": { "detect-libc": "^2.0.3" }, "optionalDependencies": { "lightningcss-android-arm64": "1.32.0", "lightningcss-darwin-arm64": "1.32.0", "lightningcss-darwin-x64": "1.32.0", "lightningcss-freebsd-x64": "1.32.0", "lightningcss-linux-arm-gnueabihf": "1.32.0", "lightningcss-linux-arm64-gnu": "1.32.0", "lightningcss-linux-arm64-musl": "1.32.0", "lightningcss-linux-x64-gnu": "1.32.0", "lightningcss-linux-x64-musl": "1.32.0", "lightningcss-win32-arm64-msvc": "1.32.0", "lightningcss-win32-x64-msvc": "1.32.0" } }, "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ=="],
- "@tailwindcss/oxide-wasm32-wasi/@emnapi/runtime": ["@emnapi/runtime@1.6.0", "", { "dependencies": { "tslib": "^2.4.0" }, "bundled": true }, "sha512-obtUmAHTMjll499P+D9A3axeJFlhdjOWdKUNs/U6QIGT7V5RjcUW1xToAzjvmgTSQhDbYn/NwfTRoJcQ2rNBxA=="],
+ "@tailwindcss/oxide-wasm32-wasi/@emnapi/core": ["@emnapi/core@1.9.1", "", { "dependencies": { "@emnapi/wasi-threads": "1.2.0", "tslib": "^2.4.0" }, "bundled": true }, "sha512-mukuNALVsoix/w1BJwFzwXBN/dHeejQtuVzcDsfOEsdpCumXb/E9j8w11h5S54tT1xhifGfbbSm/ICrObRb3KA=="],
+
+ "@tailwindcss/oxide-wasm32-wasi/@emnapi/runtime": ["@emnapi/runtime@1.9.1", "", { "dependencies": { "tslib": "^2.4.0" }, "bundled": true }, "sha512-VYi5+ZVLhpgK4hQ0TAjiQiZ6ol0oe4mBx7mVv7IflsiEp0OWoVsp/+f9Vc1hOhE0TtkORVrI1GvzyreqpgWtkA=="],
"@tailwindcss/oxide-wasm32-wasi/@emnapi/wasi-threads": ["@emnapi/wasi-threads@1.1.0", "", { "dependencies": { "tslib": "^2.4.0" }, "bundled": true }, "sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ=="],
- "@tailwindcss/oxide-wasm32-wasi/@napi-rs/wasm-runtime": ["@napi-rs/wasm-runtime@1.0.7", "", { "dependencies": { "@emnapi/core": "^1.5.0", "@emnapi/runtime": "^1.5.0", "@tybys/wasm-util": "^0.10.1" }, "bundled": true }, "sha512-SeDnOO0Tk7Okiq6DbXmmBODgOAb9dp9gjlphokTUxmt8U3liIP1ZsozBahH69j/RJv+Rfs6IwUKHTgQYJ/HBAw=="],
+ "@tailwindcss/oxide-wasm32-wasi/@napi-rs/wasm-runtime": ["@napi-rs/wasm-runtime@1.1.1", "", { "dependencies": { "@emnapi/core": "^1.7.1", "@emnapi/runtime": "^1.7.1", "@tybys/wasm-util": "^0.10.1" }, "bundled": true }, "sha512-p64ah1M1ld8xjWv3qbvFwHiFVWrq1yFvV4f7w+mzaqiR4IlSgkqhcRdHwsGgomwzBH51sRY4NEowLxnaBjcW/A=="],
"@tailwindcss/oxide-wasm32-wasi/@tybys/wasm-util": ["@tybys/wasm-util@0.10.1", "", { "dependencies": { "tslib": "^2.4.0" }, "bundled": true }, "sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg=="],
"@tailwindcss/oxide-wasm32-wasi/tslib": ["tslib@2.8.1", "", { "bundled": true }, "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="],
- "@tailwindcss/postcss/postcss": ["postcss@8.5.6", "", { "dependencies": { "nanoid": "^3.3.11", "picocolors": "^1.1.1", "source-map-js": "^1.2.1" } }, "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg=="],
+ "@tailwindcss/postcss/postcss": ["postcss@8.5.8", "", { "dependencies": { "nanoid": "^3.3.11", "picocolors": "^1.1.1", "source-map-js": "^1.2.1" } }, "sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg=="],
+
+ "@testing-library/dom/@babel/runtime": ["@babel/runtime@7.29.2", "", {}, "sha512-JiDShH45zKHWyGe4ZNVRrCjBz8Nh9TMmZG1kh4QTK8hCBTWBi8Da+i7s1fJw7/lYpM4ccepSNfqzZ/QvABBi5g=="],
+
+ "@testing-library/dom/aria-query": ["aria-query@5.3.0", "", { "dependencies": { "dequal": "^2.0.3" } }, "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A=="],
+
+ "@testing-library/dom/dom-accessibility-api": ["dom-accessibility-api@0.5.16", "", {}, "sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg=="],
+
+ "@testing-library/dom/pretty-format": ["pretty-format@27.5.1", "", { "dependencies": { "ansi-regex": "^5.0.1", "ansi-styles": "^5.0.0", "react-is": "^17.0.1" } }, "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ=="],
+
+ "@testing-library/react/@babel/runtime": ["@babel/runtime@7.29.2", "", {}, "sha512-JiDShH45zKHWyGe4ZNVRrCjBz8Nh9TMmZG1kh4QTK8hCBTWBi8Da+i7s1fJw7/lYpM4ccepSNfqzZ/QvABBi5g=="],
+
+ "@types/babel__core/@babel/parser": ["@babel/parser@7.28.5", "", { "dependencies": { "@babel/types": "^7.28.5" }, "bin": "./bin/babel-parser.js" }, "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ=="],
+
+ "@types/babel__template/@babel/parser": ["@babel/parser@7.28.5", "", { "dependencies": { "@babel/types": "^7.28.5" }, "bin": "./bin/babel-parser.js" }, "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ=="],
"@types/connect/@types/node": ["@types/node@22.18.13", "", { "dependencies": { "undici-types": "~6.21.0" } }, "sha512-Bo45YKIjnmFtv6I1TuC8AaHBbqXtIo+Om5fE4QiU1Tj8QR/qt+8O3BAtOimG5IFmwaWiPmB3Mv3jtYzBA4Us2A=="],
@@ -3295,25 +3628,47 @@
"@types/tedious/@types/node": ["@types/node@22.18.13", "", { "dependencies": { "undici-types": "~6.21.0" } }, "sha512-Bo45YKIjnmFtv6I1TuC8AaHBbqXtIo+Om5fE4QiU1Tj8QR/qt+8O3BAtOimG5IFmwaWiPmB3Mv3jtYzBA4Us2A=="],
+ "@types/ws/@types/node": ["@types/node@22.19.15", "", { "dependencies": { "undici-types": "~6.21.0" } }, "sha512-F0R/h2+dsy5wJAUe3tAU6oqa2qbWY5TpNfL/RGmo1y38hiyO1w3x2jPtt76wmuaJI4DQnOBu21cNXQ2STIUUWg=="],
+
+ "@typescript-eslint/eslint-plugin/@typescript-eslint/scope-manager": ["@typescript-eslint/scope-manager@8.57.2", "", { "dependencies": { "@typescript-eslint/types": "8.57.2", "@typescript-eslint/visitor-keys": "8.57.2" } }, "sha512-snZKH+W4WbWkrBqj4gUNRIGb/jipDW3qMqVJ4C9rzdFc+wLwruxk+2a5D+uoFcKPAqyqEnSb4l2ULuZf95eSkw=="],
+
+ "@typescript-eslint/eslint-plugin/@typescript-eslint/utils": ["@typescript-eslint/utils@8.57.2", "", { "dependencies": { "@eslint-community/eslint-utils": "^4.9.1", "@typescript-eslint/scope-manager": "8.57.2", "@typescript-eslint/types": "8.57.2", "@typescript-eslint/typescript-estree": "8.57.2" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", "typescript": ">=4.8.4 <6.0.0" } }, "sha512-krRIbvPK1ju1WBKIefiX+bngPs+odIQUtR7kymzPfo1POVw3jlF+nLkmexdSSd4UCbDcQn+wMBATOOmpBbqgKg=="],
+
"@typescript-eslint/eslint-plugin/ignore": ["ignore@7.0.5", "", {}, "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg=="],
- "@typescript-eslint/typescript-estree/fast-glob": ["fast-glob@3.3.3", "", { "dependencies": { "@nodelib/fs.stat": "^2.0.2", "@nodelib/fs.walk": "^1.2.3", "glob-parent": "^5.1.2", "merge2": "^1.3.0", "micromatch": "^4.0.8" } }, "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg=="],
+ "@typescript-eslint/parser/@typescript-eslint/scope-manager": ["@typescript-eslint/scope-manager@8.57.2", "", { "dependencies": { "@typescript-eslint/types": "8.57.2", "@typescript-eslint/visitor-keys": "8.57.2" } }, "sha512-snZKH+W4WbWkrBqj4gUNRIGb/jipDW3qMqVJ4C9rzdFc+wLwruxk+2a5D+uoFcKPAqyqEnSb4l2ULuZf95eSkw=="],
- "@typescript-eslint/typescript-estree/minimatch": ["minimatch@9.0.5", "", { "dependencies": { "brace-expansion": "^2.0.1" } }, "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow=="],
+ "@typescript-eslint/parser/@typescript-eslint/types": ["@typescript-eslint/types@8.57.2", "", {}, "sha512-/iZM6FnM4tnx9csuTxspMW4BOSegshwX5oBDznJ7S4WggL7Vczz5d2W11ecc4vRrQMQHXRSxzrCsyG5EsPPTbA=="],
+
+ "@typescript-eslint/project-service/@typescript-eslint/types": ["@typescript-eslint/types@8.57.2", "", {}, "sha512-/iZM6FnM4tnx9csuTxspMW4BOSegshwX5oBDznJ7S4WggL7Vczz5d2W11ecc4vRrQMQHXRSxzrCsyG5EsPPTbA=="],
+
+ "@typescript-eslint/scope-manager/@typescript-eslint/visitor-keys": ["@typescript-eslint/visitor-keys@8.46.2", "", { "dependencies": { "@typescript-eslint/types": "8.46.2", "eslint-visitor-keys": "^4.2.1" } }, "sha512-tUFMXI4gxzzMXt4xpGJEsBsTox0XbNQ1y94EwlD/CuZwFcQP79xfQqMhau9HsRc/J0cAPA/HZt1dZPtGn9V/7w=="],
+
+ "@typescript-eslint/type-utils/@typescript-eslint/types": ["@typescript-eslint/types@8.57.2", "", {}, "sha512-/iZM6FnM4tnx9csuTxspMW4BOSegshwX5oBDznJ7S4WggL7Vczz5d2W11ecc4vRrQMQHXRSxzrCsyG5EsPPTbA=="],
+
+ "@typescript-eslint/type-utils/@typescript-eslint/utils": ["@typescript-eslint/utils@8.57.2", "", { "dependencies": { "@eslint-community/eslint-utils": "^4.9.1", "@typescript-eslint/scope-manager": "8.57.2", "@typescript-eslint/types": "8.57.2", "@typescript-eslint/typescript-estree": "8.57.2" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", "typescript": ">=4.8.4 <6.0.0" } }, "sha512-krRIbvPK1ju1WBKIefiX+bngPs+odIQUtR7kymzPfo1POVw3jlF+nLkmexdSSd4UCbDcQn+wMBATOOmpBbqgKg=="],
+
+ "@typescript-eslint/typescript-estree/@typescript-eslint/types": ["@typescript-eslint/types@8.57.2", "", {}, "sha512-/iZM6FnM4tnx9csuTxspMW4BOSegshwX5oBDznJ7S4WggL7Vczz5d2W11ecc4vRrQMQHXRSxzrCsyG5EsPPTbA=="],
"@typescript-eslint/typescript-estree/semver": ["semver@7.7.3", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q=="],
+ "@typescript-eslint/utils/@eslint-community/eslint-utils": ["@eslint-community/eslint-utils@4.9.0", "", { "dependencies": { "eslint-visitor-keys": "^3.4.3" }, "peerDependencies": { "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" } }, "sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g=="],
+
+ "@typescript-eslint/utils/@typescript-eslint/typescript-estree": ["@typescript-eslint/typescript-estree@8.46.2", "", { "dependencies": { "@typescript-eslint/project-service": "8.46.2", "@typescript-eslint/tsconfig-utils": "8.46.2", "@typescript-eslint/types": "8.46.2", "@typescript-eslint/visitor-keys": "8.46.2", "debug": "^4.3.4", "fast-glob": "^3.3.2", "is-glob": "^4.0.3", "minimatch": "^9.0.4", "semver": "^7.6.0", "ts-api-utils": "^2.1.0" }, "peerDependencies": { "typescript": ">=4.8.4 <6.0.0" } }, "sha512-f7rW7LJ2b7Uh2EiQ+7sza6RDZnajbNbemn54Ob6fRwQbgcIn+GWfyuHDHRYgRoZu1P4AayVScrRW+YfbTvPQoQ=="],
+
+ "@typescript-eslint/utils/eslint": ["eslint@9.39.4", "", { "dependencies": { "@eslint-community/eslint-utils": "^4.8.0", "@eslint-community/regexpp": "^4.12.1", "@eslint/config-array": "^0.21.2", "@eslint/config-helpers": "^0.4.2", "@eslint/core": "^0.17.0", "@eslint/eslintrc": "^3.3.5", "@eslint/js": "9.39.4", "@eslint/plugin-kit": "^0.4.1", "@humanfs/node": "^0.16.6", "@humanwhocodes/module-importer": "^1.0.1", "@humanwhocodes/retry": "^0.4.2", "@types/estree": "^1.0.6", "ajv": "^6.14.0", "chalk": "^4.0.0", "cross-spawn": "^7.0.6", "debug": "^4.3.2", "escape-string-regexp": "^4.0.0", "eslint-scope": "^8.4.0", "eslint-visitor-keys": "^4.2.1", "espree": "^10.4.0", "esquery": "^1.5.0", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", "file-entry-cache": "^8.0.0", "find-up": "^5.0.0", "glob-parent": "^6.0.2", "ignore": "^5.2.0", "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", "json-stable-stringify-without-jsonify": "^1.0.1", "lodash.merge": "^4.6.2", "minimatch": "^3.1.5", "natural-compare": "^1.4.0", "optionator": "^0.9.3" }, "peerDependencies": { "jiti": "*" }, "optionalPeers": ["jiti"], "bin": { "eslint": "bin/eslint.js" } }, "sha512-XoMjdBOwe/esVgEvLmNsD3IRHkm7fbKIUGvrleloJXUZgDHig2IPWNniv+GwjyJXzuNqVjlr5+4yVUZjycJwfQ=="],
+
+ "@typescript-eslint/visitor-keys/@typescript-eslint/types": ["@typescript-eslint/types@8.57.2", "", {}, "sha512-/iZM6FnM4tnx9csuTxspMW4BOSegshwX5oBDznJ7S4WggL7Vczz5d2W11ecc4vRrQMQHXRSxzrCsyG5EsPPTbA=="],
+
"accepts/mime-types": ["mime-types@2.1.35", "", { "dependencies": { "mime-db": "1.52.0" } }, "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw=="],
"ajv-formats/ajv": ["ajv@8.17.1", "", { "dependencies": { "fast-deep-equal": "^3.1.3", "fast-uri": "^3.0.1", "json-schema-traverse": "^1.0.0", "require-from-string": "^2.0.2" } }, "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g=="],
"ajv-keywords/ajv": ["ajv@8.17.1", "", { "dependencies": { "fast-deep-equal": "^3.1.3", "fast-uri": "^3.0.1", "json-schema-traverse": "^1.0.0", "require-from-string": "^2.0.2" } }, "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g=="],
- "ansi-escapes/type-fest": ["type-fest@0.21.3", "", {}, "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w=="],
-
"anymatch/picomatch": ["picomatch@2.3.1", "", {}, "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA=="],
- "arctic/oslo": ["oslo@1.2.0", "", { "dependencies": { "@node-rs/argon2": "1.7.0", "@node-rs/bcrypt": "1.9.0" } }, "sha512-OoFX6rDsNcOQVAD2gQD/z03u4vEjWZLzJtwkmgfRF+KpQUXwdgEXErD7zNhyowmHwHefP+PM9Pw13pgpHMRlzw=="],
+ "babel-jest/chalk": ["chalk@4.1.2", "", { "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } }, "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="],
"babel-plugin-syntax-hermes-parser/hermes-parser": ["hermes-parser@0.29.1", "", { "dependencies": { "hermes-estree": "0.29.1" } }, "sha512-xBHWmUtRC5e/UL0tI7Ivt2riA/YBq9+SiYFU7C1oBa/j2jYGlIF9043oak1F47ihuDIxQ5nbsKueYJDRY02UgA=="],
@@ -3323,33 +3678,35 @@
"browserslist/baseline-browser-mapping": ["baseline-browser-mapping@2.8.21", "", { "bin": { "baseline-browser-mapping": "dist/cli.js" } }, "sha512-JU0h5APyQNsHOlAM7HnQnPToSDQoEBZqzu/YBlqDnEeymPnZDREeXJA3KBMQee+dKteAxZ2AtvQEvVYdZf241Q=="],
- "chalk-template/chalk": ["chalk@5.6.2", "", {}, "sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA=="],
-
"chrome-launcher/@types/node": ["@types/node@22.18.13", "", { "dependencies": { "undici-types": "~6.21.0" } }, "sha512-Bo45YKIjnmFtv6I1TuC8AaHBbqXtIo+Om5fE4QiU1Tj8QR/qt+8O3BAtOimG5IFmwaWiPmB3Mv3jtYzBA4Us2A=="],
"chromium-edge-launcher/@types/node": ["@types/node@22.18.13", "", { "dependencies": { "undici-types": "~6.21.0" } }, "sha512-Bo45YKIjnmFtv6I1TuC8AaHBbqXtIo+Om5fE4QiU1Tj8QR/qt+8O3BAtOimG5IFmwaWiPmB3Mv3jtYzBA4Us2A=="],
- "clear-module/parent-module": ["parent-module@2.0.0", "", { "dependencies": { "callsites": "^3.1.0" } }, "sha512-uo0Z9JJeWzv8BG+tRcapBKNJ0dro9cLyczGzulS6EfeyAdeC9sbojtW6XwvYxJkEne9En+J2XEl4zyglVeIwFg=="],
+ "cli-truncate/string-width": ["string-width@8.2.1", "", { "dependencies": { "get-east-asian-width": "^1.5.0", "strip-ansi": "^7.1.2" } }, "sha512-IIaP0g3iy9Cyy18w3M9YcaDudujEAVHKt3a3QJg1+sr/oX96TbaGUubG0hJyCjCBThFH+tFpcIyoUHUn1ogaLA=="],
"cliui/string-width": ["string-width@4.2.3", "", { "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" } }, "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="],
"cliui/strip-ansi": ["strip-ansi@6.0.1", "", { "dependencies": { "ansi-regex": "^5.0.1" } }, "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="],
+ "cliui/wrap-ansi": ["wrap-ansi@7.0.0", "", { "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0" } }, "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q=="],
+
+ "cmdk/@radix-ui/react-primitive": ["@radix-ui/react-primitive@2.1.3", "", { "dependencies": { "@radix-ui/react-slot": "1.2.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ=="],
+
"compression/debug": ["debug@2.6.9", "", { "dependencies": { "ms": "2.0.0" } }, "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="],
"compression/negotiator": ["negotiator@0.6.4", "", {}, "sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w=="],
+ "conf/ajv": ["ajv@8.17.1", "", { "dependencies": { "fast-deep-equal": "^3.1.3", "fast-uri": "^3.0.1", "json-schema-traverse": "^1.0.0", "require-from-string": "^2.0.2" } }, "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g=="],
+
+ "conf/semver": ["semver@7.7.3", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q=="],
+
"connect/debug": ["debug@2.6.9", "", { "dependencies": { "ms": "2.0.0" } }, "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="],
"convex/esbuild": ["esbuild@0.27.0", "", { "optionalDependencies": { "@esbuild/aix-ppc64": "0.27.0", "@esbuild/android-arm": "0.27.0", "@esbuild/android-arm64": "0.27.0", "@esbuild/android-x64": "0.27.0", "@esbuild/darwin-arm64": "0.27.0", "@esbuild/darwin-x64": "0.27.0", "@esbuild/freebsd-arm64": "0.27.0", "@esbuild/freebsd-x64": "0.27.0", "@esbuild/linux-arm": "0.27.0", "@esbuild/linux-arm64": "0.27.0", "@esbuild/linux-ia32": "0.27.0", "@esbuild/linux-loong64": "0.27.0", "@esbuild/linux-mips64el": "0.27.0", "@esbuild/linux-ppc64": "0.27.0", "@esbuild/linux-riscv64": "0.27.0", "@esbuild/linux-s390x": "0.27.0", "@esbuild/linux-x64": "0.27.0", "@esbuild/netbsd-arm64": "0.27.0", "@esbuild/netbsd-x64": "0.27.0", "@esbuild/openbsd-arm64": "0.27.0", "@esbuild/openbsd-x64": "0.27.0", "@esbuild/openharmony-arm64": "0.27.0", "@esbuild/sunos-x64": "0.27.0", "@esbuild/win32-arm64": "0.27.0", "@esbuild/win32-ia32": "0.27.0", "@esbuild/win32-x64": "0.27.0" }, "bin": { "esbuild": "bin/esbuild" } }, "sha512-jd0f4NHbD6cALCyGElNpGAOtWxSq46l9X/sWB0Nzd5er4Kz2YTm+Vl0qKFT9KUJvD8+fiO8AvoHhFvEatfVixA=="],
- "cspell/chalk": ["chalk@5.6.2", "", {}, "sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA=="],
+ "dom-serializer/entities": ["entities@4.5.0", "", {}, "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw=="],
- "cspell/file-entry-cache": ["file-entry-cache@9.1.0", "", { "dependencies": { "flat-cache": "^5.0.0" } }, "sha512-/pqPFG+FdxWQj+/WSuzXSDaNzxgTLr/OrR1QuqfEZzDakpdYE70PwUxL7BPUa8hpjbvY1+qvCl8k+8Tq34xJgg=="],
-
- "cspell/semver": ["semver@7.7.3", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q=="],
-
- "cspell-glob/picomatch": ["picomatch@4.0.3", "", {}, "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q=="],
+ "dot-prop/type-fest": ["type-fest@5.5.0", "", { "dependencies": { "tagged-tag": "^1.0.0" } }, "sha512-PlBfpQwiUvGViBNX84Yxwjsdhd1TUlXr6zjX7eoirtCPIr08NAmxwa+fcYBTeRQxHo9YC9wwF3m9i700sHma8g=="],
"dotenv-expand/dotenv": ["dotenv@16.6.1", "", {}, "sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow=="],
@@ -3369,24 +3726,40 @@
"eslint-plugin-import/debug": ["debug@3.2.7", "", { "dependencies": { "ms": "^2.1.1" } }, "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ=="],
+ "eslint-plugin-import/eslint": ["eslint@9.39.4", "", { "dependencies": { "@eslint-community/eslint-utils": "^4.8.0", "@eslint-community/regexpp": "^4.12.1", "@eslint/config-array": "^0.21.2", "@eslint/config-helpers": "^0.4.2", "@eslint/core": "^0.17.0", "@eslint/eslintrc": "^3.3.5", "@eslint/js": "9.39.4", "@eslint/plugin-kit": "^0.4.1", "@humanfs/node": "^0.16.6", "@humanwhocodes/module-importer": "^1.0.1", "@humanwhocodes/retry": "^0.4.2", "@types/estree": "^1.0.6", "ajv": "^6.14.0", "chalk": "^4.0.0", "cross-spawn": "^7.0.6", "debug": "^4.3.2", "escape-string-regexp": "^4.0.0", "eslint-scope": "^8.4.0", "eslint-visitor-keys": "^4.2.1", "espree": "^10.4.0", "esquery": "^1.5.0", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", "file-entry-cache": "^8.0.0", "find-up": "^5.0.0", "glob-parent": "^6.0.2", "ignore": "^5.2.0", "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", "json-stable-stringify-without-jsonify": "^1.0.1", "lodash.merge": "^4.6.2", "minimatch": "^3.1.5", "natural-compare": "^1.4.0", "optionator": "^0.9.3" }, "peerDependencies": { "jiti": "*" }, "optionalPeers": ["jiti"], "bin": { "eslint": "bin/eslint.js" } }, "sha512-XoMjdBOwe/esVgEvLmNsD3IRHkm7fbKIUGvrleloJXUZgDHig2IPWNniv+GwjyJXzuNqVjlr5+4yVUZjycJwfQ=="],
+
"eslint-plugin-import/minimatch": ["minimatch@3.1.2", "", { "dependencies": { "brace-expansion": "^1.1.7" } }, "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw=="],
"eslint-plugin-import/tsconfig-paths": ["tsconfig-paths@3.15.0", "", { "dependencies": { "@types/json5": "^0.0.29", "json5": "^1.0.2", "minimist": "^1.2.6", "strip-bom": "^3.0.0" } }, "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg=="],
+ "eslint-plugin-jsx-a11y/eslint": ["eslint@9.39.4", "", { "dependencies": { "@eslint-community/eslint-utils": "^4.8.0", "@eslint-community/regexpp": "^4.12.1", "@eslint/config-array": "^0.21.2", "@eslint/config-helpers": "^0.4.2", "@eslint/core": "^0.17.0", "@eslint/eslintrc": "^3.3.5", "@eslint/js": "9.39.4", "@eslint/plugin-kit": "^0.4.1", "@humanfs/node": "^0.16.6", "@humanwhocodes/module-importer": "^1.0.1", "@humanwhocodes/retry": "^0.4.2", "@types/estree": "^1.0.6", "ajv": "^6.14.0", "chalk": "^4.0.0", "cross-spawn": "^7.0.6", "debug": "^4.3.2", "escape-string-regexp": "^4.0.0", "eslint-scope": "^8.4.0", "eslint-visitor-keys": "^4.2.1", "espree": "^10.4.0", "esquery": "^1.5.0", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", "file-entry-cache": "^8.0.0", "find-up": "^5.0.0", "glob-parent": "^6.0.2", "ignore": "^5.2.0", "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", "json-stable-stringify-without-jsonify": "^1.0.1", "lodash.merge": "^4.6.2", "minimatch": "^3.1.5", "natural-compare": "^1.4.0", "optionator": "^0.9.3" }, "peerDependencies": { "jiti": "*" }, "optionalPeers": ["jiti"], "bin": { "eslint": "bin/eslint.js" } }, "sha512-XoMjdBOwe/esVgEvLmNsD3IRHkm7fbKIUGvrleloJXUZgDHig2IPWNniv+GwjyJXzuNqVjlr5+4yVUZjycJwfQ=="],
+
"eslint-plugin-jsx-a11y/minimatch": ["minimatch@3.1.2", "", { "dependencies": { "brace-expansion": "^1.1.7" } }, "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw=="],
+ "eslint-plugin-react/eslint": ["eslint@9.39.4", "", { "dependencies": { "@eslint-community/eslint-utils": "^4.8.0", "@eslint-community/regexpp": "^4.12.1", "@eslint/config-array": "^0.21.2", "@eslint/config-helpers": "^0.4.2", "@eslint/core": "^0.17.0", "@eslint/eslintrc": "^3.3.5", "@eslint/js": "9.39.4", "@eslint/plugin-kit": "^0.4.1", "@humanfs/node": "^0.16.6", "@humanwhocodes/module-importer": "^1.0.1", "@humanwhocodes/retry": "^0.4.2", "@types/estree": "^1.0.6", "ajv": "^6.14.0", "chalk": "^4.0.0", "cross-spawn": "^7.0.6", "debug": "^4.3.2", "escape-string-regexp": "^4.0.0", "eslint-scope": "^8.4.0", "eslint-visitor-keys": "^4.2.1", "espree": "^10.4.0", "esquery": "^1.5.0", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", "file-entry-cache": "^8.0.0", "find-up": "^5.0.0", "glob-parent": "^6.0.2", "ignore": "^5.2.0", "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", "json-stable-stringify-without-jsonify": "^1.0.1", "lodash.merge": "^4.6.2", "minimatch": "^3.1.5", "natural-compare": "^1.4.0", "optionator": "^0.9.3" }, "peerDependencies": { "jiti": "*" }, "optionalPeers": ["jiti"], "bin": { "eslint": "bin/eslint.js" } }, "sha512-XoMjdBOwe/esVgEvLmNsD3IRHkm7fbKIUGvrleloJXUZgDHig2IPWNniv+GwjyJXzuNqVjlr5+4yVUZjycJwfQ=="],
+
"eslint-plugin-react/minimatch": ["minimatch@3.1.2", "", { "dependencies": { "brace-expansion": "^1.1.7" } }, "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw=="],
+ "eslint-plugin-react-hooks/@babel/parser": ["@babel/parser@7.28.5", "", { "dependencies": { "@babel/types": "^7.28.5" }, "bin": "./bin/babel-parser.js" }, "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ=="],
+
+ "eslint-plugin-react-hooks/eslint": ["eslint@9.39.4", "", { "dependencies": { "@eslint-community/eslint-utils": "^4.8.0", "@eslint-community/regexpp": "^4.12.1", "@eslint/config-array": "^0.21.2", "@eslint/config-helpers": "^0.4.2", "@eslint/core": "^0.17.0", "@eslint/eslintrc": "^3.3.5", "@eslint/js": "9.39.4", "@eslint/plugin-kit": "^0.4.1", "@humanfs/node": "^0.16.6", "@humanwhocodes/module-importer": "^1.0.1", "@humanwhocodes/retry": "^0.4.2", "@types/estree": "^1.0.6", "ajv": "^6.14.0", "chalk": "^4.0.0", "cross-spawn": "^7.0.6", "debug": "^4.3.2", "escape-string-regexp": "^4.0.0", "eslint-scope": "^8.4.0", "eslint-visitor-keys": "^4.2.1", "espree": "^10.4.0", "esquery": "^1.5.0", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", "file-entry-cache": "^8.0.0", "find-up": "^5.0.0", "glob-parent": "^6.0.2", "ignore": "^5.2.0", "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", "json-stable-stringify-without-jsonify": "^1.0.1", "lodash.merge": "^4.6.2", "minimatch": "^3.1.5", "natural-compare": "^1.4.0", "optionator": "^0.9.3" }, "peerDependencies": { "jiti": "*" }, "optionalPeers": ["jiti"], "bin": { "eslint": "bin/eslint.js" } }, "sha512-XoMjdBOwe/esVgEvLmNsD3IRHkm7fbKIUGvrleloJXUZgDHig2IPWNniv+GwjyJXzuNqVjlr5+4yVUZjycJwfQ=="],
+
"eslint-plugin-react-hooks/zod": ["zod@4.1.12", "", {}, "sha512-JInaHOamG8pt5+Ey8kGmdcAcg3OL9reK8ltczgHTAwNhMys/6ThXHityHxVV2p3fkw/c+MAvBHFVYHFZDmjMCQ=="],
"eslint-plugin-turbo/dotenv": ["dotenv@16.0.3", "", {}, "sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ=="],
"expo-dev-launcher/ajv": ["ajv@8.17.1", "", { "dependencies": { "fast-deep-equal": "^3.1.3", "fast-uri": "^3.0.1", "json-schema-traverse": "^1.0.0", "require-from-string": "^2.0.2" } }, "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g=="],
+ "expo-modules-autolinking/chalk": ["chalk@4.1.2", "", { "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } }, "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="],
+
"expo-modules-autolinking/commander": ["commander@7.2.0", "", {}, "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw=="],
"expo-router/@radix-ui/react-slot": ["@radix-ui/react-slot@1.2.0", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-ujc+V6r0HNDviYqIK3rW4ffgYiZ8g5DEHrGJVk4x7kTlLXRDILnKX9vAUYeIsLOoDpDJ0ujpqMkjH4w2ofuo6w=="],
+ "expo-router/@react-navigation/bottom-tabs": ["@react-navigation/bottom-tabs@7.15.6", "", { "dependencies": { "@react-navigation/elements": "^2.9.11", "color": "^4.2.3", "sf-symbols-typescript": "^2.1.0" }, "peerDependencies": { "@react-navigation/native": "^7.1.34", "react": ">= 18.2.0", "react-native": "*", "react-native-safe-area-context": ">= 4.0.0", "react-native-screens": ">= 4.0.0" } }, "sha512-olB+s0ApMzWN9t5Bk5Mj6ntSlVRz3B8v+1LtwGS/29lyC311G5es0kgxyzpGKE9gy6Ef8W526QH5cIka2jh0kQ=="],
+
+ "expo-router/@react-navigation/native": ["@react-navigation/native@7.1.34", "", { "dependencies": { "@react-navigation/core": "^7.16.2", "escape-string-regexp": "^4.0.0", "fast-deep-equal": "^3.1.3", "nanoid": "^3.3.11", "use-latest-callback": "^0.2.4" }, "peerDependencies": { "react": ">= 18.2.0", "react-native": "*" } }, "sha512-zzQ0mKAhLsjTIsaoLfILKZVMObJzE0F+bOi0hl2Glt+1Rd2GtaWJ1Z024c3yLmX+Oc79pqoCQLBXpyxtrZu9NQ=="],
+
"expo-router/semver": ["semver@7.6.3", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A=="],
"fast-glob/glob-parent": ["glob-parent@5.1.2", "", { "dependencies": { "is-glob": "^4.0.1" } }, "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow=="],
@@ -3401,32 +3774,56 @@
"finalhandler/statuses": ["statuses@1.5.0", "", {}, "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA=="],
- "glob/minimatch": ["minimatch@10.1.1", "", { "dependencies": { "@isaacs/brace-expansion": "^5.0.0" } }, "sha512-enIvLvRAFZYXJzkCYG5RKmPfrFArdLv+R+lbQ53BmIMLIry74bjKzX6iHAm8WYamJkhSSEabrWN5D97XnKObjQ=="],
+ "happy-dom/@types/node": ["@types/node@22.19.15", "", { "dependencies": { "undici-types": "~6.21.0" } }, "sha512-F0R/h2+dsy5wJAUe3tAU6oqa2qbWY5TpNfL/RGmo1y38hiyO1w3x2jPtt76wmuaJI4DQnOBu21cNXQ2STIUUWg=="],
- "global-directory/ini": ["ini@4.1.1", "", {}, "sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g=="],
+ "happy-dom/whatwg-mimetype": ["whatwg-mimetype@3.0.0", "", {}, "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q=="],
+
+ "happy-dom/ws": ["ws@8.18.3", "", { "peerDependencies": { "bufferutil": "^4.0.1", "utf-8-validate": ">=5.0.2" }, "optionalPeers": ["bufferutil", "utf-8-validate"] }, "sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg=="],
"hoist-non-react-statics/react-is": ["react-is@16.13.1", "", {}, "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="],
"hosted-git-info/lru-cache": ["lru-cache@10.4.3", "", {}, "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ=="],
+ "htmlparser2/entities": ["entities@4.5.0", "", {}, "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw=="],
+
"import-fresh/resolve-from": ["resolve-from@4.0.0", "", {}, "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g=="],
+ "import-in-the-middle/acorn": ["acorn@8.15.0", "", { "bin": { "acorn": "bin/acorn" } }, "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg=="],
+
+ "istanbul-lib-instrument/@babel/parser": ["@babel/parser@7.28.5", "", { "dependencies": { "@babel/types": "^7.28.5" }, "bin": "./bin/babel-parser.js" }, "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ=="],
+
"jest-environment-node/@types/node": ["@types/node@22.18.13", "", { "dependencies": { "undici-types": "~6.21.0" } }, "sha512-Bo45YKIjnmFtv6I1TuC8AaHBbqXtIo+Om5fE4QiU1Tj8QR/qt+8O3BAtOimG5IFmwaWiPmB3Mv3jtYzBA4Us2A=="],
"jest-haste-map/@types/node": ["@types/node@22.18.13", "", { "dependencies": { "undici-types": "~6.21.0" } }, "sha512-Bo45YKIjnmFtv6I1TuC8AaHBbqXtIo+Om5fE4QiU1Tj8QR/qt+8O3BAtOimG5IFmwaWiPmB3Mv3jtYzBA4Us2A=="],
+ "jest-message-util/chalk": ["chalk@4.1.2", "", { "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } }, "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="],
+
"jest-mock/@types/node": ["@types/node@22.18.13", "", { "dependencies": { "undici-types": "~6.21.0" } }, "sha512-Bo45YKIjnmFtv6I1TuC8AaHBbqXtIo+Om5fE4QiU1Tj8QR/qt+8O3BAtOimG5IFmwaWiPmB3Mv3jtYzBA4Us2A=="],
"jest-util/@types/node": ["@types/node@22.18.13", "", { "dependencies": { "undici-types": "~6.21.0" } }, "sha512-Bo45YKIjnmFtv6I1TuC8AaHBbqXtIo+Om5fE4QiU1Tj8QR/qt+8O3BAtOimG5IFmwaWiPmB3Mv3jtYzBA4Us2A=="],
+ "jest-util/chalk": ["chalk@4.1.2", "", { "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } }, "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="],
+
"jest-util/picomatch": ["picomatch@2.3.1", "", {}, "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA=="],
+ "jest-validate/chalk": ["chalk@4.1.2", "", { "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } }, "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="],
+
"jest-worker/@types/node": ["@types/node@22.18.13", "", { "dependencies": { "undici-types": "~6.21.0" } }, "sha512-Bo45YKIjnmFtv6I1TuC8AaHBbqXtIo+Om5fE4QiU1Tj8QR/qt+8O3BAtOimG5IFmwaWiPmB3Mv3jtYzBA4Us2A=="],
"jest-worker/supports-color": ["supports-color@8.1.1", "", { "dependencies": { "has-flag": "^4.0.0" } }, "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q=="],
"lighthouse-logger/debug": ["debug@2.6.9", "", { "dependencies": { "ms": "2.0.0" } }, "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="],
+ "log-update/slice-ansi": ["slice-ansi@7.1.2", "", { "dependencies": { "ansi-styles": "^6.2.1", "is-fullwidth-code-point": "^5.0.0" } }, "sha512-iOBWFgUX7caIZiuutICxVgX1SdxwAVFFKwt1EvMYYec/NWO5meOJ6K5uQxhrYBdQJne4KxiqZc+KptFOWFSI9w=="],
+
+ "log-update/wrap-ansi": ["wrap-ansi@9.0.2", "", { "dependencies": { "ansi-styles": "^6.2.1", "string-width": "^7.0.0", "strip-ansi": "^7.1.0" } }, "sha512-42AtmgqjV+X1VpdOfyTGOYRi0/zsoLqtXQckTmqTeybT+BDIbM/Guxo7x3pE2vtpr1ok6xRqM9OpBe+Jyoqyww=="],
+
+ "metro/@babel/parser": ["@babel/parser@7.28.5", "", { "dependencies": { "@babel/types": "^7.28.5" }, "bin": "./bin/babel-parser.js" }, "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ=="],
+
+ "metro/@babel/traverse": ["@babel/traverse@7.28.5", "", { "dependencies": { "@babel/code-frame": "^7.27.1", "@babel/generator": "^7.28.5", "@babel/helper-globals": "^7.28.0", "@babel/parser": "^7.28.5", "@babel/template": "^7.27.2", "@babel/types": "^7.28.5", "debug": "^4.3.1" } }, "sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ=="],
+
+ "metro/chalk": ["chalk@4.1.2", "", { "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } }, "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="],
+
"metro/ci-info": ["ci-info@2.0.0", "", {}, "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ=="],
"metro/hermes-parser": ["hermes-parser@0.32.0", "", { "dependencies": { "hermes-estree": "0.32.0" } }, "sha512-g4nBOWFpuiTqjR3LZdRxKUkij9iyveWeuks7INEsMX741f3r9xxrOe8TeQfUxtda0eXmiIFiMQzoeSQEno33Hw=="],
@@ -3439,32 +3836,66 @@
"metro-cache/https-proxy-agent": ["https-proxy-agent@7.0.6", "", { "dependencies": { "agent-base": "^7.1.2", "debug": "4" } }, "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw=="],
+ "metro-config/yaml": ["yaml@2.8.1", "", { "bin": { "yaml": "bin.mjs" } }, "sha512-lcYcMxX2PO9XMGvAJkJ3OsNMw+/7FKes7/hgerGUYWIoWu5j/+YQqcZr5JnPZWzOsEBgMbSbiSTn/dv/69Mkpw=="],
+
+ "metro-source-map/@babel/traverse": ["@babel/traverse@7.28.5", "", { "dependencies": { "@babel/code-frame": "^7.27.1", "@babel/generator": "^7.28.5", "@babel/helper-globals": "^7.28.0", "@babel/parser": "^7.28.5", "@babel/template": "^7.27.2", "@babel/types": "^7.28.5", "debug": "^4.3.1" } }, "sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ=="],
+
+ "metro-transform-plugins/@babel/traverse": ["@babel/traverse@7.28.5", "", { "dependencies": { "@babel/code-frame": "^7.27.1", "@babel/generator": "^7.28.5", "@babel/helper-globals": "^7.28.0", "@babel/parser": "^7.28.5", "@babel/template": "^7.27.2", "@babel/types": "^7.28.5", "debug": "^4.3.1" } }, "sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ=="],
+
+ "metro-transform-worker/@babel/parser": ["@babel/parser@7.28.5", "", { "dependencies": { "@babel/types": "^7.28.5" }, "bin": "./bin/babel-parser.js" }, "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ=="],
+
"micromatch/picomatch": ["picomatch@2.3.1", "", {}, "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA=="],
+ "minizlib/minipass": ["minipass@7.1.2", "", {}, "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw=="],
+
"next/postcss": ["postcss@8.4.31", "", { "dependencies": { "nanoid": "^3.3.6", "picocolors": "^1.0.0", "source-map-js": "^1.0.2" } }, "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ=="],
+ "node-fetch/whatwg-url": ["whatwg-url@5.0.0", "", { "dependencies": { "tr46": "~0.0.3", "webidl-conversions": "^3.0.0" } }, "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw=="],
+
"npm-package-arg/semver": ["semver@7.7.3", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q=="],
- "ora/chalk": ["chalk@5.6.2", "", {}, "sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA=="],
+ "nypm/tinyexec": ["tinyexec@1.0.4", "", {}, "sha512-u9r3uZC0bdpGOXtlxUIdwf9pkmvhqJdrVCH9fapQtgy/OeTTMZ1nqH7agtvEfmGui6e1XxjcdrlxvxJvc3sMqw=="],
"ora/log-symbols": ["log-symbols@6.0.0", "", { "dependencies": { "chalk": "^5.3.0", "is-unicode-supported": "^1.3.0" } }, "sha512-i24m8rpwhmPIS4zscNzK6MSEhk0DUWa/8iYQWxhffV8jkI4Phvs3F+quL5xvS0gdQR0FyTCMMH33Y78dDTzzIw=="],
- "pretty-format/ansi-styles": ["ansi-styles@5.2.0", "", {}, "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA=="],
+ "parse5/entities": ["entities@8.0.0", "", {}, "sha512-zwfzJecQ/Uej6tusMqwAqU/6KL2XaB2VZ2Jg54Je6ahNBGNH6Ek6g3jjNCF0fG9EWQKGZNddNjU5F1ZQn/sBnA=="],
+
+ "path-scurry/lru-cache": ["lru-cache@11.2.2", "", {}, "sha512-F9ODfyqML2coTIsQpSkRHnLSZMtkU8Q+mSfcaIyKwy58u+8k5nvAYeiNhsyMARvzNcXJ9QfWVrcPsC9e9rAxtg=="],
+
+ "postcss/nanoid": ["nanoid@3.3.14", "", { "bin": { "nanoid": "bin/nanoid.cjs" } }, "sha512-U9kYi5bpVMEI31yC8iw4bJJp0avcHXA0W8/wNfLfnvJYzihQo2ZRPYPvpAAd570HAcCBjCTN7vnr+v4StKl1IQ=="],
"pretty-format/react-is": ["react-is@18.3.1", "", {}, "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg=="],
"prop-types/react-is": ["react-is@16.13.1", "", {}, "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="],
+ "radix-ui/@radix-ui/react-avatar": ["@radix-ui/react-avatar@1.1.10", "", { "dependencies": { "@radix-ui/react-context": "1.1.2", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-use-callback-ref": "1.1.1", "@radix-ui/react-use-is-hydrated": "0.1.0", "@radix-ui/react-use-layout-effect": "1.1.1" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-V8piFfWapM5OmNCXTzVQY+E1rDa53zY+MQ4Y7356v4fFz6vqCyUtIz2rUD44ZEdwg78/jKmMJHj07+C/Z/rcog=="],
+
+ "radix-ui/@radix-ui/react-context": ["@radix-ui/react-context@1.1.2", "", { "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA=="],
+
+ "radix-ui/@radix-ui/react-label": ["@radix-ui/react-label@2.1.7", "", { "dependencies": { "@radix-ui/react-primitive": "2.1.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-YT1GqPSL8kJn20djelMX7/cTRp/Y9w5IZHvfxQTVHrOqa2yMl7i/UfMqKRU5V7mEyKTrUVgJXhNQPVCG8PBLoQ=="],
+
+ "radix-ui/@radix-ui/react-primitive": ["@radix-ui/react-primitive@2.1.3", "", { "dependencies": { "@radix-ui/react-slot": "1.2.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ=="],
+
+ "radix-ui/@radix-ui/react-progress": ["@radix-ui/react-progress@1.1.7", "", { "dependencies": { "@radix-ui/react-context": "1.1.2", "@radix-ui/react-primitive": "2.1.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-vPdg/tF6YC/ynuBIJlk1mm7Le0VgW6ub6J2UWnTQ7/D23KXcPI1qy+0vBkgKgd38RCMJavBXpB83HPNFMTb0Fg=="],
+
+ "radix-ui/@radix-ui/react-separator": ["@radix-ui/react-separator@1.1.7", "", { "dependencies": { "@radix-ui/react-primitive": "2.1.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-0HEb8R9E8A+jZjvmFCy/J4xhbXy3TV+9XSnGJ3KvTtjlIUy/YQ/p6UYZvi7YbeoeXdyU9+Y3scizK6hkY37baA=="],
+
+ "radix-ui/@radix-ui/react-slot": ["@radix-ui/react-slot@1.2.3", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A=="],
+
"rc/strip-json-comments": ["strip-json-comments@2.0.1", "", {}, "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ=="],
"react-devtools-core/ws": ["ws@7.5.10", "", { "peerDependencies": { "bufferutil": "^4.0.1", "utf-8-validate": "^5.0.2" }, "optionalPeers": ["bufferutil", "utf-8-validate"] }, "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ=="],
+ "react-email/esbuild": ["esbuild@0.27.3", "", { "optionalDependencies": { "@esbuild/aix-ppc64": "0.27.3", "@esbuild/android-arm": "0.27.3", "@esbuild/android-arm64": "0.27.3", "@esbuild/android-x64": "0.27.3", "@esbuild/darwin-arm64": "0.27.3", "@esbuild/darwin-x64": "0.27.3", "@esbuild/freebsd-arm64": "0.27.3", "@esbuild/freebsd-x64": "0.27.3", "@esbuild/linux-arm": "0.27.3", "@esbuild/linux-arm64": "0.27.3", "@esbuild/linux-ia32": "0.27.3", "@esbuild/linux-loong64": "0.27.3", "@esbuild/linux-mips64el": "0.27.3", "@esbuild/linux-ppc64": "0.27.3", "@esbuild/linux-riscv64": "0.27.3", "@esbuild/linux-s390x": "0.27.3", "@esbuild/linux-x64": "0.27.3", "@esbuild/netbsd-arm64": "0.27.3", "@esbuild/netbsd-x64": "0.27.3", "@esbuild/openbsd-arm64": "0.27.3", "@esbuild/openbsd-x64": "0.27.3", "@esbuild/openharmony-arm64": "0.27.3", "@esbuild/sunos-x64": "0.27.3", "@esbuild/win32-arm64": "0.27.3", "@esbuild/win32-ia32": "0.27.3", "@esbuild/win32-x64": "0.27.3" }, "bin": { "esbuild": "bin/esbuild" } }, "sha512-8VwMnyGCONIs6cWue2IdpHxHnAjzxnw2Zr7MkVxB2vjmQ2ivqGFb4LEG3SMnv0Gb2F/G/2yA8zUaiL1gywDCCg=="],
+
"react-native/@react-native/normalize-colors": ["@react-native/normalize-colors@0.81.6", "", {}, "sha512-/OCgUysHIFhfmZxbJAydVc58l2SGIZbWpbQXBrYEYch8YElBbDFQ8IUtyogB7YJJQ8ewHZFj93rQGaECgkvvcw=="],
"react-native/commander": ["commander@12.1.0", "", {}, "sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA=="],
"react-native/glob": ["glob@7.2.3", "", { "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.1.1", "once": "^1.3.0", "path-is-absolute": "^1.0.0" } }, "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q=="],
+ "react-native/scheduler": ["scheduler@0.26.0", "", {}, "sha512-NlHwttCI/l5gCPR3D1nNXtWABUmBwvZpEQiD4IXSbIDq8BzLIK/7Ir5gTFSGZDUu37K5cMNp0hFtzO38sC7gWA=="],
+
"react-native/semver": ["semver@7.7.3", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q=="],
"react-native/ws": ["ws@6.2.3", "", { "dependencies": { "async-limiter": "~1.0.0" } }, "sha512-jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA=="],
@@ -3485,8 +3916,12 @@
"rimraf/glob": ["glob@7.2.3", "", { "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.1.1", "once": "^1.3.0", "path-is-absolute": "^1.0.0" } }, "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q=="],
+ "sass/chokidar": ["chokidar@3.6.0", "", { "dependencies": { "anymatch": "~3.1.2", "braces": "~3.0.2", "glob-parent": "~5.1.2", "is-binary-path": "~2.1.0", "is-glob": "~4.0.1", "normalize-path": "~3.0.0", "readdirp": "~3.6.0" }, "optionalDependencies": { "fsevents": "~2.3.2" } }, "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw=="],
+
"schema-utils/ajv": ["ajv@8.17.1", "", { "dependencies": { "fast-deep-equal": "^3.1.3", "fast-uri": "^3.0.1", "json-schema-traverse": "^1.0.0", "require-from-string": "^2.0.2" } }, "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g=="],
+ "schema-utils/ajv-formats": ["ajv-formats@2.1.1", "", { "dependencies": { "ajv": "^8.0.0" } }, "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA=="],
+
"send/debug": ["debug@2.6.9", "", { "dependencies": { "ms": "2.0.0" } }, "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="],
"serve-static/send": ["send@0.19.0", "", { "dependencies": { "debug": "2.6.9", "depd": "2.0.0", "destroy": "1.2.0", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "etag": "~1.8.1", "fresh": "0.5.2", "http-errors": "2.0.0", "mime": "1.6.0", "ms": "2.1.3", "on-finished": "2.4.1", "range-parser": "~1.2.1", "statuses": "2.0.1" } }, "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw=="],
@@ -3495,6 +3930,10 @@
"simple-plist/bplist-parser": ["bplist-parser@0.3.1", "", { "dependencies": { "big-integer": "1.6.x" } }, "sha512-PyJxiNtA5T2PlLIeBot4lbp7rj4OadzjnMZD/G5zuBNt8ei/yCU7+wW0h2bag9vr8c+/WuRWmSxbqAl9hL1rBA=="],
+ "slice-ansi/ansi-styles": ["ansi-styles@6.2.3", "", {}, "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg=="],
+
+ "slice-ansi/is-fullwidth-code-point": ["is-fullwidth-code-point@5.1.0", "", { "dependencies": { "get-east-asian-width": "^1.3.1" } }, "sha512-5XHYaSyiqADb4RnZ1Bdad6cPp8Toise4TzEjcOYDHZkTCbKgiUl7WTUCpNWHuxmDt91wnsZBc9xinNzopv3JMQ=="],
+
"socket.io/debug": ["debug@4.3.7", "", { "dependencies": { "ms": "^2.1.3" } }, "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ=="],
"socket.io-adapter/debug": ["debug@4.3.7", "", { "dependencies": { "ms": "^2.1.3" } }, "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ=="],
@@ -3509,15 +3948,13 @@
"string-width/emoji-regex": ["emoji-regex@10.6.0", "", {}, "sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A=="],
- "string-width-cjs/emoji-regex": ["emoji-regex@8.0.0", "", {}, "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="],
-
- "string-width-cjs/strip-ansi": ["strip-ansi@6.0.1", "", { "dependencies": { "ansi-regex": "^5.0.1" } }, "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="],
-
"strip-ansi/ansi-regex": ["ansi-regex@6.2.2", "", {}, "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg=="],
"sucrase/commander": ["commander@4.1.1", "", {}, "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA=="],
- "tar/minipass": ["minipass@7.1.3", "", {}, "sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A=="],
+ "terminal-link/ansi-escapes": ["ansi-escapes@4.3.2", "", { "dependencies": { "type-fest": "^0.21.3" } }, "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ=="],
+
+ "terser/acorn": ["acorn@8.15.0", "", { "bin": { "acorn": "bin/acorn" } }, "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg=="],
"terser/commander": ["commander@2.20.3", "", {}, "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ=="],
@@ -3529,21 +3966,35 @@
"tinyglobby/picomatch": ["picomatch@4.0.3", "", {}, "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q=="],
- "usesend-js/react": ["react@19.2.0", "", {}, "sha512-tmbWg6W31tQLeB5cdIBOicJDJRR2KzXsV7uSK9iNfLWQ5bIZfxuPEHp7M8wiHyHnn0DD1i7w3Zmin0FtkrwoCQ=="],
+ "tsx/esbuild": ["esbuild@0.27.0", "", { "optionalDependencies": { "@esbuild/aix-ppc64": "0.27.0", "@esbuild/android-arm": "0.27.0", "@esbuild/android-arm64": "0.27.0", "@esbuild/android-x64": "0.27.0", "@esbuild/darwin-arm64": "0.27.0", "@esbuild/darwin-x64": "0.27.0", "@esbuild/freebsd-arm64": "0.27.0", "@esbuild/freebsd-x64": "0.27.0", "@esbuild/linux-arm": "0.27.0", "@esbuild/linux-arm64": "0.27.0", "@esbuild/linux-ia32": "0.27.0", "@esbuild/linux-loong64": "0.27.0", "@esbuild/linux-mips64el": "0.27.0", "@esbuild/linux-ppc64": "0.27.0", "@esbuild/linux-riscv64": "0.27.0", "@esbuild/linux-s390x": "0.27.0", "@esbuild/linux-x64": "0.27.0", "@esbuild/netbsd-arm64": "0.27.0", "@esbuild/netbsd-x64": "0.27.0", "@esbuild/openbsd-arm64": "0.27.0", "@esbuild/openbsd-x64": "0.27.0", "@esbuild/openharmony-arm64": "0.27.0", "@esbuild/sunos-x64": "0.27.0", "@esbuild/win32-arm64": "0.27.0", "@esbuild/win32-ia32": "0.27.0", "@esbuild/win32-x64": "0.27.0" }, "bin": { "esbuild": "bin/esbuild" } }, "sha512-jd0f4NHbD6cALCyGElNpGAOtWxSq46l9X/sWB0Nzd5er4Kz2YTm+Vl0qKFT9KUJvD8+fiO8AvoHhFvEatfVixA=="],
+
+ "typescript-eslint/@typescript-eslint/utils": ["@typescript-eslint/utils@8.57.2", "", { "dependencies": { "@eslint-community/eslint-utils": "^4.9.1", "@typescript-eslint/scope-manager": "8.57.2", "@typescript-eslint/types": "8.57.2", "@typescript-eslint/typescript-estree": "8.57.2" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", "typescript": ">=4.8.4 <6.0.0" } }, "sha512-krRIbvPK1ju1WBKIefiX+bngPs+odIQUtR7kymzPfo1POVw3jlF+nLkmexdSSd4UCbDcQn+wMBATOOmpBbqgKg=="],
+
+ "usesend-js/@react-email/render": ["@react-email/render@1.4.0", "", { "dependencies": { "html-to-text": "^9.0.5", "prettier": "^3.5.3", "react-promise-suspense": "^0.3.4" }, "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-ZtJ3noggIvW1ZAryoui95KJENKdCzLmN5F7hyZY1F/17B1vwzuxHB7YkuCg0QqHjDivc5axqYEYdIOw4JIQdUw=="],
+
+ "vite/lightningcss": ["lightningcss@1.32.0", "", { "dependencies": { "detect-libc": "^2.0.3" }, "optionalDependencies": { "lightningcss-android-arm64": "1.32.0", "lightningcss-darwin-arm64": "1.32.0", "lightningcss-darwin-x64": "1.32.0", "lightningcss-freebsd-x64": "1.32.0", "lightningcss-linux-arm-gnueabihf": "1.32.0", "lightningcss-linux-arm64-gnu": "1.32.0", "lightningcss-linux-arm64-musl": "1.32.0", "lightningcss-linux-x64-gnu": "1.32.0", "lightningcss-linux-x64-musl": "1.32.0", "lightningcss-win32-arm64-msvc": "1.32.0", "lightningcss-win32-x64-msvc": "1.32.0" } }, "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ=="],
+
+ "vite/tinyglobby": ["tinyglobby@0.2.17", "", { "dependencies": { "fdir": "^6.5.0", "picomatch": "^4.0.4" } }, "sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g=="],
+
+ "vitest/picomatch": ["picomatch@4.0.3", "", {}, "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q=="],
+
+ "vitest/tinyexec": ["tinyexec@1.0.4", "", {}, "sha512-u9r3uZC0bdpGOXtlxUIdwf9pkmvhqJdrVCH9fapQtgy/OeTTMZ1nqH7agtvEfmGui6e1XxjcdrlxvxJvc3sMqw=="],
+
+ "webpack/acorn": ["acorn@8.15.0", "", { "bin": { "acorn": "bin/acorn" } }, "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg=="],
+
+ "webpack/enhanced-resolve": ["enhanced-resolve@5.18.3", "", { "dependencies": { "graceful-fs": "^4.2.4", "tapable": "^2.2.0" } }, "sha512-d4lC8xfavMeBjzGr2vECC3fsGXziXZQyJxD868h2M/mBI3PwAuODxAkLkq5HYuvrPYcUtiLzsTo8U3PgX3Ocww=="],
+
+ "webpack/es-module-lexer": ["es-module-lexer@1.7.0", "", {}, "sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA=="],
"webpack/eslint-scope": ["eslint-scope@5.1.1", "", { "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^4.1.1" } }, "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw=="],
"webpack/mime-types": ["mime-types@2.1.35", "", { "dependencies": { "mime-db": "1.52.0" } }, "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw=="],
- "whatwg-url/webidl-conversions": ["webidl-conversions@3.0.1", "", {}, "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ=="],
+ "whatwg-url-without-unicode/webidl-conversions": ["webidl-conversions@5.0.0", "", {}, "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA=="],
- "wrap-ansi/string-width": ["string-width@4.2.3", "", { "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" } }, "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="],
+ "wrap-ansi/ansi-styles": ["ansi-styles@6.2.3", "", {}, "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg=="],
- "wrap-ansi/strip-ansi": ["strip-ansi@6.0.1", "", { "dependencies": { "ansi-regex": "^5.0.1" } }, "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="],
-
- "wrap-ansi-cjs/string-width": ["string-width@4.2.3", "", { "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" } }, "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="],
-
- "wrap-ansi-cjs/strip-ansi": ["strip-ansi@6.0.1", "", { "dependencies": { "ansi-regex": "^5.0.1" } }, "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="],
+ "wrap-ansi/string-width": ["string-width@8.2.1", "", { "dependencies": { "get-east-asian-width": "^1.5.0", "strip-ansi": "^7.1.2" } }, "sha512-IIaP0g3iy9Cyy18w3M9YcaDudujEAVHKt3a3QJg1+sr/oX96TbaGUubG0hJyCjCBThFH+tFpcIyoUHUn1ogaLA=="],
"write-file-atomic/signal-exit": ["signal-exit@3.0.7", "", {}, "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ=="],
@@ -3555,17 +4006,45 @@
"@babel/helper-compilation-targets/lru-cache/yallist": ["yallist@3.1.1", "", {}, "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g=="],
+ "@babel/helper-create-class-features-plugin/@babel/traverse/@babel/parser": ["@babel/parser@7.28.5", "", { "dependencies": { "@babel/types": "^7.28.5" }, "bin": "./bin/babel-parser.js" }, "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ=="],
+
+ "@babel/helper-member-expression-to-functions/@babel/traverse/@babel/parser": ["@babel/parser@7.28.5", "", { "dependencies": { "@babel/types": "^7.28.5" }, "bin": "./bin/babel-parser.js" }, "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ=="],
+
+ "@babel/helper-module-imports/@babel/traverse/@babel/parser": ["@babel/parser@7.28.5", "", { "dependencies": { "@babel/types": "^7.28.5" }, "bin": "./bin/babel-parser.js" }, "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ=="],
+
+ "@babel/helper-module-transforms/@babel/traverse/@babel/parser": ["@babel/parser@7.28.5", "", { "dependencies": { "@babel/types": "^7.28.5" }, "bin": "./bin/babel-parser.js" }, "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ=="],
+
+ "@babel/helper-remap-async-to-generator/@babel/traverse/@babel/parser": ["@babel/parser@7.28.5", "", { "dependencies": { "@babel/types": "^7.28.5" }, "bin": "./bin/babel-parser.js" }, "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ=="],
+
+ "@babel/helper-replace-supers/@babel/traverse/@babel/parser": ["@babel/parser@7.28.5", "", { "dependencies": { "@babel/types": "^7.28.5" }, "bin": "./bin/babel-parser.js" }, "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ=="],
+
+ "@babel/helper-skip-transparent-expression-wrappers/@babel/traverse/@babel/parser": ["@babel/parser@7.28.5", "", { "dependencies": { "@babel/types": "^7.28.5" }, "bin": "./bin/babel-parser.js" }, "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ=="],
+
+ "@babel/helper-wrap-function/@babel/traverse/@babel/parser": ["@babel/parser@7.28.5", "", { "dependencies": { "@babel/types": "^7.28.5" }, "bin": "./bin/babel-parser.js" }, "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ=="],
+
"@babel/highlight/chalk/ansi-styles": ["ansi-styles@3.2.1", "", { "dependencies": { "color-convert": "^1.9.0" } }, "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA=="],
"@babel/highlight/chalk/escape-string-regexp": ["escape-string-regexp@1.0.5", "", {}, "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg=="],
"@babel/highlight/chalk/supports-color": ["supports-color@5.5.0", "", { "dependencies": { "has-flag": "^3.0.0" } }, "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow=="],
- "@expo/cli/glob/minimatch": ["minimatch@10.2.4", "", { "dependencies": { "brace-expansion": "^5.0.2" } }, "sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg=="],
+ "@babel/plugin-transform-async-generator-functions/@babel/traverse/@babel/parser": ["@babel/parser@7.28.5", "", { "dependencies": { "@babel/types": "^7.28.5" }, "bin": "./bin/babel-parser.js" }, "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ=="],
- "@expo/cli/glob/minipass": ["minipass@7.1.3", "", {}, "sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A=="],
+ "@babel/plugin-transform-classes/@babel/traverse/@babel/parser": ["@babel/parser@7.28.5", "", { "dependencies": { "@babel/types": "^7.28.5" }, "bin": "./bin/babel-parser.js" }, "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ=="],
- "@expo/cli/glob/path-scurry": ["path-scurry@2.0.2", "", { "dependencies": { "lru-cache": "^11.0.0", "minipass": "^7.1.2" } }, "sha512-3O/iVVsJAPsOnpwWIeD+d6z/7PmqApyQePUtCndjatj/9I5LylHvt5qluFaBT3I5h3r1ejfR056c+FCv+NnNXg=="],
+ "@babel/plugin-transform-destructuring/@babel/traverse/@babel/parser": ["@babel/parser@7.28.5", "", { "dependencies": { "@babel/types": "^7.28.5" }, "bin": "./bin/babel-parser.js" }, "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ=="],
+
+ "@babel/plugin-transform-function-name/@babel/traverse/@babel/parser": ["@babel/parser@7.28.5", "", { "dependencies": { "@babel/types": "^7.28.5" }, "bin": "./bin/babel-parser.js" }, "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ=="],
+
+ "@babel/plugin-transform-object-rest-spread/@babel/traverse/@babel/parser": ["@babel/parser@7.28.5", "", { "dependencies": { "@babel/types": "^7.28.5" }, "bin": "./bin/babel-parser.js" }, "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ=="],
+
+ "@eslint/eslintrc/espree/acorn": ["acorn@8.15.0", "", { "bin": { "acorn": "bin/acorn" } }, "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg=="],
+
+ "@eslint/eslintrc/espree/eslint-visitor-keys": ["eslint-visitor-keys@4.2.1", "", {}, "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ=="],
+
+ "@eslint/eslintrc/minimatch/brace-expansion": ["brace-expansion@1.1.12", "", { "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg=="],
+
+ "@expo/cli/chalk/ansi-styles": ["ansi-styles@4.3.0", "", { "dependencies": { "color-convert": "^2.0.1" } }, "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="],
"@expo/cli/minimatch/brace-expansion": ["brace-expansion@2.0.2", "", { "dependencies": { "balanced-match": "^1.0.0" } }, "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ=="],
@@ -3577,40 +4056,36 @@
"@expo/cli/ora/strip-ansi": ["strip-ansi@5.2.0", "", { "dependencies": { "ansi-regex": "^4.1.0" } }, "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA=="],
- "@expo/config-plugins/glob/minimatch": ["minimatch@10.2.4", "", { "dependencies": { "brace-expansion": "^5.0.2" } }, "sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg=="],
+ "@expo/cli/wrap-ansi/ansi-styles": ["ansi-styles@4.3.0", "", { "dependencies": { "color-convert": "^2.0.1" } }, "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="],
- "@expo/config-plugins/glob/minipass": ["minipass@7.1.3", "", {}, "sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A=="],
+ "@expo/cli/wrap-ansi/string-width": ["string-width@4.2.3", "", { "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" } }, "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="],
- "@expo/config-plugins/glob/path-scurry": ["path-scurry@2.0.2", "", { "dependencies": { "lru-cache": "^11.0.0", "minipass": "^7.1.2" } }, "sha512-3O/iVVsJAPsOnpwWIeD+d6z/7PmqApyQePUtCndjatj/9I5LylHvt5qluFaBT3I5h3r1ejfR056c+FCv+NnNXg=="],
+ "@expo/cli/wrap-ansi/strip-ansi": ["strip-ansi@6.0.1", "", { "dependencies": { "ansi-regex": "^5.0.1" } }, "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="],
- "@expo/config/glob/minimatch": ["minimatch@10.2.4", "", { "dependencies": { "brace-expansion": "^5.0.2" } }, "sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg=="],
+ "@expo/config-plugins/chalk/ansi-styles": ["ansi-styles@4.3.0", "", { "dependencies": { "color-convert": "^2.0.1" } }, "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="],
- "@expo/config/glob/minipass": ["minipass@7.1.3", "", {}, "sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A=="],
+ "@expo/devtools/chalk/ansi-styles": ["ansi-styles@4.3.0", "", { "dependencies": { "color-convert": "^2.0.1" } }, "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="],
- "@expo/config/glob/path-scurry": ["path-scurry@2.0.2", "", { "dependencies": { "lru-cache": "^11.0.0", "minipass": "^7.1.2" } }, "sha512-3O/iVVsJAPsOnpwWIeD+d6z/7PmqApyQePUtCndjatj/9I5LylHvt5qluFaBT3I5h3r1ejfR056c+FCv+NnNXg=="],
+ "@expo/env/chalk/ansi-styles": ["ansi-styles@4.3.0", "", { "dependencies": { "color-convert": "^2.0.1" } }, "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="],
"@expo/env/dotenv-expand/dotenv": ["dotenv@16.6.1", "", {}, "sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow=="],
- "@expo/fingerprint/glob/minimatch": ["minimatch@10.2.4", "", { "dependencies": { "brace-expansion": "^5.0.2" } }, "sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg=="],
-
- "@expo/fingerprint/glob/minipass": ["minipass@7.1.3", "", {}, "sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A=="],
-
- "@expo/fingerprint/glob/path-scurry": ["path-scurry@2.0.2", "", { "dependencies": { "lru-cache": "^11.0.0", "minipass": "^7.1.2" } }, "sha512-3O/iVVsJAPsOnpwWIeD+d6z/7PmqApyQePUtCndjatj/9I5LylHvt5qluFaBT3I5h3r1ejfR056c+FCv+NnNXg=="],
+ "@expo/fingerprint/chalk/ansi-styles": ["ansi-styles@4.3.0", "", { "dependencies": { "color-convert": "^2.0.1" } }, "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="],
"@expo/fingerprint/minimatch/brace-expansion": ["brace-expansion@2.0.2", "", { "dependencies": { "balanced-match": "^1.0.0" } }, "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ=="],
+ "@expo/image-utils/chalk/ansi-styles": ["ansi-styles@4.3.0", "", { "dependencies": { "color-convert": "^2.0.1" } }, "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="],
+
+ "@expo/metro-config/chalk/ansi-styles": ["ansi-styles@4.3.0", "", { "dependencies": { "color-convert": "^2.0.1" } }, "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="],
+
"@expo/metro-config/dotenv-expand/dotenv": ["dotenv@16.6.1", "", {}, "sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow=="],
- "@expo/metro-config/glob/minimatch": ["minimatch@10.2.4", "", { "dependencies": { "brace-expansion": "^5.0.2" } }, "sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg=="],
-
- "@expo/metro-config/glob/minipass": ["minipass@7.1.3", "", {}, "sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A=="],
-
- "@expo/metro-config/glob/path-scurry": ["path-scurry@2.0.2", "", { "dependencies": { "lru-cache": "^11.0.0", "minipass": "^7.1.2" } }, "sha512-3O/iVVsJAPsOnpwWIeD+d6z/7PmqApyQePUtCndjatj/9I5LylHvt5qluFaBT3I5h3r1ejfR056c+FCv+NnNXg=="],
-
"@expo/metro-config/hermes-parser/hermes-estree": ["hermes-estree@0.29.1", "", {}, "sha512-jl+x31n4/w+wEqm0I2r4CMimukLbLQEYpisys5oCre611CI5fc9TxhqkBBCJ1edDG4Kza0f7CgNz8xVMLZQOmQ=="],
"@expo/metro-config/minimatch/brace-expansion": ["brace-expansion@2.0.2", "", { "dependencies": { "balanced-match": "^1.0.0" } }, "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ=="],
+ "@expo/package-manager/chalk/ansi-styles": ["ansi-styles@4.3.0", "", { "dependencies": { "color-convert": "^2.0.1" } }, "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="],
+
"@expo/package-manager/ora/chalk": ["chalk@2.4.2", "", { "dependencies": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", "supports-color": "^5.3.0" } }, "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ=="],
"@expo/package-manager/ora/cli-cursor": ["cli-cursor@2.1.0", "", { "dependencies": { "restore-cursor": "^2.0.0" } }, "sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw=="],
@@ -3619,24 +4094,34 @@
"@expo/package-manager/ora/strip-ansi": ["strip-ansi@5.2.0", "", { "dependencies": { "ansi-regex": "^4.1.0" } }, "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA=="],
+ "@expo/xcpretty/chalk/ansi-styles": ["ansi-styles@4.3.0", "", { "dependencies": { "color-convert": "^2.0.1" } }, "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="],
+
"@fastify/otel/@opentelemetry/instrumentation/@opentelemetry/api-logs": ["@opentelemetry/api-logs@0.212.0", "", { "dependencies": { "@opentelemetry/api": "^1.3.0" } }, "sha512-TEEVrLbNROUkYY51sBJGk7lO/OLjuepch8+hmpM6ffMJQ2z/KVCjdHuCFX6fJj8OkJP2zckPjrJzQtXU3IAsFg=="],
"@fastify/otel/@opentelemetry/instrumentation/import-in-the-middle": ["import-in-the-middle@2.0.6", "", { "dependencies": { "acorn": "^8.15.0", "acorn-import-attributes": "^1.9.5", "cjs-module-lexer": "^2.2.0", "module-details-from-path": "^1.0.4" } }, "sha512-3vZV3jX0XRFW3EJDTwzWoZa+RH1b8eTTx6YOCjglrLyPuepwoBti1k3L2dKwdCUrnVEfc5CuRuGstaC/uQJJaw=="],
"@fastify/otel/@opentelemetry/instrumentation/require-in-the-middle": ["require-in-the-middle@8.0.1", "", { "dependencies": { "debug": "^4.3.5", "module-details-from-path": "^1.0.3" } }, "sha512-QT7FVMXfWOYFbeRBF6nu+I6tr2Tf3u0q8RIEjNob/heKY/nh7drD/k7eeMFmSQgnTtCzLDcCu/XEnpW2wk4xCQ=="],
- "@fastify/otel/minimatch/brace-expansion": ["brace-expansion@5.0.4", "", { "dependencies": { "balanced-match": "^4.0.2" } }, "sha512-h+DEnpVvxmfVefa4jFbCf5HdH5YMDXRsmKflpf1pILZWRFlTbJpxeU55nJl4Smt5HQaGzg1o6RHFPJaOqnmBDg=="],
+ "@inquirer/core/wrap-ansi/ansi-styles": ["ansi-styles@4.3.0", "", { "dependencies": { "color-convert": "^2.0.1" } }, "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="],
"@inquirer/core/wrap-ansi/string-width": ["string-width@4.2.3", "", { "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" } }, "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="],
"@inquirer/core/wrap-ansi/strip-ansi": ["strip-ansi@6.0.1", "", { "dependencies": { "ansi-regex": "^5.0.1" } }, "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="],
- "@isaacs/cliui/wrap-ansi/ansi-styles": ["ansi-styles@6.2.3", "", {}, "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg=="],
-
"@istanbuljs/load-nyc-config/find-up/locate-path": ["locate-path@5.0.0", "", { "dependencies": { "p-locate": "^4.1.0" } }, "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g=="],
"@istanbuljs/load-nyc-config/js-yaml/argparse": ["argparse@1.0.10", "", { "dependencies": { "sprintf-js": "~1.0.2" } }, "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg=="],
+ "@jest/environment/@types/node/undici-types": ["undici-types@6.21.0", "", {}, "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ=="],
+
+ "@jest/fake-timers/@types/node/undici-types": ["undici-types@6.21.0", "", {}, "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ=="],
+
+ "@jest/transform/chalk/ansi-styles": ["ansi-styles@4.3.0", "", { "dependencies": { "color-convert": "^2.0.1" } }, "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="],
+
+ "@jest/types/@types/node/undici-types": ["undici-types@6.21.0", "", {}, "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ=="],
+
+ "@jest/types/chalk/ansi-styles": ["ansi-styles@4.3.0", "", { "dependencies": { "color-convert": "^2.0.1" } }, "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="],
+
"@opentelemetry/sql-common/@opentelemetry/core/@opentelemetry/semantic-conventions": ["@opentelemetry/semantic-conventions@1.37.0", "", {}, "sha512-JD6DerIKdJGmRp4jQyX5FlrQjA4tjOw1cvfsPAZXfOOEErMUHjPcPSICS+6WnM0nB0efSFARh0KAZss+bvExOA=="],
"@prisma/instrumentation/@opentelemetry/instrumentation/@opentelemetry/api-logs": ["@opentelemetry/api-logs@0.207.0", "", { "dependencies": { "@opentelemetry/api": "^1.3.0" } }, "sha512-lAb0jQRVyleQQGiuuvCOTDVspc14nx6XJjP4FspJ1sNARo3Regq4ZZbrc3rN4b1TYSuUCvgH+UXUPug4SLOqEQ=="],
@@ -3645,9 +4130,67 @@
"@prisma/instrumentation/@opentelemetry/instrumentation/require-in-the-middle": ["require-in-the-middle@8.0.1", "", { "dependencies": { "debug": "^4.3.5", "module-details-from-path": "^1.0.3" } }, "sha512-QT7FVMXfWOYFbeRBF6nu+I6tr2Tf3u0q8RIEjNob/heKY/nh7drD/k7eeMFmSQgnTtCzLDcCu/XEnpW2wk4xCQ=="],
+ "@radix-ui/react-accordion/@radix-ui/react-primitive/@radix-ui/react-slot": ["@radix-ui/react-slot@1.2.3", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A=="],
+
+ "@radix-ui/react-arrow/@radix-ui/react-primitive/@radix-ui/react-slot": ["@radix-ui/react-slot@1.2.3", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A=="],
+
+ "@radix-ui/react-aspect-ratio/@radix-ui/react-primitive/@radix-ui/react-slot": ["@radix-ui/react-slot@1.2.3", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A=="],
+
+ "@radix-ui/react-checkbox/@radix-ui/react-primitive/@radix-ui/react-slot": ["@radix-ui/react-slot@1.2.3", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A=="],
+
+ "@radix-ui/react-collapsible/@radix-ui/react-primitive/@radix-ui/react-slot": ["@radix-ui/react-slot@1.2.3", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A=="],
+
+ "@radix-ui/react-context-menu/@radix-ui/react-primitive/@radix-ui/react-slot": ["@radix-ui/react-slot@1.2.3", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A=="],
+
+ "@radix-ui/react-dismissable-layer/@radix-ui/react-primitive/@radix-ui/react-slot": ["@radix-ui/react-slot@1.2.3", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A=="],
+
+ "@radix-ui/react-dropdown-menu/@radix-ui/react-primitive/@radix-ui/react-slot": ["@radix-ui/react-slot@1.2.3", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A=="],
+
+ "@radix-ui/react-focus-scope/@radix-ui/react-primitive/@radix-ui/react-slot": ["@radix-ui/react-slot@1.2.3", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A=="],
+
+ "@radix-ui/react-form/@radix-ui/react-primitive/@radix-ui/react-slot": ["@radix-ui/react-slot@1.2.3", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A=="],
+
+ "@radix-ui/react-hover-card/@radix-ui/react-primitive/@radix-ui/react-slot": ["@radix-ui/react-slot@1.2.3", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A=="],
+
+ "@radix-ui/react-menubar/@radix-ui/react-primitive/@radix-ui/react-slot": ["@radix-ui/react-slot@1.2.3", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A=="],
+
+ "@radix-ui/react-navigation-menu/@radix-ui/react-primitive/@radix-ui/react-slot": ["@radix-ui/react-slot@1.2.3", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A=="],
+
+ "@radix-ui/react-one-time-password-field/@radix-ui/react-primitive/@radix-ui/react-slot": ["@radix-ui/react-slot@1.2.3", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A=="],
+
+ "@radix-ui/react-password-toggle-field/@radix-ui/react-primitive/@radix-ui/react-slot": ["@radix-ui/react-slot@1.2.3", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A=="],
+
"@radix-ui/react-popper/@floating-ui/react-dom/@floating-ui/dom": ["@floating-ui/dom@1.7.4", "", { "dependencies": { "@floating-ui/core": "^1.7.3", "@floating-ui/utils": "^0.2.10" } }, "sha512-OOchDgh4F2CchOX94cRVqhvy7b3AFb+/rQXyswmzmGakRfkMgoWVjfnLWkRirfLEfuD4ysVW16eXzwt3jHIzKA=="],
- "@react-email/components/@react-email/render/prettier": ["prettier@3.6.2", "", { "bin": { "prettier": "bin/prettier.cjs" } }, "sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ=="],
+ "@radix-ui/react-popper/@radix-ui/react-primitive/@radix-ui/react-slot": ["@radix-ui/react-slot@1.2.3", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A=="],
+
+ "@radix-ui/react-portal/@radix-ui/react-primitive/@radix-ui/react-slot": ["@radix-ui/react-slot@1.2.3", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A=="],
+
+ "@radix-ui/react-radio-group/@radix-ui/react-primitive/@radix-ui/react-slot": ["@radix-ui/react-slot@1.2.3", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A=="],
+
+ "@radix-ui/react-roving-focus/@radix-ui/react-primitive/@radix-ui/react-slot": ["@radix-ui/react-slot@1.2.3", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A=="],
+
+ "@radix-ui/react-scroll-area/@radix-ui/react-primitive/@radix-ui/react-slot": ["@radix-ui/react-slot@1.2.3", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A=="],
+
+ "@radix-ui/react-slider/@radix-ui/react-primitive/@radix-ui/react-slot": ["@radix-ui/react-slot@1.2.3", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A=="],
+
+ "@radix-ui/react-switch/@radix-ui/react-primitive/@radix-ui/react-slot": ["@radix-ui/react-slot@1.2.3", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A=="],
+
+ "@radix-ui/react-tabs/@radix-ui/react-primitive/@radix-ui/react-slot": ["@radix-ui/react-slot@1.2.3", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A=="],
+
+ "@radix-ui/react-toast/@radix-ui/react-primitive/@radix-ui/react-slot": ["@radix-ui/react-slot@1.2.3", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A=="],
+
+ "@radix-ui/react-toggle-group/@radix-ui/react-primitive/@radix-ui/react-slot": ["@radix-ui/react-slot@1.2.3", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A=="],
+
+ "@radix-ui/react-toggle/@radix-ui/react-primitive/@radix-ui/react-slot": ["@radix-ui/react-slot@1.2.3", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A=="],
+
+ "@radix-ui/react-toolbar/@radix-ui/react-primitive/@radix-ui/react-slot": ["@radix-ui/react-slot@1.2.3", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A=="],
+
+ "@radix-ui/react-visually-hidden/@radix-ui/react-primitive/@radix-ui/react-slot": ["@radix-ui/react-slot@1.2.3", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A=="],
+
+ "@react-native/babel-plugin-codegen/@babel/traverse/@babel/parser": ["@babel/parser@7.28.5", "", { "dependencies": { "@babel/types": "^7.28.5" }, "bin": "./bin/babel-parser.js" }, "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ=="],
+
+ "@react-native/babel-plugin-codegen/@react-native/codegen/@babel/parser": ["@babel/parser@7.28.5", "", { "dependencies": { "@babel/types": "^7.28.5" }, "bin": "./bin/babel-parser.js" }, "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ=="],
"@react-native/babel-plugin-codegen/@react-native/codegen/glob": ["glob@7.2.3", "", { "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.1.1", "once": "^1.3.0", "path-is-absolute": "^1.0.0" } }, "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q=="],
@@ -3661,6 +4204,12 @@
"@react-native/community-cli-plugin/@react-native/dev-middleware/ws": ["ws@6.2.3", "", { "dependencies": { "async-limiter": "~1.0.0" } }, "sha512-jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA=="],
+ "@react-native/community-cli-plugin/metro/@babel/parser": ["@babel/parser@7.28.5", "", { "dependencies": { "@babel/types": "^7.28.5" }, "bin": "./bin/babel-parser.js" }, "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ=="],
+
+ "@react-native/community-cli-plugin/metro/@babel/traverse": ["@babel/traverse@7.28.5", "", { "dependencies": { "@babel/code-frame": "^7.27.1", "@babel/generator": "^7.28.5", "@babel/helper-globals": "^7.28.0", "@babel/parser": "^7.28.5", "@babel/template": "^7.27.2", "@babel/types": "^7.28.5", "debug": "^4.3.1" } }, "sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ=="],
+
+ "@react-native/community-cli-plugin/metro/chalk": ["chalk@4.1.2", "", { "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } }, "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="],
+
"@react-native/community-cli-plugin/metro/ci-info": ["ci-info@2.0.0", "", {}, "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ=="],
"@react-native/community-cli-plugin/metro/hermes-parser": ["hermes-parser@0.32.0", "", { "dependencies": { "hermes-estree": "0.32.0" } }, "sha512-g4nBOWFpuiTqjR3LZdRxKUkij9iyveWeuks7INEsMX741f3r9xxrOe8TeQfUxtda0eXmiIFiMQzoeSQEno33Hw=="],
@@ -3693,6 +4242,8 @@
"@react-native/community-cli-plugin/metro-config/metro-runtime": ["metro-runtime@0.83.2", "", { "dependencies": { "@babel/runtime": "^7.25.0", "flow-enums-runtime": "^0.0.6" } }, "sha512-nnsPtgRvFbNKwemqs0FuyFDzXLl+ezuFsUXDbX8o0SXOfsOPijqiQrf3kuafO1Zx1aUWf4NOrKJMAQP5EEHg9A=="],
+ "@react-native/community-cli-plugin/metro-config/yaml": ["yaml@2.8.1", "", { "bin": { "yaml": "bin.mjs" } }, "sha512-lcYcMxX2PO9XMGvAJkJ3OsNMw+/7FKes7/hgerGUYWIoWu5j/+YQqcZr5JnPZWzOsEBgMbSbiSTn/dv/69Mkpw=="],
+
"@react-native/community-cli-plugin/metro-core/metro-resolver": ["metro-resolver@0.83.2", "", { "dependencies": { "flow-enums-runtime": "^0.0.6" } }, "sha512-Yf5mjyuiRE/Y+KvqfsZxrbHDA15NZxyfg8pIk0qg47LfAJhpMVEX+36e6ZRBq7KVBqy6VDX5Sq55iHGM4xSm7Q=="],
"@sentry/bundler-plugin-core/@sentry/cli/@sentry/cli-darwin": ["@sentry/cli-darwin@2.58.5", "", { "os": "darwin" }, "sha512-lYrNzenZFJftfwSya7gwrHGxtE+Kob/e1sr9lmHMFOd4utDlmq0XFDllmdZAMf21fxcPRI1GL28ejZ3bId01fQ=="],
@@ -3711,17 +4262,93 @@
"@sentry/bundler-plugin-core/@sentry/cli/@sentry/cli-win32-x64": ["@sentry/cli-win32-x64@2.58.5", "", { "os": "win32", "cpu": "x64" }, "sha512-IZf+XIMiQwj+5NzqbOQfywlOitmCV424Vtf9c+ep61AaVScUFD1TSrQbOcJJv5xGxhlxNOMNgMeZhdexdzrKZg=="],
- "@sentry/bundler-plugin-core/glob/minimatch": ["minimatch@10.2.4", "", { "dependencies": { "brace-expansion": "^5.0.2" } }, "sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg=="],
+ "@sentry/nextjs/@sentry/react/@sentry/browser": ["@sentry/browser@10.46.0", "", { "dependencies": { "@sentry-internal/browser-utils": "10.46.0", "@sentry-internal/feedback": "10.46.0", "@sentry-internal/replay": "10.46.0", "@sentry-internal/replay-canvas": "10.46.0", "@sentry/core": "10.46.0" } }, "sha512-80DmGlTk5Z2/OxVOzLNxwolMyouuAYKqG8KUcoyintZqHbF6kO1RulI610HmyUt3OagKeBCqt9S7w0VIfCRL+Q=="],
- "@sentry/bundler-plugin-core/glob/minipass": ["minipass@7.1.3", "", {}, "sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A=="],
+ "@tailwindcss/node/lightningcss/lightningcss-android-arm64": ["lightningcss-android-arm64@1.32.0", "", { "os": "android", "cpu": "arm64" }, "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg=="],
- "@sentry/bundler-plugin-core/glob/path-scurry": ["path-scurry@2.0.2", "", { "dependencies": { "lru-cache": "^11.0.0", "minipass": "^7.1.2" } }, "sha512-3O/iVVsJAPsOnpwWIeD+d6z/7PmqApyQePUtCndjatj/9I5LylHvt5qluFaBT3I5h3r1ejfR056c+FCv+NnNXg=="],
+ "@tailwindcss/node/lightningcss/lightningcss-darwin-arm64": ["lightningcss-darwin-arm64@1.32.0", "", { "os": "darwin", "cpu": "arm64" }, "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ=="],
- "@sentry/nextjs/@sentry/react/@sentry/browser": ["@sentry/browser@10.45.0", "", { "dependencies": { "@sentry-internal/browser-utils": "10.45.0", "@sentry-internal/feedback": "10.45.0", "@sentry-internal/replay": "10.45.0", "@sentry-internal/replay-canvas": "10.45.0", "@sentry/core": "10.45.0" } }, "sha512-e/a8UMiQhqqv706McSIcG6XK+AoQf9INthi2pD+giZfNRTzXTdqHzUT5OIO5hg8Am6eF63nDJc+vrYNPhzs51Q=="],
+ "@tailwindcss/node/lightningcss/lightningcss-darwin-x64": ["lightningcss-darwin-x64@1.32.0", "", { "os": "darwin", "cpu": "x64" }, "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w=="],
- "@typescript-eslint/typescript-estree/fast-glob/glob-parent": ["glob-parent@5.1.2", "", { "dependencies": { "is-glob": "^4.0.1" } }, "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow=="],
+ "@tailwindcss/node/lightningcss/lightningcss-freebsd-x64": ["lightningcss-freebsd-x64@1.32.0", "", { "os": "freebsd", "cpu": "x64" }, "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig=="],
- "@typescript-eslint/typescript-estree/minimatch/brace-expansion": ["brace-expansion@2.0.2", "", { "dependencies": { "balanced-match": "^1.0.0" } }, "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ=="],
+ "@tailwindcss/node/lightningcss/lightningcss-linux-arm-gnueabihf": ["lightningcss-linux-arm-gnueabihf@1.32.0", "", { "os": "linux", "cpu": "arm" }, "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw=="],
+
+ "@tailwindcss/node/lightningcss/lightningcss-linux-arm64-gnu": ["lightningcss-linux-arm64-gnu@1.32.0", "", { "os": "linux", "cpu": "arm64" }, "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ=="],
+
+ "@tailwindcss/node/lightningcss/lightningcss-linux-arm64-musl": ["lightningcss-linux-arm64-musl@1.32.0", "", { "os": "linux", "cpu": "arm64" }, "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg=="],
+
+ "@tailwindcss/node/lightningcss/lightningcss-linux-x64-gnu": ["lightningcss-linux-x64-gnu@1.32.0", "", { "os": "linux", "cpu": "x64" }, "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA=="],
+
+ "@tailwindcss/node/lightningcss/lightningcss-linux-x64-musl": ["lightningcss-linux-x64-musl@1.32.0", "", { "os": "linux", "cpu": "x64" }, "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg=="],
+
+ "@tailwindcss/node/lightningcss/lightningcss-win32-arm64-msvc": ["lightningcss-win32-arm64-msvc@1.32.0", "", { "os": "win32", "cpu": "arm64" }, "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw=="],
+
+ "@tailwindcss/node/lightningcss/lightningcss-win32-x64-msvc": ["lightningcss-win32-x64-msvc@1.32.0", "", { "os": "win32", "cpu": "x64" }, "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q=="],
+
+ "@tailwindcss/oxide-wasm32-wasi/@emnapi/core/@emnapi/wasi-threads": ["@emnapi/wasi-threads@1.2.0", "", { "dependencies": { "tslib": "^2.4.0" } }, "sha512-N10dEJNSsUx41Z6pZsXU8FjPjpBEplgH24sfkmITrBED1/U2Esum9F3lfLrMjKHHjmi557zQn7kR9R+XWXu5Rg=="],
+
+ "@testing-library/dom/pretty-format/react-is": ["react-is@17.0.2", "", {}, "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w=="],
+
+ "@types/connect/@types/node/undici-types": ["undici-types@6.21.0", "", {}, "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ=="],
+
+ "@types/cors/@types/node/undici-types": ["undici-types@6.21.0", "", {}, "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ=="],
+
+ "@types/graceful-fs/@types/node/undici-types": ["undici-types@6.21.0", "", {}, "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ=="],
+
+ "@types/mysql/@types/node/undici-types": ["undici-types@6.21.0", "", {}, "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ=="],
+
+ "@types/pg/@types/node/undici-types": ["undici-types@6.21.0", "", {}, "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ=="],
+
+ "@types/tedious/@types/node/undici-types": ["undici-types@6.21.0", "", {}, "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ=="],
+
+ "@types/ws/@types/node/undici-types": ["undici-types@6.21.0", "", {}, "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ=="],
+
+ "@typescript-eslint/eslint-plugin/@typescript-eslint/scope-manager/@typescript-eslint/types": ["@typescript-eslint/types@8.57.2", "", {}, "sha512-/iZM6FnM4tnx9csuTxspMW4BOSegshwX5oBDznJ7S4WggL7Vczz5d2W11ecc4vRrQMQHXRSxzrCsyG5EsPPTbA=="],
+
+ "@typescript-eslint/eslint-plugin/@typescript-eslint/utils/@typescript-eslint/types": ["@typescript-eslint/types@8.57.2", "", {}, "sha512-/iZM6FnM4tnx9csuTxspMW4BOSegshwX5oBDznJ7S4WggL7Vczz5d2W11ecc4vRrQMQHXRSxzrCsyG5EsPPTbA=="],
+
+ "@typescript-eslint/scope-manager/@typescript-eslint/visitor-keys/eslint-visitor-keys": ["eslint-visitor-keys@4.2.1", "", {}, "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ=="],
+
+ "@typescript-eslint/type-utils/@typescript-eslint/utils/@typescript-eslint/scope-manager": ["@typescript-eslint/scope-manager@8.57.2", "", { "dependencies": { "@typescript-eslint/types": "8.57.2", "@typescript-eslint/visitor-keys": "8.57.2" } }, "sha512-snZKH+W4WbWkrBqj4gUNRIGb/jipDW3qMqVJ4C9rzdFc+wLwruxk+2a5D+uoFcKPAqyqEnSb4l2ULuZf95eSkw=="],
+
+ "@typescript-eslint/utils/@eslint-community/eslint-utils/eslint-visitor-keys": ["eslint-visitor-keys@3.4.3", "", {}, "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag=="],
+
+ "@typescript-eslint/utils/@typescript-eslint/typescript-estree/@typescript-eslint/project-service": ["@typescript-eslint/project-service@8.46.2", "", { "dependencies": { "@typescript-eslint/tsconfig-utils": "^8.46.2", "@typescript-eslint/types": "^8.46.2", "debug": "^4.3.4" }, "peerDependencies": { "typescript": ">=4.8.4 <6.0.0" } }, "sha512-PULOLZ9iqwI7hXcmL4fVfIsBi6AN9YxRc0frbvmg8f+4hQAjQ5GYNKK0DIArNo+rOKmR/iBYwkpBmnIwin4wBg=="],
+
+ "@typescript-eslint/utils/@typescript-eslint/typescript-estree/@typescript-eslint/tsconfig-utils": ["@typescript-eslint/tsconfig-utils@8.46.2", "", { "peerDependencies": { "typescript": ">=4.8.4 <6.0.0" } }, "sha512-a7QH6fw4S57+F5y2FIxxSDyi5M4UfGF+Jl1bCGd7+L4KsaUY80GsiF/t0UoRFDHAguKlBaACWJRmdrc6Xfkkag=="],
+
+ "@typescript-eslint/utils/@typescript-eslint/typescript-estree/@typescript-eslint/visitor-keys": ["@typescript-eslint/visitor-keys@8.46.2", "", { "dependencies": { "@typescript-eslint/types": "8.46.2", "eslint-visitor-keys": "^4.2.1" } }, "sha512-tUFMXI4gxzzMXt4xpGJEsBsTox0XbNQ1y94EwlD/CuZwFcQP79xfQqMhau9HsRc/J0cAPA/HZt1dZPtGn9V/7w=="],
+
+ "@typescript-eslint/utils/@typescript-eslint/typescript-estree/fast-glob": ["fast-glob@3.3.3", "", { "dependencies": { "@nodelib/fs.stat": "^2.0.2", "@nodelib/fs.walk": "^1.2.3", "glob-parent": "^5.1.2", "merge2": "^1.3.0", "micromatch": "^4.0.8" } }, "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg=="],
+
+ "@typescript-eslint/utils/@typescript-eslint/typescript-estree/minimatch": ["minimatch@9.0.5", "", { "dependencies": { "brace-expansion": "^2.0.1" } }, "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow=="],
+
+ "@typescript-eslint/utils/@typescript-eslint/typescript-estree/semver": ["semver@7.7.3", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q=="],
+
+ "@typescript-eslint/utils/@typescript-eslint/typescript-estree/ts-api-utils": ["ts-api-utils@2.1.0", "", { "peerDependencies": { "typescript": ">=4.8.4" } }, "sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ=="],
+
+ "@typescript-eslint/utils/eslint/@eslint/config-array": ["@eslint/config-array@0.21.2", "", { "dependencies": { "@eslint/object-schema": "^2.1.7", "debug": "^4.3.1", "minimatch": "^3.1.5" } }, "sha512-nJl2KGTlrf9GjLimgIru+V/mzgSK0ABCDQRvxw5BjURL7WfH5uoWmizbH7QB6MmnMBd8cIC9uceWnezL1VZWWw=="],
+
+ "@typescript-eslint/utils/eslint/@eslint/config-helpers": ["@eslint/config-helpers@0.4.2", "", { "dependencies": { "@eslint/core": "^0.17.0" } }, "sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw=="],
+
+ "@typescript-eslint/utils/eslint/@eslint/core": ["@eslint/core@0.17.0", "", { "dependencies": { "@types/json-schema": "^7.0.15" } }, "sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ=="],
+
+ "@typescript-eslint/utils/eslint/@eslint/js": ["@eslint/js@9.39.4", "", {}, "sha512-nE7DEIchvtiFTwBw4Lfbu59PG+kCofhjsKaCWzxTpt4lfRjRMqG6uMBzKXuEcyXhOHoUp9riAm7/aWYGhXZ9cw=="],
+
+ "@typescript-eslint/utils/eslint/@eslint/plugin-kit": ["@eslint/plugin-kit@0.4.1", "", { "dependencies": { "@eslint/core": "^0.17.0", "levn": "^0.4.1" } }, "sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA=="],
+
+ "@typescript-eslint/utils/eslint/chalk": ["chalk@4.1.2", "", { "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } }, "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="],
+
+ "@typescript-eslint/utils/eslint/eslint-scope": ["eslint-scope@8.4.0", "", { "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^5.2.0" } }, "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg=="],
+
+ "@typescript-eslint/utils/eslint/eslint-visitor-keys": ["eslint-visitor-keys@4.2.1", "", {}, "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ=="],
+
+ "@typescript-eslint/utils/eslint/espree": ["espree@10.4.0", "", { "dependencies": { "acorn": "^8.15.0", "acorn-jsx": "^5.3.2", "eslint-visitor-keys": "^4.2.1" } }, "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ=="],
+
+ "@typescript-eslint/utils/eslint/esquery": ["esquery@1.6.0", "", { "dependencies": { "estraverse": "^5.1.0" } }, "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg=="],
+
+ "@typescript-eslint/utils/eslint/minimatch": ["minimatch@3.1.5", "", { "dependencies": { "brace-expansion": "^1.1.7" } }, "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w=="],
"accepts/mime-types/mime-db": ["mime-db@1.52.0", "", {}, "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg=="],
@@ -3729,12 +4356,26 @@
"ajv-keywords/ajv/json-schema-traverse": ["json-schema-traverse@1.0.0", "", {}, "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="],
+ "babel-jest/chalk/ansi-styles": ["ansi-styles@4.3.0", "", { "dependencies": { "color-convert": "^2.0.1" } }, "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="],
+
"babel-plugin-syntax-hermes-parser/hermes-parser/hermes-estree": ["hermes-estree@0.29.1", "", {}, "sha512-jl+x31n4/w+wEqm0I2r4CMimukLbLQEYpisys5oCre611CI5fc9TxhqkBBCJ1edDG4Kza0f7CgNz8xVMLZQOmQ=="],
+ "chrome-launcher/@types/node/undici-types": ["undici-types@6.21.0", "", {}, "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ=="],
+
+ "chromium-edge-launcher/@types/node/undici-types": ["undici-types@6.21.0", "", {}, "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ=="],
+
+ "cli-truncate/string-width/get-east-asian-width": ["get-east-asian-width@1.6.0", "", {}, "sha512-QRbvDIbx6YklUe6RxeTeleMR0yv3cYH6PsPZHcnVn7xv7zO1BHN8r0XETu8n6Ye3Q+ahtSarc3WgtNWmehIBfA=="],
+
"cliui/string-width/emoji-regex": ["emoji-regex@8.0.0", "", {}, "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="],
+ "cliui/wrap-ansi/ansi-styles": ["ansi-styles@4.3.0", "", { "dependencies": { "color-convert": "^2.0.1" } }, "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="],
+
+ "cmdk/@radix-ui/react-primitive/@radix-ui/react-slot": ["@radix-ui/react-slot@1.2.3", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A=="],
+
"compression/debug/ms": ["ms@2.0.0", "", {}, "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="],
+ "conf/ajv/json-schema-traverse": ["json-schema-traverse@1.0.0", "", {}, "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="],
+
"connect/debug/ms": ["ms@2.0.0", "", {}, "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="],
"convex/esbuild/@esbuild/aix-ppc64": ["@esbuild/aix-ppc64@0.27.0", "", { "os": "aix", "cpu": "ppc64" }, "sha512-KuZrd2hRjz01y5JK9mEBSD3Vj3mbCvemhT466rSuJYeE/hjuBrHfjjcjMdTm/sz7au+++sdbJZJmuBwQLuw68A=="],
@@ -3789,30 +4430,230 @@
"convex/esbuild/@esbuild/win32-x64": ["@esbuild/win32-x64@0.27.0", "", { "os": "win32", "cpu": "x64" }, "sha512-aIitBcjQeyOhMTImhLZmtxfdOcuNRpwlPNmlFKPcHQYPhEssw75Cl1TSXJXpMkzaua9FUetx/4OQKq7eJul5Cg=="],
- "cspell/file-entry-cache/flat-cache": ["flat-cache@5.0.0", "", { "dependencies": { "flatted": "^3.3.1", "keyv": "^4.5.4" } }, "sha512-JrqFmyUl2PnPi1OvLyTVHnQvwQ0S+e6lGSwu8OkAZlSaNIZciTY2H/cOOROxsBA1m/LZNHDsqAgDZt6akWcjsQ=="],
+ "engine.io/@types/node/undici-types": ["undici-types@6.21.0", "", {}, "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ=="],
+
+ "eslint-plugin-import/eslint/@eslint-community/eslint-utils": ["@eslint-community/eslint-utils@4.9.0", "", { "dependencies": { "eslint-visitor-keys": "^3.4.3" }, "peerDependencies": { "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" } }, "sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g=="],
+
+ "eslint-plugin-import/eslint/@eslint/config-array": ["@eslint/config-array@0.21.2", "", { "dependencies": { "@eslint/object-schema": "^2.1.7", "debug": "^4.3.1", "minimatch": "^3.1.5" } }, "sha512-nJl2KGTlrf9GjLimgIru+V/mzgSK0ABCDQRvxw5BjURL7WfH5uoWmizbH7QB6MmnMBd8cIC9uceWnezL1VZWWw=="],
+
+ "eslint-plugin-import/eslint/@eslint/config-helpers": ["@eslint/config-helpers@0.4.2", "", { "dependencies": { "@eslint/core": "^0.17.0" } }, "sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw=="],
+
+ "eslint-plugin-import/eslint/@eslint/core": ["@eslint/core@0.17.0", "", { "dependencies": { "@types/json-schema": "^7.0.15" } }, "sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ=="],
+
+ "eslint-plugin-import/eslint/@eslint/js": ["@eslint/js@9.39.4", "", {}, "sha512-nE7DEIchvtiFTwBw4Lfbu59PG+kCofhjsKaCWzxTpt4lfRjRMqG6uMBzKXuEcyXhOHoUp9riAm7/aWYGhXZ9cw=="],
+
+ "eslint-plugin-import/eslint/@eslint/plugin-kit": ["@eslint/plugin-kit@0.4.1", "", { "dependencies": { "@eslint/core": "^0.17.0", "levn": "^0.4.1" } }, "sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA=="],
+
+ "eslint-plugin-import/eslint/chalk": ["chalk@4.1.2", "", { "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } }, "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="],
+
+ "eslint-plugin-import/eslint/debug": ["debug@4.4.3", "", { "dependencies": { "ms": "^2.1.3" } }, "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA=="],
+
+ "eslint-plugin-import/eslint/eslint-scope": ["eslint-scope@8.4.0", "", { "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^5.2.0" } }, "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg=="],
+
+ "eslint-plugin-import/eslint/eslint-visitor-keys": ["eslint-visitor-keys@4.2.1", "", {}, "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ=="],
+
+ "eslint-plugin-import/eslint/espree": ["espree@10.4.0", "", { "dependencies": { "acorn": "^8.15.0", "acorn-jsx": "^5.3.2", "eslint-visitor-keys": "^4.2.1" } }, "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ=="],
+
+ "eslint-plugin-import/eslint/esquery": ["esquery@1.6.0", "", { "dependencies": { "estraverse": "^5.1.0" } }, "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg=="],
+
+ "eslint-plugin-import/eslint/minimatch": ["minimatch@3.1.5", "", { "dependencies": { "brace-expansion": "^1.1.7" } }, "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w=="],
+
+ "eslint-plugin-import/minimatch/brace-expansion": ["brace-expansion@1.1.12", "", { "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg=="],
"eslint-plugin-import/tsconfig-paths/json5": ["json5@1.0.2", "", { "dependencies": { "minimist": "^1.2.0" }, "bin": { "json5": "lib/cli.js" } }, "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA=="],
+ "eslint-plugin-jsx-a11y/eslint/@eslint-community/eslint-utils": ["@eslint-community/eslint-utils@4.9.0", "", { "dependencies": { "eslint-visitor-keys": "^3.4.3" }, "peerDependencies": { "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" } }, "sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g=="],
+
+ "eslint-plugin-jsx-a11y/eslint/@eslint/config-array": ["@eslint/config-array@0.21.2", "", { "dependencies": { "@eslint/object-schema": "^2.1.7", "debug": "^4.3.1", "minimatch": "^3.1.5" } }, "sha512-nJl2KGTlrf9GjLimgIru+V/mzgSK0ABCDQRvxw5BjURL7WfH5uoWmizbH7QB6MmnMBd8cIC9uceWnezL1VZWWw=="],
+
+ "eslint-plugin-jsx-a11y/eslint/@eslint/config-helpers": ["@eslint/config-helpers@0.4.2", "", { "dependencies": { "@eslint/core": "^0.17.0" } }, "sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw=="],
+
+ "eslint-plugin-jsx-a11y/eslint/@eslint/core": ["@eslint/core@0.17.0", "", { "dependencies": { "@types/json-schema": "^7.0.15" } }, "sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ=="],
+
+ "eslint-plugin-jsx-a11y/eslint/@eslint/js": ["@eslint/js@9.39.4", "", {}, "sha512-nE7DEIchvtiFTwBw4Lfbu59PG+kCofhjsKaCWzxTpt4lfRjRMqG6uMBzKXuEcyXhOHoUp9riAm7/aWYGhXZ9cw=="],
+
+ "eslint-plugin-jsx-a11y/eslint/@eslint/plugin-kit": ["@eslint/plugin-kit@0.4.1", "", { "dependencies": { "@eslint/core": "^0.17.0", "levn": "^0.4.1" } }, "sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA=="],
+
+ "eslint-plugin-jsx-a11y/eslint/chalk": ["chalk@4.1.2", "", { "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } }, "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="],
+
+ "eslint-plugin-jsx-a11y/eslint/eslint-scope": ["eslint-scope@8.4.0", "", { "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^5.2.0" } }, "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg=="],
+
+ "eslint-plugin-jsx-a11y/eslint/eslint-visitor-keys": ["eslint-visitor-keys@4.2.1", "", {}, "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ=="],
+
+ "eslint-plugin-jsx-a11y/eslint/espree": ["espree@10.4.0", "", { "dependencies": { "acorn": "^8.15.0", "acorn-jsx": "^5.3.2", "eslint-visitor-keys": "^4.2.1" } }, "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ=="],
+
+ "eslint-plugin-jsx-a11y/eslint/esquery": ["esquery@1.6.0", "", { "dependencies": { "estraverse": "^5.1.0" } }, "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg=="],
+
+ "eslint-plugin-jsx-a11y/eslint/minimatch": ["minimatch@3.1.5", "", { "dependencies": { "brace-expansion": "^1.1.7" } }, "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w=="],
+
+ "eslint-plugin-jsx-a11y/minimatch/brace-expansion": ["brace-expansion@1.1.12", "", { "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg=="],
+
+ "eslint-plugin-react-hooks/eslint/@eslint-community/eslint-utils": ["@eslint-community/eslint-utils@4.9.0", "", { "dependencies": { "eslint-visitor-keys": "^3.4.3" }, "peerDependencies": { "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" } }, "sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g=="],
+
+ "eslint-plugin-react-hooks/eslint/@eslint/config-array": ["@eslint/config-array@0.21.2", "", { "dependencies": { "@eslint/object-schema": "^2.1.7", "debug": "^4.3.1", "minimatch": "^3.1.5" } }, "sha512-nJl2KGTlrf9GjLimgIru+V/mzgSK0ABCDQRvxw5BjURL7WfH5uoWmizbH7QB6MmnMBd8cIC9uceWnezL1VZWWw=="],
+
+ "eslint-plugin-react-hooks/eslint/@eslint/config-helpers": ["@eslint/config-helpers@0.4.2", "", { "dependencies": { "@eslint/core": "^0.17.0" } }, "sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw=="],
+
+ "eslint-plugin-react-hooks/eslint/@eslint/core": ["@eslint/core@0.17.0", "", { "dependencies": { "@types/json-schema": "^7.0.15" } }, "sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ=="],
+
+ "eslint-plugin-react-hooks/eslint/@eslint/js": ["@eslint/js@9.39.4", "", {}, "sha512-nE7DEIchvtiFTwBw4Lfbu59PG+kCofhjsKaCWzxTpt4lfRjRMqG6uMBzKXuEcyXhOHoUp9riAm7/aWYGhXZ9cw=="],
+
+ "eslint-plugin-react-hooks/eslint/@eslint/plugin-kit": ["@eslint/plugin-kit@0.4.1", "", { "dependencies": { "@eslint/core": "^0.17.0", "levn": "^0.4.1" } }, "sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA=="],
+
+ "eslint-plugin-react-hooks/eslint/chalk": ["chalk@4.1.2", "", { "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } }, "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="],
+
+ "eslint-plugin-react-hooks/eslint/eslint-scope": ["eslint-scope@8.4.0", "", { "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^5.2.0" } }, "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg=="],
+
+ "eslint-plugin-react-hooks/eslint/eslint-visitor-keys": ["eslint-visitor-keys@4.2.1", "", {}, "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ=="],
+
+ "eslint-plugin-react-hooks/eslint/espree": ["espree@10.4.0", "", { "dependencies": { "acorn": "^8.15.0", "acorn-jsx": "^5.3.2", "eslint-visitor-keys": "^4.2.1" } }, "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ=="],
+
+ "eslint-plugin-react-hooks/eslint/esquery": ["esquery@1.6.0", "", { "dependencies": { "estraverse": "^5.1.0" } }, "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg=="],
+
+ "eslint-plugin-react-hooks/eslint/minimatch": ["minimatch@3.1.5", "", { "dependencies": { "brace-expansion": "^1.1.7" } }, "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w=="],
+
+ "eslint-plugin-react/eslint/@eslint-community/eslint-utils": ["@eslint-community/eslint-utils@4.9.0", "", { "dependencies": { "eslint-visitor-keys": "^3.4.3" }, "peerDependencies": { "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" } }, "sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g=="],
+
+ "eslint-plugin-react/eslint/@eslint/config-array": ["@eslint/config-array@0.21.2", "", { "dependencies": { "@eslint/object-schema": "^2.1.7", "debug": "^4.3.1", "minimatch": "^3.1.5" } }, "sha512-nJl2KGTlrf9GjLimgIru+V/mzgSK0ABCDQRvxw5BjURL7WfH5uoWmizbH7QB6MmnMBd8cIC9uceWnezL1VZWWw=="],
+
+ "eslint-plugin-react/eslint/@eslint/config-helpers": ["@eslint/config-helpers@0.4.2", "", { "dependencies": { "@eslint/core": "^0.17.0" } }, "sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw=="],
+
+ "eslint-plugin-react/eslint/@eslint/core": ["@eslint/core@0.17.0", "", { "dependencies": { "@types/json-schema": "^7.0.15" } }, "sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ=="],
+
+ "eslint-plugin-react/eslint/@eslint/js": ["@eslint/js@9.39.4", "", {}, "sha512-nE7DEIchvtiFTwBw4Lfbu59PG+kCofhjsKaCWzxTpt4lfRjRMqG6uMBzKXuEcyXhOHoUp9riAm7/aWYGhXZ9cw=="],
+
+ "eslint-plugin-react/eslint/@eslint/plugin-kit": ["@eslint/plugin-kit@0.4.1", "", { "dependencies": { "@eslint/core": "^0.17.0", "levn": "^0.4.1" } }, "sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA=="],
+
+ "eslint-plugin-react/eslint/chalk": ["chalk@4.1.2", "", { "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } }, "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="],
+
+ "eslint-plugin-react/eslint/eslint-scope": ["eslint-scope@8.4.0", "", { "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^5.2.0" } }, "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg=="],
+
+ "eslint-plugin-react/eslint/eslint-visitor-keys": ["eslint-visitor-keys@4.2.1", "", {}, "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ=="],
+
+ "eslint-plugin-react/eslint/espree": ["espree@10.4.0", "", { "dependencies": { "acorn": "^8.15.0", "acorn-jsx": "^5.3.2", "eslint-visitor-keys": "^4.2.1" } }, "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ=="],
+
+ "eslint-plugin-react/eslint/esquery": ["esquery@1.6.0", "", { "dependencies": { "estraverse": "^5.1.0" } }, "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg=="],
+
+ "eslint-plugin-react/eslint/minimatch": ["minimatch@3.1.5", "", { "dependencies": { "brace-expansion": "^1.1.7" } }, "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w=="],
+
+ "eslint-plugin-react/minimatch/brace-expansion": ["brace-expansion@1.1.12", "", { "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg=="],
+
"expo-dev-launcher/ajv/json-schema-traverse": ["json-schema-traverse@1.0.0", "", {}, "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="],
+ "expo-modules-autolinking/chalk/ansi-styles": ["ansi-styles@4.3.0", "", { "dependencies": { "color-convert": "^2.0.1" } }, "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="],
+
+ "expo-router/@react-navigation/bottom-tabs/@react-navigation/elements": ["@react-navigation/elements@2.9.11", "", { "dependencies": { "color": "^4.2.3", "use-latest-callback": "^0.2.4", "use-sync-external-store": "^1.5.0" }, "peerDependencies": { "@react-native-masked-view/masked-view": ">= 0.2.0", "@react-navigation/native": "^7.1.34", "react": ">= 18.2.0", "react-native": "*", "react-native-safe-area-context": ">= 4.0.0" }, "optionalPeers": ["@react-native-masked-view/masked-view"] }, "sha512-O5KiwaVCcEVuqZgQ77xiBFSl1sha77rNMTFlLWYnom33ZHPDarV3bM9WNyVnMZxU8ZVTi02X3+ZhO0fSn5QYyg=="],
+
+ "expo-router/@react-navigation/native/@react-navigation/core": ["@react-navigation/core@7.16.2", "", { "dependencies": { "@react-navigation/routers": "^7.5.3", "escape-string-regexp": "^4.0.0", "fast-deep-equal": "^3.1.3", "nanoid": "^3.3.11", "query-string": "^7.1.3", "react-is": "^19.1.0", "use-latest-callback": "^0.2.4", "use-sync-external-store": "^1.5.0" }, "peerDependencies": { "react": ">= 18.2.0" } }, "sha512-0dbCC2aTjNW7MvG1fY7zeq6eYvmmaFCEnBDXPuMPJ8uKgfs9lFGXIQFIfBdmcBVX6vHhS+K213VCsuHSIv5jYw=="],
+
"finalhandler/debug/ms": ["ms@2.0.0", "", {}, "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="],
+ "happy-dom/@types/node/undici-types": ["undici-types@6.21.0", "", {}, "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ=="],
+
+ "jest-environment-node/@types/node/undici-types": ["undici-types@6.21.0", "", {}, "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ=="],
+
+ "jest-haste-map/@types/node/undici-types": ["undici-types@6.21.0", "", {}, "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ=="],
+
+ "jest-message-util/chalk/ansi-styles": ["ansi-styles@4.3.0", "", { "dependencies": { "color-convert": "^2.0.1" } }, "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="],
+
+ "jest-mock/@types/node/undici-types": ["undici-types@6.21.0", "", {}, "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ=="],
+
+ "jest-util/@types/node/undici-types": ["undici-types@6.21.0", "", {}, "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ=="],
+
+ "jest-util/chalk/ansi-styles": ["ansi-styles@4.3.0", "", { "dependencies": { "color-convert": "^2.0.1" } }, "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="],
+
+ "jest-validate/chalk/ansi-styles": ["ansi-styles@4.3.0", "", { "dependencies": { "color-convert": "^2.0.1" } }, "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="],
+
+ "jest-worker/@types/node/undici-types": ["undici-types@6.21.0", "", {}, "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ=="],
+
"lighthouse-logger/debug/ms": ["ms@2.0.0", "", {}, "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="],
+ "log-update/slice-ansi/ansi-styles": ["ansi-styles@6.2.3", "", {}, "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg=="],
+
+ "log-update/slice-ansi/is-fullwidth-code-point": ["is-fullwidth-code-point@5.1.0", "", { "dependencies": { "get-east-asian-width": "^1.3.1" } }, "sha512-5XHYaSyiqADb4RnZ1Bdad6cPp8Toise4TzEjcOYDHZkTCbKgiUl7WTUCpNWHuxmDt91wnsZBc9xinNzopv3JMQ=="],
+
+ "log-update/wrap-ansi/ansi-styles": ["ansi-styles@6.2.3", "", {}, "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg=="],
+
"metro-babel-transformer/hermes-parser/hermes-estree": ["hermes-estree@0.32.0", "", {}, "sha512-KWn3BqnlDOl97Xe1Yviur6NbgIZ+IP+UVSpshlZWkq+EtoHg6/cwiDj/osP9PCEgFE15KBm1O55JRwbMEm5ejQ=="],
"metro-cache/https-proxy-agent/agent-base": ["agent-base@7.1.4", "", {}, "sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ=="],
+ "metro-source-map/@babel/traverse/@babel/parser": ["@babel/parser@7.28.5", "", { "dependencies": { "@babel/types": "^7.28.5" }, "bin": "./bin/babel-parser.js" }, "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ=="],
+
+ "metro-transform-plugins/@babel/traverse/@babel/parser": ["@babel/parser@7.28.5", "", { "dependencies": { "@babel/types": "^7.28.5" }, "bin": "./bin/babel-parser.js" }, "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ=="],
+
+ "metro/chalk/ansi-styles": ["ansi-styles@4.3.0", "", { "dependencies": { "color-convert": "^2.0.1" } }, "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="],
+
"metro/hermes-parser/hermes-estree": ["hermes-estree@0.32.0", "", {}, "sha512-KWn3BqnlDOl97Xe1Yviur6NbgIZ+IP+UVSpshlZWkq+EtoHg6/cwiDj/osP9PCEgFE15KBm1O55JRwbMEm5ejQ=="],
"metro/mime-types/mime-db": ["mime-db@1.52.0", "", {}, "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg=="],
+ "node-fetch/whatwg-url/tr46": ["tr46@0.0.3", "", {}, "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw=="],
+
+ "node-fetch/whatwg-url/webidl-conversions": ["webidl-conversions@3.0.1", "", {}, "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ=="],
+
"ora/log-symbols/is-unicode-supported": ["is-unicode-supported@1.3.0", "", {}, "sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ=="],
+ "react-email/esbuild/@esbuild/aix-ppc64": ["@esbuild/aix-ppc64@0.27.3", "", { "os": "aix", "cpu": "ppc64" }, "sha512-9fJMTNFTWZMh5qwrBItuziu834eOCUcEqymSH7pY+zoMVEZg3gcPuBNxH1EvfVYe9h0x/Ptw8KBzv7qxb7l8dg=="],
+
+ "react-email/esbuild/@esbuild/android-arm": ["@esbuild/android-arm@0.27.3", "", { "os": "android", "cpu": "arm" }, "sha512-i5D1hPY7GIQmXlXhs2w8AWHhenb00+GxjxRncS2ZM7YNVGNfaMxgzSGuO8o8SJzRc/oZwU2bcScvVERk03QhzA=="],
+
+ "react-email/esbuild/@esbuild/android-arm64": ["@esbuild/android-arm64@0.27.3", "", { "os": "android", "cpu": "arm64" }, "sha512-YdghPYUmj/FX2SYKJ0OZxf+iaKgMsKHVPF1MAq/P8WirnSpCStzKJFjOjzsW0QQ7oIAiccHdcqjbHmJxRb/dmg=="],
+
+ "react-email/esbuild/@esbuild/android-x64": ["@esbuild/android-x64@0.27.3", "", { "os": "android", "cpu": "x64" }, "sha512-IN/0BNTkHtk8lkOM8JWAYFg4ORxBkZQf9zXiEOfERX/CzxW3Vg1ewAhU7QSWQpVIzTW+b8Xy+lGzdYXV6UZObQ=="],
+
+ "react-email/esbuild/@esbuild/darwin-arm64": ["@esbuild/darwin-arm64@0.27.3", "", { "os": "darwin", "cpu": "arm64" }, "sha512-Re491k7ByTVRy0t3EKWajdLIr0gz2kKKfzafkth4Q8A5n1xTHrkqZgLLjFEHVD+AXdUGgQMq+Godfq45mGpCKg=="],
+
+ "react-email/esbuild/@esbuild/darwin-x64": ["@esbuild/darwin-x64@0.27.3", "", { "os": "darwin", "cpu": "x64" }, "sha512-vHk/hA7/1AckjGzRqi6wbo+jaShzRowYip6rt6q7VYEDX4LEy1pZfDpdxCBnGtl+A5zq8iXDcyuxwtv3hNtHFg=="],
+
+ "react-email/esbuild/@esbuild/freebsd-arm64": ["@esbuild/freebsd-arm64@0.27.3", "", { "os": "freebsd", "cpu": "arm64" }, "sha512-ipTYM2fjt3kQAYOvo6vcxJx3nBYAzPjgTCk7QEgZG8AUO3ydUhvelmhrbOheMnGOlaSFUoHXB6un+A7q4ygY9w=="],
+
+ "react-email/esbuild/@esbuild/freebsd-x64": ["@esbuild/freebsd-x64@0.27.3", "", { "os": "freebsd", "cpu": "x64" }, "sha512-dDk0X87T7mI6U3K9VjWtHOXqwAMJBNN2r7bejDsc+j03SEjtD9HrOl8gVFByeM0aJksoUuUVU9TBaZa2rgj0oA=="],
+
+ "react-email/esbuild/@esbuild/linux-arm": ["@esbuild/linux-arm@0.27.3", "", { "os": "linux", "cpu": "arm" }, "sha512-s6nPv2QkSupJwLYyfS+gwdirm0ukyTFNl3KTgZEAiJDd+iHZcbTPPcWCcRYH+WlNbwChgH2QkE9NSlNrMT8Gfw=="],
+
+ "react-email/esbuild/@esbuild/linux-arm64": ["@esbuild/linux-arm64@0.27.3", "", { "os": "linux", "cpu": "arm64" }, "sha512-sZOuFz/xWnZ4KH3YfFrKCf1WyPZHakVzTiqji3WDc0BCl2kBwiJLCXpzLzUBLgmp4veFZdvN5ChW4Eq/8Fc2Fg=="],
+
+ "react-email/esbuild/@esbuild/linux-ia32": ["@esbuild/linux-ia32@0.27.3", "", { "os": "linux", "cpu": "ia32" }, "sha512-yGlQYjdxtLdh0a3jHjuwOrxQjOZYD/C9PfdbgJJF3TIZWnm/tMd/RcNiLngiu4iwcBAOezdnSLAwQDPqTmtTYg=="],
+
+ "react-email/esbuild/@esbuild/linux-loong64": ["@esbuild/linux-loong64@0.27.3", "", { "os": "linux", "cpu": "none" }, "sha512-WO60Sn8ly3gtzhyjATDgieJNet/KqsDlX5nRC5Y3oTFcS1l0KWba+SEa9Ja1GfDqSF1z6hif/SkpQJbL63cgOA=="],
+
+ "react-email/esbuild/@esbuild/linux-mips64el": ["@esbuild/linux-mips64el@0.27.3", "", { "os": "linux", "cpu": "none" }, "sha512-APsymYA6sGcZ4pD6k+UxbDjOFSvPWyZhjaiPyl/f79xKxwTnrn5QUnXR5prvetuaSMsb4jgeHewIDCIWljrSxw=="],
+
+ "react-email/esbuild/@esbuild/linux-ppc64": ["@esbuild/linux-ppc64@0.27.3", "", { "os": "linux", "cpu": "ppc64" }, "sha512-eizBnTeBefojtDb9nSh4vvVQ3V9Qf9Df01PfawPcRzJH4gFSgrObw+LveUyDoKU3kxi5+9RJTCWlj4FjYXVPEA=="],
+
+ "react-email/esbuild/@esbuild/linux-riscv64": ["@esbuild/linux-riscv64@0.27.3", "", { "os": "linux", "cpu": "none" }, "sha512-3Emwh0r5wmfm3ssTWRQSyVhbOHvqegUDRd0WhmXKX2mkHJe1SFCMJhagUleMq+Uci34wLSipf8Lagt4LlpRFWQ=="],
+
+ "react-email/esbuild/@esbuild/linux-s390x": ["@esbuild/linux-s390x@0.27.3", "", { "os": "linux", "cpu": "s390x" }, "sha512-pBHUx9LzXWBc7MFIEEL0yD/ZVtNgLytvx60gES28GcWMqil8ElCYR4kvbV2BDqsHOvVDRrOxGySBM9Fcv744hw=="],
+
+ "react-email/esbuild/@esbuild/linux-x64": ["@esbuild/linux-x64@0.27.3", "", { "os": "linux", "cpu": "x64" }, "sha512-Czi8yzXUWIQYAtL/2y6vogER8pvcsOsk5cpwL4Gk5nJqH5UZiVByIY8Eorm5R13gq+DQKYg0+JyQoytLQas4dA=="],
+
+ "react-email/esbuild/@esbuild/netbsd-arm64": ["@esbuild/netbsd-arm64@0.27.3", "", { "os": "none", "cpu": "arm64" }, "sha512-sDpk0RgmTCR/5HguIZa9n9u+HVKf40fbEUt+iTzSnCaGvY9kFP0YKBWZtJaraonFnqef5SlJ8/TiPAxzyS+UoA=="],
+
+ "react-email/esbuild/@esbuild/netbsd-x64": ["@esbuild/netbsd-x64@0.27.3", "", { "os": "none", "cpu": "x64" }, "sha512-P14lFKJl/DdaE00LItAukUdZO5iqNH7+PjoBm+fLQjtxfcfFE20Xf5CrLsmZdq5LFFZzb5JMZ9grUwvtVYzjiA=="],
+
+ "react-email/esbuild/@esbuild/openbsd-arm64": ["@esbuild/openbsd-arm64@0.27.3", "", { "os": "openbsd", "cpu": "arm64" }, "sha512-AIcMP77AvirGbRl/UZFTq5hjXK+2wC7qFRGoHSDrZ5v5b8DK/GYpXW3CPRL53NkvDqb9D+alBiC/dV0Fb7eJcw=="],
+
+ "react-email/esbuild/@esbuild/openbsd-x64": ["@esbuild/openbsd-x64@0.27.3", "", { "os": "openbsd", "cpu": "x64" }, "sha512-DnW2sRrBzA+YnE70LKqnM3P+z8vehfJWHXECbwBmH/CU51z6FiqTQTHFenPlHmo3a8UgpLyH3PT+87OViOh1AQ=="],
+
+ "react-email/esbuild/@esbuild/openharmony-arm64": ["@esbuild/openharmony-arm64@0.27.3", "", { "os": "none", "cpu": "arm64" }, "sha512-NinAEgr/etERPTsZJ7aEZQvvg/A6IsZG/LgZy+81wON2huV7SrK3e63dU0XhyZP4RKGyTm7aOgmQk0bGp0fy2g=="],
+
+ "react-email/esbuild/@esbuild/sunos-x64": ["@esbuild/sunos-x64@0.27.3", "", { "os": "sunos", "cpu": "x64" }, "sha512-PanZ+nEz+eWoBJ8/f8HKxTTD172SKwdXebZ0ndd953gt1HRBbhMsaNqjTyYLGLPdoWHy4zLU7bDVJztF5f3BHA=="],
+
+ "react-email/esbuild/@esbuild/win32-arm64": ["@esbuild/win32-arm64@0.27.3", "", { "os": "win32", "cpu": "arm64" }, "sha512-B2t59lWWYrbRDw/tjiWOuzSsFh1Y/E95ofKz7rIVYSQkUYBjfSgf6oeYPNWHToFRr2zx52JKApIcAS/D5TUBnA=="],
+
+ "react-email/esbuild/@esbuild/win32-ia32": ["@esbuild/win32-ia32@0.27.3", "", { "os": "win32", "cpu": "ia32" }, "sha512-QLKSFeXNS8+tHW7tZpMtjlNb7HKau0QDpwm49u0vUp9y1WOF+PEzkU84y9GqYaAVW8aH8f3GcBck26jh54cX4Q=="],
+
+ "react-email/esbuild/@esbuild/win32-x64": ["@esbuild/win32-x64@0.27.3", "", { "os": "win32", "cpu": "x64" }, "sha512-4uJGhsxuptu3OcpVAzli+/gWusVGwZZHTlS63hh++ehExkVT8SgiEf7/uC/PclrPPkLhZqGgCTjd0VWLo6xMqA=="],
+
"react-native/glob/minimatch": ["minimatch@3.1.2", "", { "dependencies": { "brace-expansion": "^1.1.7" } }, "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw=="],
"rimraf/glob/minimatch": ["minimatch@3.1.2", "", { "dependencies": { "brace-expansion": "^1.1.7" } }, "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw=="],
+ "sass/chokidar/glob-parent": ["glob-parent@5.1.2", "", { "dependencies": { "is-glob": "^4.0.1" } }, "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow=="],
+
+ "sass/chokidar/readdirp": ["readdirp@3.6.0", "", { "dependencies": { "picomatch": "^2.2.1" } }, "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA=="],
+
"schema-utils/ajv/json-schema-traverse": ["json-schema-traverse@1.0.0", "", {}, "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="],
"send/debug/ms": ["ms@2.0.0", "", {}, "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="],
@@ -3821,17 +4662,99 @@
"serve-static/send/encodeurl": ["encodeurl@1.0.2", "", {}, "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w=="],
+ "terminal-link/ansi-escapes/type-fest": ["type-fest@0.21.3", "", {}, "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w=="],
+
"terser-webpack-plugin/jest-worker/@types/node": ["@types/node@22.18.13", "", { "dependencies": { "undici-types": "~6.21.0" } }, "sha512-Bo45YKIjnmFtv6I1TuC8AaHBbqXtIo+Om5fE4QiU1Tj8QR/qt+8O3BAtOimG5IFmwaWiPmB3Mv3jtYzBA4Us2A=="],
"terser-webpack-plugin/jest-worker/supports-color": ["supports-color@8.1.1", "", { "dependencies": { "has-flag": "^4.0.0" } }, "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q=="],
+ "test-exclude/minimatch/brace-expansion": ["brace-expansion@1.1.12", "", { "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg=="],
+
+ "tsx/esbuild/@esbuild/aix-ppc64": ["@esbuild/aix-ppc64@0.27.0", "", { "os": "aix", "cpu": "ppc64" }, "sha512-KuZrd2hRjz01y5JK9mEBSD3Vj3mbCvemhT466rSuJYeE/hjuBrHfjjcjMdTm/sz7au+++sdbJZJmuBwQLuw68A=="],
+
+ "tsx/esbuild/@esbuild/android-arm": ["@esbuild/android-arm@0.27.0", "", { "os": "android", "cpu": "arm" }, "sha512-j67aezrPNYWJEOHUNLPj9maeJte7uSMM6gMoxfPC9hOg8N02JuQi/T7ewumf4tNvJadFkvLZMlAq73b9uwdMyQ=="],
+
+ "tsx/esbuild/@esbuild/android-arm64": ["@esbuild/android-arm64@0.27.0", "", { "os": "android", "cpu": "arm64" }, "sha512-CC3vt4+1xZrs97/PKDkl0yN7w8edvU2vZvAFGD16n9F0Cvniy5qvzRXjfO1l94efczkkQE6g1x0i73Qf5uthOQ=="],
+
+ "tsx/esbuild/@esbuild/android-x64": ["@esbuild/android-x64@0.27.0", "", { "os": "android", "cpu": "x64" }, "sha512-wurMkF1nmQajBO1+0CJmcN17U4BP6GqNSROP8t0X/Jiw2ltYGLHpEksp9MpoBqkrFR3kv2/te6Sha26k3+yZ9Q=="],
+
+ "tsx/esbuild/@esbuild/darwin-arm64": ["@esbuild/darwin-arm64@0.27.0", "", { "os": "darwin", "cpu": "arm64" }, "sha512-uJOQKYCcHhg07DL7i8MzjvS2LaP7W7Pn/7uA0B5S1EnqAirJtbyw4yC5jQ5qcFjHK9l6o/MX9QisBg12kNkdHg=="],
+
+ "tsx/esbuild/@esbuild/darwin-x64": ["@esbuild/darwin-x64@0.27.0", "", { "os": "darwin", "cpu": "x64" }, "sha512-8mG6arH3yB/4ZXiEnXof5MK72dE6zM9cDvUcPtxhUZsDjESl9JipZYW60C3JGreKCEP+p8P/72r69m4AZGJd5g=="],
+
+ "tsx/esbuild/@esbuild/freebsd-arm64": ["@esbuild/freebsd-arm64@0.27.0", "", { "os": "freebsd", "cpu": "arm64" }, "sha512-9FHtyO988CwNMMOE3YIeci+UV+x5Zy8fI2qHNpsEtSF83YPBmE8UWmfYAQg6Ux7Gsmd4FejZqnEUZCMGaNQHQw=="],
+
+ "tsx/esbuild/@esbuild/freebsd-x64": ["@esbuild/freebsd-x64@0.27.0", "", { "os": "freebsd", "cpu": "x64" }, "sha512-zCMeMXI4HS/tXvJz8vWGexpZj2YVtRAihHLk1imZj4efx1BQzN76YFeKqlDr3bUWI26wHwLWPd3rwh6pe4EV7g=="],
+
+ "tsx/esbuild/@esbuild/linux-arm": ["@esbuild/linux-arm@0.27.0", "", { "os": "linux", "cpu": "arm" }, "sha512-t76XLQDpxgmq2cNXKTVEB7O7YMb42atj2Re2Haf45HkaUpjM2J0UuJZDuaGbPbamzZ7bawyGFUkodL+zcE+jvQ=="],
+
+ "tsx/esbuild/@esbuild/linux-arm64": ["@esbuild/linux-arm64@0.27.0", "", { "os": "linux", "cpu": "arm64" }, "sha512-AS18v0V+vZiLJyi/4LphvBE+OIX682Pu7ZYNsdUHyUKSoRwdnOsMf6FDekwoAFKej14WAkOef3zAORJgAtXnlQ=="],
+
+ "tsx/esbuild/@esbuild/linux-ia32": ["@esbuild/linux-ia32@0.27.0", "", { "os": "linux", "cpu": "ia32" }, "sha512-Mz1jxqm/kfgKkc/KLHC5qIujMvnnarD9ra1cEcrs7qshTUSksPihGrWHVG5+osAIQ68577Zpww7SGapmzSt4Nw=="],
+
+ "tsx/esbuild/@esbuild/linux-loong64": ["@esbuild/linux-loong64@0.27.0", "", { "os": "linux", "cpu": "none" }, "sha512-QbEREjdJeIreIAbdG2hLU1yXm1uu+LTdzoq1KCo4G4pFOLlvIspBm36QrQOar9LFduavoWX2msNFAAAY9j4BDg=="],
+
+ "tsx/esbuild/@esbuild/linux-mips64el": ["@esbuild/linux-mips64el@0.27.0", "", { "os": "linux", "cpu": "none" }, "sha512-sJz3zRNe4tO2wxvDpH/HYJilb6+2YJxo/ZNbVdtFiKDufzWq4JmKAiHy9iGoLjAV7r/W32VgaHGkk35cUXlNOg=="],
+
+ "tsx/esbuild/@esbuild/linux-ppc64": ["@esbuild/linux-ppc64@0.27.0", "", { "os": "linux", "cpu": "ppc64" }, "sha512-z9N10FBD0DCS2dmSABDBb5TLAyF1/ydVb+N4pi88T45efQ/w4ohr/F/QYCkxDPnkhkp6AIpIcQKQ8F0ANoA2JA=="],
+
+ "tsx/esbuild/@esbuild/linux-riscv64": ["@esbuild/linux-riscv64@0.27.0", "", { "os": "linux", "cpu": "none" }, "sha512-pQdyAIZ0BWIC5GyvVFn5awDiO14TkT/19FTmFcPdDec94KJ1uZcmFs21Fo8auMXzD4Tt+diXu1LW1gHus9fhFQ=="],
+
+ "tsx/esbuild/@esbuild/linux-s390x": ["@esbuild/linux-s390x@0.27.0", "", { "os": "linux", "cpu": "s390x" }, "sha512-hPlRWR4eIDDEci953RI1BLZitgi5uqcsjKMxwYfmi4LcwyWo2IcRP+lThVnKjNtk90pLS8nKdroXYOqW+QQH+w=="],
+
+ "tsx/esbuild/@esbuild/linux-x64": ["@esbuild/linux-x64@0.27.0", "", { "os": "linux", "cpu": "x64" }, "sha512-1hBWx4OUJE2cab++aVZ7pObD6s+DK4mPGpemtnAORBvb5l/g5xFGk0vc0PjSkrDs0XaXj9yyob3d14XqvnQ4gw=="],
+
+ "tsx/esbuild/@esbuild/netbsd-arm64": ["@esbuild/netbsd-arm64@0.27.0", "", { "os": "none", "cpu": "arm64" }, "sha512-6m0sfQfxfQfy1qRuecMkJlf1cIzTOgyaeXaiVaaki8/v+WB+U4hc6ik15ZW6TAllRlg/WuQXxWj1jx6C+dfy3w=="],
+
+ "tsx/esbuild/@esbuild/netbsd-x64": ["@esbuild/netbsd-x64@0.27.0", "", { "os": "none", "cpu": "x64" }, "sha512-xbbOdfn06FtcJ9d0ShxxvSn2iUsGd/lgPIO2V3VZIPDbEaIj1/3nBBe1AwuEZKXVXkMmpr6LUAgMkLD/4D2PPA=="],
+
+ "tsx/esbuild/@esbuild/openbsd-arm64": ["@esbuild/openbsd-arm64@0.27.0", "", { "os": "openbsd", "cpu": "arm64" }, "sha512-fWgqR8uNbCQ/GGv0yhzttj6sU/9Z5/Sv/VGU3F5OuXK6J6SlriONKrQ7tNlwBrJZXRYk5jUhuWvF7GYzGguBZQ=="],
+
+ "tsx/esbuild/@esbuild/openbsd-x64": ["@esbuild/openbsd-x64@0.27.0", "", { "os": "openbsd", "cpu": "x64" }, "sha512-aCwlRdSNMNxkGGqQajMUza6uXzR/U0dIl1QmLjPtRbLOx3Gy3otfFu/VjATy4yQzo9yFDGTxYDo1FfAD9oRD2A=="],
+
+ "tsx/esbuild/@esbuild/openharmony-arm64": ["@esbuild/openharmony-arm64@0.27.0", "", { "os": "none", "cpu": "arm64" }, "sha512-nyvsBccxNAsNYz2jVFYwEGuRRomqZ149A39SHWk4hV0jWxKM0hjBPm3AmdxcbHiFLbBSwG6SbpIcUbXjgyECfA=="],
+
+ "tsx/esbuild/@esbuild/sunos-x64": ["@esbuild/sunos-x64@0.27.0", "", { "os": "sunos", "cpu": "x64" }, "sha512-Q1KY1iJafM+UX6CFEL+F4HRTgygmEW568YMqDA5UV97AuZSm21b7SXIrRJDwXWPzr8MGr75fUZPV67FdtMHlHA=="],
+
+ "tsx/esbuild/@esbuild/win32-arm64": ["@esbuild/win32-arm64@0.27.0", "", { "os": "win32", "cpu": "arm64" }, "sha512-W1eyGNi6d+8kOmZIwi/EDjrL9nxQIQ0MiGqe/AWc6+IaHloxHSGoeRgDRKHFISThLmsewZ5nHFvGFWdBYlgKPg=="],
+
+ "tsx/esbuild/@esbuild/win32-ia32": ["@esbuild/win32-ia32@0.27.0", "", { "os": "win32", "cpu": "ia32" }, "sha512-30z1aKL9h22kQhilnYkORFYt+3wp7yZsHWus+wSKAJR8JtdfI76LJ4SBdMsCopTR3z/ORqVu5L1vtnHZWVj4cQ=="],
+
+ "tsx/esbuild/@esbuild/win32-x64": ["@esbuild/win32-x64@0.27.0", "", { "os": "win32", "cpu": "x64" }, "sha512-aIitBcjQeyOhMTImhLZmtxfdOcuNRpwlPNmlFKPcHQYPhEssw75Cl1TSXJXpMkzaua9FUetx/4OQKq7eJul5Cg=="],
+
+ "typescript-eslint/@typescript-eslint/utils/@typescript-eslint/scope-manager": ["@typescript-eslint/scope-manager@8.57.2", "", { "dependencies": { "@typescript-eslint/types": "8.57.2", "@typescript-eslint/visitor-keys": "8.57.2" } }, "sha512-snZKH+W4WbWkrBqj4gUNRIGb/jipDW3qMqVJ4C9rzdFc+wLwruxk+2a5D+uoFcKPAqyqEnSb4l2ULuZf95eSkw=="],
+
+ "typescript-eslint/@typescript-eslint/utils/@typescript-eslint/types": ["@typescript-eslint/types@8.57.2", "", {}, "sha512-/iZM6FnM4tnx9csuTxspMW4BOSegshwX5oBDznJ7S4WggL7Vczz5d2W11ecc4vRrQMQHXRSxzrCsyG5EsPPTbA=="],
+
+ "usesend-js/@react-email/render/prettier": ["prettier@3.6.2", "", { "bin": { "prettier": "bin/prettier.cjs" } }, "sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ=="],
+
+ "vite/lightningcss/lightningcss-android-arm64": ["lightningcss-android-arm64@1.32.0", "", { "os": "android", "cpu": "arm64" }, "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg=="],
+
+ "vite/lightningcss/lightningcss-darwin-arm64": ["lightningcss-darwin-arm64@1.32.0", "", { "os": "darwin", "cpu": "arm64" }, "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ=="],
+
+ "vite/lightningcss/lightningcss-darwin-x64": ["lightningcss-darwin-x64@1.32.0", "", { "os": "darwin", "cpu": "x64" }, "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w=="],
+
+ "vite/lightningcss/lightningcss-freebsd-x64": ["lightningcss-freebsd-x64@1.32.0", "", { "os": "freebsd", "cpu": "x64" }, "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig=="],
+
+ "vite/lightningcss/lightningcss-linux-arm-gnueabihf": ["lightningcss-linux-arm-gnueabihf@1.32.0", "", { "os": "linux", "cpu": "arm" }, "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw=="],
+
+ "vite/lightningcss/lightningcss-linux-arm64-gnu": ["lightningcss-linux-arm64-gnu@1.32.0", "", { "os": "linux", "cpu": "arm64" }, "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ=="],
+
+ "vite/lightningcss/lightningcss-linux-arm64-musl": ["lightningcss-linux-arm64-musl@1.32.0", "", { "os": "linux", "cpu": "arm64" }, "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg=="],
+
+ "vite/lightningcss/lightningcss-linux-x64-gnu": ["lightningcss-linux-x64-gnu@1.32.0", "", { "os": "linux", "cpu": "x64" }, "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA=="],
+
+ "vite/lightningcss/lightningcss-linux-x64-musl": ["lightningcss-linux-x64-musl@1.32.0", "", { "os": "linux", "cpu": "x64" }, "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg=="],
+
+ "vite/lightningcss/lightningcss-win32-arm64-msvc": ["lightningcss-win32-arm64-msvc@1.32.0", "", { "os": "win32", "cpu": "arm64" }, "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw=="],
+
+ "vite/lightningcss/lightningcss-win32-x64-msvc": ["lightningcss-win32-x64-msvc@1.32.0", "", { "os": "win32", "cpu": "x64" }, "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q=="],
+
"webpack/eslint-scope/estraverse": ["estraverse@4.3.0", "", {}, "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw=="],
"webpack/mime-types/mime-db": ["mime-db@1.52.0", "", {}, "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg=="],
- "wrap-ansi-cjs/string-width/emoji-regex": ["emoji-regex@8.0.0", "", {}, "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="],
-
- "wrap-ansi/string-width/emoji-regex": ["emoji-regex@8.0.0", "", {}, "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="],
+ "wrap-ansi/string-width/get-east-asian-width": ["get-east-asian-width@1.6.0", "", {}, "sha512-QRbvDIbx6YklUe6RxeTeleMR0yv3cYH6PsPZHcnVn7xv7zO1BHN8r0XETu8n6Ye3Q+ahtSarc3WgtNWmehIBfA=="],
"yargs/string-width/emoji-regex": ["emoji-regex@8.0.0", "", {}, "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="],
@@ -3841,7 +4764,9 @@
"@babel/highlight/chalk/supports-color/has-flag": ["has-flag@3.0.0", "", {}, "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw=="],
- "@expo/cli/glob/minimatch/brace-expansion": ["brace-expansion@5.0.4", "", { "dependencies": { "balanced-match": "^4.0.2" } }, "sha512-h+DEnpVvxmfVefa4jFbCf5HdH5YMDXRsmKflpf1pILZWRFlTbJpxeU55nJl4Smt5HQaGzg1o6RHFPJaOqnmBDg=="],
+ "@eslint/eslintrc/minimatch/brace-expansion/balanced-match": ["balanced-match@1.0.2", "", {}, "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="],
+
+ "@expo/cli/minimatch/brace-expansion/balanced-match": ["balanced-match@1.0.2", "", {}, "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="],
"@expo/cli/ora/chalk/ansi-styles": ["ansi-styles@3.2.1", "", { "dependencies": { "color-convert": "^1.9.0" } }, "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA=="],
@@ -3853,13 +4778,11 @@
"@expo/cli/ora/strip-ansi/ansi-regex": ["ansi-regex@4.1.1", "", {}, "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g=="],
- "@expo/config-plugins/glob/minimatch/brace-expansion": ["brace-expansion@5.0.4", "", { "dependencies": { "balanced-match": "^4.0.2" } }, "sha512-h+DEnpVvxmfVefa4jFbCf5HdH5YMDXRsmKflpf1pILZWRFlTbJpxeU55nJl4Smt5HQaGzg1o6RHFPJaOqnmBDg=="],
+ "@expo/cli/wrap-ansi/string-width/emoji-regex": ["emoji-regex@8.0.0", "", {}, "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="],
- "@expo/config/glob/minimatch/brace-expansion": ["brace-expansion@5.0.4", "", { "dependencies": { "balanced-match": "^4.0.2" } }, "sha512-h+DEnpVvxmfVefa4jFbCf5HdH5YMDXRsmKflpf1pILZWRFlTbJpxeU55nJl4Smt5HQaGzg1o6RHFPJaOqnmBDg=="],
+ "@expo/fingerprint/minimatch/brace-expansion/balanced-match": ["balanced-match@1.0.2", "", {}, "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="],
- "@expo/fingerprint/glob/minimatch/brace-expansion": ["brace-expansion@5.0.4", "", { "dependencies": { "balanced-match": "^4.0.2" } }, "sha512-h+DEnpVvxmfVefa4jFbCf5HdH5YMDXRsmKflpf1pILZWRFlTbJpxeU55nJl4Smt5HQaGzg1o6RHFPJaOqnmBDg=="],
-
- "@expo/metro-config/glob/minimatch/brace-expansion": ["brace-expansion@5.0.4", "", { "dependencies": { "balanced-match": "^4.0.2" } }, "sha512-h+DEnpVvxmfVefa4jFbCf5HdH5YMDXRsmKflpf1pILZWRFlTbJpxeU55nJl4Smt5HQaGzg1o6RHFPJaOqnmBDg=="],
+ "@expo/metro-config/minimatch/brace-expansion/balanced-match": ["balanced-match@1.0.2", "", {}, "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="],
"@expo/package-manager/ora/chalk/ansi-styles": ["ansi-styles@3.2.1", "", { "dependencies": { "color-convert": "^1.9.0" } }, "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA=="],
@@ -3871,12 +4794,14 @@
"@expo/package-manager/ora/strip-ansi/ansi-regex": ["ansi-regex@4.1.1", "", {}, "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g=="],
- "@fastify/otel/minimatch/brace-expansion/balanced-match": ["balanced-match@4.0.4", "", {}, "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA=="],
+ "@fastify/otel/@opentelemetry/instrumentation/import-in-the-middle/acorn": ["acorn@8.15.0", "", { "bin": { "acorn": "bin/acorn" } }, "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg=="],
"@inquirer/core/wrap-ansi/string-width/emoji-regex": ["emoji-regex@8.0.0", "", {}, "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="],
"@istanbuljs/load-nyc-config/find-up/locate-path/p-locate": ["p-locate@4.1.0", "", { "dependencies": { "p-limit": "^2.2.0" } }, "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A=="],
+ "@prisma/instrumentation/@opentelemetry/instrumentation/import-in-the-middle/acorn": ["acorn@8.15.0", "", { "bin": { "acorn": "bin/acorn" } }, "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg=="],
+
"@radix-ui/react-popper/@floating-ui/react-dom/@floating-ui/dom/@floating-ui/core": ["@floating-ui/core@1.7.3", "", { "dependencies": { "@floating-ui/utils": "^0.2.10" } }, "sha512-sGnvb5dmrJaKEZ+LDIpguvdX3bDlEllmv4/ClQ9awcmCZrlx5jQyyMWFM5kBI+EyNOCDDiKk8il0zeuX3Zlg/w=="],
"@radix-ui/react-popper/@floating-ui/react-dom/@floating-ui/dom/@floating-ui/utils": ["@floating-ui/utils@0.2.10", "", {}, "sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ=="],
@@ -3885,8 +4810,12 @@
"@react-native/babel-plugin-codegen/@react-native/codegen/hermes-parser/hermes-estree": ["hermes-estree@0.29.1", "", {}, "sha512-jl+x31n4/w+wEqm0I2r4CMimukLbLQEYpisys5oCre611CI5fc9TxhqkBBCJ1edDG4Kza0f7CgNz8xVMLZQOmQ=="],
+ "@react-native/codegen/glob/minimatch/brace-expansion": ["brace-expansion@1.1.12", "", { "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg=="],
+
"@react-native/community-cli-plugin/metro-config/metro-cache/https-proxy-agent": ["https-proxy-agent@7.0.6", "", { "dependencies": { "agent-base": "^7.1.2", "debug": "4" } }, "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw=="],
+ "@react-native/community-cli-plugin/metro/chalk/ansi-styles": ["ansi-styles@4.3.0", "", { "dependencies": { "color-convert": "^2.0.1" } }, "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="],
+
"@react-native/community-cli-plugin/metro/hermes-parser/hermes-estree": ["hermes-estree@0.32.0", "", {}, "sha512-KWn3BqnlDOl97Xe1Yviur6NbgIZ+IP+UVSpshlZWkq+EtoHg6/cwiDj/osP9PCEgFE15KBm1O55JRwbMEm5ejQ=="],
"@react-native/community-cli-plugin/metro/metro-cache/https-proxy-agent": ["https-proxy-agent@7.0.6", "", { "dependencies": { "agent-base": "^7.1.2", "debug": "4" } }, "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw=="],
@@ -3897,19 +4826,85 @@
"@react-native/community-cli-plugin/metro/mime-types/mime-db": ["mime-db@1.52.0", "", {}, "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg=="],
- "@sentry/bundler-plugin-core/glob/minimatch/brace-expansion": ["brace-expansion@5.0.4", "", { "dependencies": { "balanced-match": "^4.0.2" } }, "sha512-h+DEnpVvxmfVefa4jFbCf5HdH5YMDXRsmKflpf1pILZWRFlTbJpxeU55nJl4Smt5HQaGzg1o6RHFPJaOqnmBDg=="],
+ "@sentry/nextjs/@sentry/react/@sentry/browser/@sentry-internal/feedback": ["@sentry-internal/feedback@10.46.0", "", { "dependencies": { "@sentry/core": "10.46.0" } }, "sha512-c4pI/z9nZCQXe9GYEw/hE/YTY9AxGBp8/wgKI+T8zylrN35SGHaXv63szzE1WbI8lacBY8lBF7rstq9bQVCaHw=="],
- "@sentry/nextjs/@sentry/react/@sentry/browser/@sentry-internal/feedback": ["@sentry-internal/feedback@10.45.0", "", { "dependencies": { "@sentry/core": "10.45.0" } }, "sha512-vCSurazFVq7RUeYiM5X326jA5gOVrWYD6lYX2fbjBOMcyCEhDnveNxMT62zKkZDyNT/jyD194nz/cjntBUkyWA=="],
+ "@sentry/nextjs/@sentry/react/@sentry/browser/@sentry-internal/replay": ["@sentry-internal/replay@10.46.0", "", { "dependencies": { "@sentry-internal/browser-utils": "10.46.0", "@sentry/core": "10.46.0" } }, "sha512-JBsWeXG6bRbxBFK8GzWymWGOB9QE7Kl57BeF3jzgdHTuHSWZ2mRnAmb1K05T4LU+gVygk6yW0KmdC8Py9Qzg9A=="],
- "@sentry/nextjs/@sentry/react/@sentry/browser/@sentry-internal/replay": ["@sentry-internal/replay@10.45.0", "", { "dependencies": { "@sentry-internal/browser-utils": "10.45.0", "@sentry/core": "10.45.0" } }, "sha512-vjosRoGA1bzhVAEO1oce+CsRdd70quzBeo7WvYqpcUnoLe/Rv8qpOMqWX3j26z7XfFHMExWQNQeLxmtYOArvlw=="],
+ "@sentry/nextjs/@sentry/react/@sentry/browser/@sentry-internal/replay-canvas": ["@sentry-internal/replay-canvas@10.46.0", "", { "dependencies": { "@sentry-internal/replay": "10.46.0", "@sentry/core": "10.46.0" } }, "sha512-ub314MWUsekVCuoH0/HJbbimlI24SkV745UW2pj9xRbxOAEf1wjkmIzxKrMDbTgJGuEunug02XZVdJFJUzOcDw=="],
- "@sentry/nextjs/@sentry/react/@sentry/browser/@sentry-internal/replay-canvas": ["@sentry-internal/replay-canvas@10.45.0", "", { "dependencies": { "@sentry-internal/replay": "10.45.0", "@sentry/core": "10.45.0" } }, "sha512-nvq/AocdZTuD7y0KSiWi3gVaY0s5HOFy86mC/v1kDZmT/jsBAzN5LDkk/f1FvsWma1peqQmpUqxvhC+YIW294Q=="],
+ "@typescript-eslint/utils/@typescript-eslint/typescript-estree/@typescript-eslint/visitor-keys/eslint-visitor-keys": ["eslint-visitor-keys@4.2.1", "", {}, "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ=="],
+
+ "@typescript-eslint/utils/@typescript-eslint/typescript-estree/fast-glob/glob-parent": ["glob-parent@5.1.2", "", { "dependencies": { "is-glob": "^4.0.1" } }, "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow=="],
+
+ "@typescript-eslint/utils/@typescript-eslint/typescript-estree/minimatch/brace-expansion": ["brace-expansion@2.0.2", "", { "dependencies": { "balanced-match": "^1.0.0" } }, "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ=="],
+
+ "@typescript-eslint/utils/eslint/@eslint/config-array/@eslint/object-schema": ["@eslint/object-schema@2.1.7", "", {}, "sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA=="],
+
+ "@typescript-eslint/utils/eslint/chalk/ansi-styles": ["ansi-styles@4.3.0", "", { "dependencies": { "color-convert": "^2.0.1" } }, "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="],
+
+ "@typescript-eslint/utils/eslint/espree/acorn": ["acorn@8.15.0", "", { "bin": { "acorn": "bin/acorn" } }, "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg=="],
+
+ "@typescript-eslint/utils/eslint/minimatch/brace-expansion": ["brace-expansion@1.1.12", "", { "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg=="],
+
+ "eslint-plugin-import/eslint/@eslint-community/eslint-utils/eslint-visitor-keys": ["eslint-visitor-keys@3.4.3", "", {}, "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag=="],
+
+ "eslint-plugin-import/eslint/@eslint/config-array/@eslint/object-schema": ["@eslint/object-schema@2.1.7", "", {}, "sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA=="],
+
+ "eslint-plugin-import/eslint/chalk/ansi-styles": ["ansi-styles@4.3.0", "", { "dependencies": { "color-convert": "^2.0.1" } }, "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="],
+
+ "eslint-plugin-import/eslint/espree/acorn": ["acorn@8.15.0", "", { "bin": { "acorn": "bin/acorn" } }, "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg=="],
+
+ "eslint-plugin-import/eslint/minimatch/brace-expansion": ["brace-expansion@1.1.12", "", { "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg=="],
+
+ "eslint-plugin-import/minimatch/brace-expansion/balanced-match": ["balanced-match@1.0.2", "", {}, "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="],
+
+ "eslint-plugin-jsx-a11y/eslint/@eslint-community/eslint-utils/eslint-visitor-keys": ["eslint-visitor-keys@3.4.3", "", {}, "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag=="],
+
+ "eslint-plugin-jsx-a11y/eslint/@eslint/config-array/@eslint/object-schema": ["@eslint/object-schema@2.1.7", "", {}, "sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA=="],
+
+ "eslint-plugin-jsx-a11y/eslint/chalk/ansi-styles": ["ansi-styles@4.3.0", "", { "dependencies": { "color-convert": "^2.0.1" } }, "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="],
+
+ "eslint-plugin-jsx-a11y/eslint/espree/acorn": ["acorn@8.15.0", "", { "bin": { "acorn": "bin/acorn" } }, "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg=="],
+
+ "eslint-plugin-jsx-a11y/eslint/minimatch/brace-expansion": ["brace-expansion@1.1.12", "", { "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg=="],
+
+ "eslint-plugin-jsx-a11y/minimatch/brace-expansion/balanced-match": ["balanced-match@1.0.2", "", {}, "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="],
+
+ "eslint-plugin-react-hooks/eslint/@eslint-community/eslint-utils/eslint-visitor-keys": ["eslint-visitor-keys@3.4.3", "", {}, "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag=="],
+
+ "eslint-plugin-react-hooks/eslint/@eslint/config-array/@eslint/object-schema": ["@eslint/object-schema@2.1.7", "", {}, "sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA=="],
+
+ "eslint-plugin-react-hooks/eslint/chalk/ansi-styles": ["ansi-styles@4.3.0", "", { "dependencies": { "color-convert": "^2.0.1" } }, "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="],
+
+ "eslint-plugin-react-hooks/eslint/espree/acorn": ["acorn@8.15.0", "", { "bin": { "acorn": "bin/acorn" } }, "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg=="],
+
+ "eslint-plugin-react-hooks/eslint/minimatch/brace-expansion": ["brace-expansion@1.1.12", "", { "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg=="],
+
+ "eslint-plugin-react/eslint/@eslint-community/eslint-utils/eslint-visitor-keys": ["eslint-visitor-keys@3.4.3", "", {}, "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag=="],
+
+ "eslint-plugin-react/eslint/@eslint/config-array/@eslint/object-schema": ["@eslint/object-schema@2.1.7", "", {}, "sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA=="],
+
+ "eslint-plugin-react/eslint/chalk/ansi-styles": ["ansi-styles@4.3.0", "", { "dependencies": { "color-convert": "^2.0.1" } }, "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="],
+
+ "eslint-plugin-react/eslint/espree/acorn": ["acorn@8.15.0", "", { "bin": { "acorn": "bin/acorn" } }, "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg=="],
+
+ "eslint-plugin-react/eslint/minimatch/brace-expansion": ["brace-expansion@1.1.12", "", { "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg=="],
+
+ "eslint-plugin-react/minimatch/brace-expansion/balanced-match": ["balanced-match@1.0.2", "", {}, "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="],
+
+ "react-native/glob/minimatch/brace-expansion": ["brace-expansion@1.1.12", "", { "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg=="],
+
+ "rimraf/glob/minimatch/brace-expansion": ["brace-expansion@1.1.12", "", { "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg=="],
+
+ "sass/chokidar/readdirp/picomatch": ["picomatch@2.3.1", "", {}, "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA=="],
"serve-static/send/debug/ms": ["ms@2.0.0", "", {}, "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="],
- "@babel/highlight/chalk/ansi-styles/color-convert/color-name": ["color-name@1.1.3", "", {}, "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw=="],
+ "terser-webpack-plugin/jest-worker/@types/node/undici-types": ["undici-types@6.21.0", "", {}, "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ=="],
- "@expo/cli/glob/minimatch/brace-expansion/balanced-match": ["balanced-match@4.0.4", "", {}, "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA=="],
+ "test-exclude/minimatch/brace-expansion/balanced-match": ["balanced-match@1.0.2", "", {}, "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="],
+
+ "@babel/highlight/chalk/ansi-styles/color-convert/color-name": ["color-name@1.1.3", "", {}, "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw=="],
"@expo/cli/ora/chalk/ansi-styles/color-convert": ["color-convert@1.9.3", "", { "dependencies": { "color-name": "1.1.3" } }, "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg=="],
@@ -3919,14 +4914,6 @@
"@expo/cli/ora/cli-cursor/restore-cursor/signal-exit": ["signal-exit@3.0.7", "", {}, "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ=="],
- "@expo/config-plugins/glob/minimatch/brace-expansion/balanced-match": ["balanced-match@4.0.4", "", {}, "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA=="],
-
- "@expo/config/glob/minimatch/brace-expansion/balanced-match": ["balanced-match@4.0.4", "", {}, "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA=="],
-
- "@expo/fingerprint/glob/minimatch/brace-expansion/balanced-match": ["balanced-match@4.0.4", "", {}, "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA=="],
-
- "@expo/metro-config/glob/minimatch/brace-expansion/balanced-match": ["balanced-match@4.0.4", "", {}, "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA=="],
-
"@expo/package-manager/ora/chalk/ansi-styles/color-convert": ["color-convert@1.9.3", "", { "dependencies": { "color-name": "1.1.3" } }, "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg=="],
"@expo/package-manager/ora/chalk/supports-color/has-flag": ["has-flag@3.0.0", "", {}, "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw=="],
@@ -3937,14 +4924,34 @@
"@istanbuljs/load-nyc-config/find-up/locate-path/p-locate/p-limit": ["p-limit@2.3.0", "", { "dependencies": { "p-try": "^2.0.0" } }, "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w=="],
+ "@react-native/babel-plugin-codegen/@react-native/codegen/glob/minimatch/brace-expansion": ["brace-expansion@1.1.12", "", { "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg=="],
+
+ "@react-native/codegen/glob/minimatch/brace-expansion/balanced-match": ["balanced-match@1.0.2", "", {}, "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="],
+
"@react-native/community-cli-plugin/metro-config/metro-cache/https-proxy-agent/agent-base": ["agent-base@7.1.4", "", {}, "sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ=="],
"@react-native/community-cli-plugin/metro/metro-cache/https-proxy-agent/agent-base": ["agent-base@7.1.4", "", {}, "sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ=="],
- "@sentry/bundler-plugin-core/glob/minimatch/brace-expansion/balanced-match": ["balanced-match@4.0.4", "", {}, "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA=="],
+ "@typescript-eslint/utils/@typescript-eslint/typescript-estree/minimatch/brace-expansion/balanced-match": ["balanced-match@1.0.2", "", {}, "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="],
+
+ "@typescript-eslint/utils/eslint/minimatch/brace-expansion/balanced-match": ["balanced-match@1.0.2", "", {}, "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="],
+
+ "eslint-plugin-import/eslint/minimatch/brace-expansion/balanced-match": ["balanced-match@1.0.2", "", {}, "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="],
+
+ "eslint-plugin-jsx-a11y/eslint/minimatch/brace-expansion/balanced-match": ["balanced-match@1.0.2", "", {}, "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="],
+
+ "eslint-plugin-react-hooks/eslint/minimatch/brace-expansion/balanced-match": ["balanced-match@1.0.2", "", {}, "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="],
+
+ "eslint-plugin-react/eslint/minimatch/brace-expansion/balanced-match": ["balanced-match@1.0.2", "", {}, "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="],
+
+ "react-native/glob/minimatch/brace-expansion/balanced-match": ["balanced-match@1.0.2", "", {}, "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="],
+
+ "rimraf/glob/minimatch/brace-expansion/balanced-match": ["balanced-match@1.0.2", "", {}, "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="],
"@expo/cli/ora/chalk/ansi-styles/color-convert/color-name": ["color-name@1.1.3", "", {}, "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw=="],
"@expo/package-manager/ora/chalk/ansi-styles/color-convert/color-name": ["color-name@1.1.3", "", {}, "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw=="],
+
+ "@react-native/babel-plugin-codegen/@react-native/codegen/glob/minimatch/brace-expansion/balanced-match": ["balanced-match@1.0.2", "", {}, "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="],
}
}
diff --git a/docker/.env.example b/docker/.env.example
deleted file mode 100644
index 9a8fc9f..0000000
--- a/docker/.env.example
+++ /dev/null
@@ -1,39 +0,0 @@
-# Next Envrionment Variables
-NETWORK=nginx-bridge
-NEXT_CONTAINER_NAME=next-app
-NEXT_DOMAIN_NAME=gbrown.org
- NEXT_PORT=3000
-NODE_ENV=production
-SENTRY_AUTH_TOKEN=
-NEXT_PUBLIC_SITE_URL=https://gbrown.org
-NEXT_PUBLIC_CONVEX_URL=https://api.convex.gbrown.org
-NEXT_PUBLIC_PLAUSIBLE_URL=https://plausible.gbrown.org
-NEXT_PUBLIC_SENTRY_DSN=
-NEXT_PUBLIC_SENTRY_ORG=sentry
-NEXT_PUBLIC_SENTRY_PROJECT_NAME=
-
-# Convex Environment Variables
-BACKEND_TAG=latest
-BACKEND_CONTAINER_NAME=convex-backend
-BACKEND_DOMAIN_NAME=convex.gbrown.org
-#BACKEND_PORT=
-#SITE_PROXY_PORT=
-DASHBOARD_TAG=latest
-DASHBOARD_CONTAINER_NAME=convex-dashboard
-DASHBOARD_DOMAIN=dashboard.convex.gbrown.org
-#DASHBOARD_PORT
-INSTANCE_NAME=convex
-#INSTANCE_SECRET=
-CONVEX_CLOUD_ORIGIN=https://api.convex.gbrown.org
-CONVEX_SITE_ORIGIN=https://convex.gbrown.org
-DISABLE_BEACON=true
-REDACT_LOGS_TO_CLIENT=true
-DO_NOT_REQUIRE_SSL=true
-NEXT_PUBLIC_DEPLOYMENT_URL=https://api.convex.gbrown.org
-#POSTGRES_URL=
-#DATABASE_URL=
-#CONVEX_RELEASE_VERSION_DEV=
-#ACTIONS_USER_TIMEOUT_SECS=
-#MYSQL_URL=
-#RUST_LOG=
-#RUST_BACKTRACE=
diff --git a/docker/Dockerfile b/docker/Dockerfile
index c90dfb7..cf75d44 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -1,24 +1,45 @@
# syntax=docker/dockerfile:1
-FROM oven/bun:alpine AS base
+FROM docker.io/oven/bun:1.3.10-alpine AS base
# Builder stage
FROM base AS builder
RUN apk add --no-cache libc6-compat
WORKDIR /app
+ARG SENTRY_AUTH_TOKEN
+ARG SENTRY_DISABLE_AUTO_UPLOAD=false
+ARG NEXT_PUBLIC_SITE_URL
+ARG NEXT_PUBLIC_CONVEX_URL
+ARG NEXT_PUBLIC_PLAUSIBLE_URL
+ARG NEXT_PUBLIC_SENTRY_DSN
+ARG NEXT_PUBLIC_SENTRY_URL
+ARG NEXT_PUBLIC_SENTRY_ORG
+ARG NEXT_PUBLIC_SENTRY_PROJECT_NAME
+
+ENV SENTRY_AUTH_TOKEN=$SENTRY_AUTH_TOKEN
+ENV SENTRY_DISABLE_AUTO_UPLOAD=$SENTRY_DISABLE_AUTO_UPLOAD
+ENV NEXT_PUBLIC_SITE_URL=$NEXT_PUBLIC_SITE_URL
+ENV NEXT_PUBLIC_CONVEX_URL=$NEXT_PUBLIC_CONVEX_URL
+ENV NEXT_PUBLIC_PLAUSIBLE_URL=$NEXT_PUBLIC_PLAUSIBLE_URL
+ENV NEXT_PUBLIC_SENTRY_DSN=$NEXT_PUBLIC_SENTRY_DSN
+ENV NEXT_PUBLIC_SENTRY_URL=$NEXT_PUBLIC_SENTRY_URL
+ENV NEXT_PUBLIC_SENTRY_ORG=$NEXT_PUBLIC_SENTRY_ORG
+ENV NEXT_PUBLIC_SENTRY_PROJECT_NAME=$NEXT_PUBLIC_SENTRY_PROJECT_NAME
+
# Copy source code (node_modules excluded via .dockerignore)
COPY . .
# Install all dependencies
-RUN bun install
+ENV HUSKY=0
+RUN bun install --frozen-lockfile
# Build with proper environment
ENV NEXT_TELEMETRY_DISABLED=1
ENV NODE_ENV=production
-RUN bun run build --filter=@gib/next
+RUN cd apps/next && bun run build:docker
# Runner stage
-FROM node:22-alpine AS runner
+FROM docker.io/library/node:22-alpine AS runner
WORKDIR /app
ENV NODE_ENV=production
diff --git a/docker/compose.local.yml b/docker/compose.local.yml
new file mode 100644
index 0000000..1b89356
--- /dev/null
+++ b/docker/compose.local.yml
@@ -0,0 +1,44 @@
+name: convexmonorepo-local
+
+services:
+ convex-backend:
+ image: ghcr.io/get-convex/convex-backend:${BACKEND_TAG:-latest}
+ container_name: convexmonorepo-local-convex
+ ports:
+ - '${BACKEND_PORT:-3210}:3210'
+ - '${SITE_PROXY_PORT:-3211}:3211'
+ environment:
+ - INSTANCE_NAME=${LOCAL_INSTANCE_NAME:-convexmonorepo_local}
+ - INSTANCE_SECRET=${LOCAL_INSTANCE_SECRET:-0000000000000000000000000000000000000000000000000000000000000000}
+ - CONVEX_CLOUD_ORIGIN=http://localhost:${BACKEND_PORT:-3210}
+ - CONVEX_SITE_ORIGIN=http://localhost:${SITE_PROXY_PORT:-3211}
+ - DISABLE_BEACON=true
+ - REDACT_LOGS_TO_CLIENT=false
+ - DO_NOT_REQUIRE_SSL=true
+ # Convex uses its own volume by default. A cloned project may opt into
+ # Convex-on-Postgres by configuring a separate database URL here:
+ # - POSTGRES_URL=postgres://user:password@postgres:5432/convex?sslmode=disable
+ volumes: [convex-data:/convex/data]
+ restart: unless-stopped
+ healthcheck:
+ test: ['CMD', 'curl', '-f', 'http://localhost:3210/version']
+ start_period: 10s
+ interval: 5s
+ retries: 20
+ timeout: 5s
+ stop_grace_period: 10s
+ stop_signal: SIGINT
+
+ convex-dashboard:
+ image: ghcr.io/get-convex/convex-dashboard:${DASHBOARD_TAG:-latest}
+ container_name: convexmonorepo-local-convex-dashboard
+ ports: ['${DASHBOARD_PORT:-6791}:6791']
+ environment:
+ - NEXT_PUBLIC_DEPLOYMENT_URL=http://localhost:${BACKEND_PORT:-3210}
+ depends_on:
+ convex-backend:
+ condition: service_healthy
+ restart: unless-stopped
+
+volumes:
+ convex-data:
diff --git a/docker/compose.yml b/docker/compose.yml
index 20130c5..2fa5965 100644
--- a/docker/compose.yml
+++ b/docker/compose.yml
@@ -3,14 +3,25 @@ networks:
external: true
services:
- next-app:
+ convexmonorepo-next:
build:
context: ../
dockerfile: ./docker/Dockerfile
- image: ${NEXT_CONTAINER_NAME}:alpine
+ args:
+ SENTRY_AUTH_TOKEN: ${SENTRY_AUTH_TOKEN}
+ SENTRY_DISABLE_AUTO_UPLOAD: ${SENTRY_DISABLE_AUTO_UPLOAD:-false}
+ NEXT_PUBLIC_SITE_URL: ${NEXT_PUBLIC_SITE_URL}
+ NEXT_PUBLIC_CONVEX_URL: ${NEXT_PUBLIC_CONVEX_URL}
+ NEXT_PUBLIC_PLAUSIBLE_URL: ${NEXT_PUBLIC_PLAUSIBLE_URL}
+ NEXT_PUBLIC_SENTRY_DSN: ${NEXT_PUBLIC_SENTRY_DSN}
+ NEXT_PUBLIC_SENTRY_URL: ${NEXT_PUBLIC_SENTRY_URL}
+ NEXT_PUBLIC_SENTRY_ORG: ${NEXT_PUBLIC_SENTRY_ORG}
+ NEXT_PUBLIC_SENTRY_PROJECT_NAME: ${NEXT_PUBLIC_SENTRY_PROJECT_NAME}
+ image: convexmonorepo-next:latest
+ #image: git.gbrown.org/gib/${NEXT_CONTAINER_NAME}:latest
container_name: ${NEXT_CONTAINER_NAME}
environment:
- - NODE_ENV
+ - NODE_ENV=${NODE_ENV}
- SENTRY_AUTH_TOKEN=${SENTRY_AUTH_TOKEN}
- NEXT_PUBLIC_SITE_URL=${NEXT_PUBLIC_SITE_URL:-http://localhost:${NEXT_PORT:-3000}}
- NEXT_PUBLIC_CONVEX_URL=${NEXT_PUBLIC_CONVEX_URL:-http://${BACKEND_CONTAINER_NAME:-convex-backend}:${BACKEND_PORT:-3210}}
@@ -20,33 +31,34 @@ services:
- NEXT_PUBLIC_SENTRY_ORG=${NEXT_PUBLIC_SENTRY_ORG:-sentry}
- NEXT_PUBLIC_SENTRY_PROJECT_NAME=${NEXT_PUBLIC_SENTRY_PROJECT_NAME}
hostname: ${NEXT_CONTAINER_NAME}
- domainname: ${NEXT_DOMAIN_NAME}
+ domainname: ${NEXT_DOMAIN}
networks: ['${NETWORK:-nginx-bridge}']
- #ports: ['${NEXT_PORT}:3000']
- depends_on: ['convex-backend']
+ #ports: ['${NEXT_PORT}:${NEXT_PORT}']
+ #depends_on: ['convexmonorepo-backend']
tty: true
stdin_open: true
restart: unless-stopped
- convex-backend:
+ convexmonorepo-backend:
image: ghcr.io/get-convex/convex-backend:${BACKEND_TAG:-latest}
container_name: ${BACKEND_CONTAINER_NAME:-convex-backend}
hostname: ${BACKEND_CONTAINER_NAME:-convex-backend}
- domainname: ${BACKEND_DOMAIN_NAME:-convex.gbrown.org}
+ domainname: ${BACKEND_DOMAIN:-convex.gbrown.org}
networks: ['${NETWORK:-nginx-bridge}']
#user: '1000:1000'
#ports: ['${BACKEND_PORT:-3210}:3210','${SITE_PROXY_PORT:-3211}:3211']
volumes: [./data:/convex/data]
labels: ['com.centurylinklabs.watchtower.enable=true']
environment:
- - INSTANCE_NAME
- - INSTANCE_SECRET
- - CONVEX_CLOUD_ORIGIN=${CONVEX_CLOUD_ORIGIN:-http://${BACKEND_CONTAINER_NAME:-convex-backend}:${BACKEND_PORT:-3210}}
- - CONVEX_SITE_ORIGIN=${CONVEX_SITE_ORIGIN:-http://${BACKEND_CONTAINER_NAME:-convex-backend}:${SITE_PROXY_PORT:-3211}}
- - DISABLE_BEACON
- - REDACT_LOGS_TO_CLIENT
- - DO_NOT_REQUIRE_SSL
- #- DATABASE_URL=${DATABASE_URL:-}
+ - INSTANCE_NAME=${INSTANCE_NAME}
+ - INSTANCE_SECRET=${INSTANCE_SECRET}
+ - CONVEX_CLOUD_ORIGIN=${CONVEX_CLOUD_ORIGIN:-http://${BACKEND_CONTAINER_NAME:-stpeteit-backend}:${BACKEND_PORT:-3210}}
+ - CONVEX_SITE_ORIGIN=${CONVEX_SITE_ORIGIN:-http://${BACKEND_CONTAINER_NAME:-stpeteit-backend}:${SITE_PROXY_PORT:-3211}}
+ - DISABLE_BEACON=${DISABLE_BEACON:-true}
+ - REDACT_LOGS_TO_CLIENT=${REDACT_LOGS_TO_CLIENT:-true}
+ - DO_NOT_REQUIRE_SSL=${DO_NOT_REQUIRE_SSL:-false}
+ # Optional: Convex-on-Postgres is not the template default.
+ #- POSTGRES_URL=${POSTGRES_URL}
stdin_open: true
tty: true
restart: unless-stopped
@@ -57,11 +69,11 @@ services:
stop_grace_period: 10s
stop_signal: SIGINT
- convex-dashboard:
+ convexmonorepo-dashboard:
image: ghcr.io/get-convex/convex-dashboard:${DASHBOARD_TAG:-latest}
container_name: ${DASHBOARD_CONTAINER_NAME:-convex-dashboard}
hostname: ${DASHBOARD_CONTAINER_NAME:-convex-dashboard}
- domainname: ${DASHBOARD_DOMAIN_NAME:-dashboard.${BACKEND_DOMAIN_NAME:-convex.gbrown.org}}
+ domainname: ${DASHBOARD_DOMAIN:-dashboard.${BACKEND_DOMAIN:-convex.gbrown.org}}
networks: ['${NETWORK:-nginx-bridge}']
#user: 1000:1000
#ports: ['${DASHBOARD_PORT:-6791}:6791']
@@ -69,7 +81,7 @@ services:
environment:
- NEXT_PUBLIC_DEPLOYMENT_URL=${NEXT_PUBLIC_DEPLOYMENT_URL:-http://${BACKEND_CONTAINER_NAME:-convex-backend}:${PORT:-3210}}
depends_on:
- convex-backend:
+ convexmonorepo-backend:
condition: service_healthy
stdin_open: true
tty: true
diff --git a/docker/generate_convex_admin_key b/docker/generate_convex_admin_key
deleted file mode 100755
index 7c1f5d8..0000000
--- a/docker/generate_convex_admin_key
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/usr/bin/env bash
-source ./.env
-sudo docker compose exec ${BACKEND_CONTAINER_NAME} ./generate_admin_key.sh
diff --git a/package.json b/package.json
index c55274f..1ac4ea8 100644
--- a/package.json
+++ b/package.json
@@ -11,25 +11,38 @@
"tools/*"
],
"catalog": {
- "@eslint/js": "^9.38.0",
- "@tailwindcss/postcss": "^4.1.16",
- "@types/node": "^22.19.15",
- "eslint": "^9.39.4",
+ "@eslint/js": "^10.0.1",
+ "@tailwindcss/postcss": "^4.2.2",
+ "@types/node": "^25.5.0",
+ "eslint": "^10.1.0",
"prettier": "^3.8.1",
- "tailwindcss": "^4.1.16",
- "typescript": "^5.9.3",
+ "tailwindcss": "^4.2.2",
+ "typescript": "^6.0.2",
+ "ws": "^8.18.3",
"zod": "^4.3.6"
},
"catalogs": {
+ "test": {
+ "@edge-runtime/vm": "^5.0.0",
+ "@playwright/test": "^1.60.0",
+ "@testing-library/jest-dom": "^6.9.1",
+ "@testing-library/react": "^16.3.2",
+ "@testing-library/user-event": "^14.6.1",
+ "@vitejs/plugin-react": "^6.0.2",
+ "@vitest/coverage-v8": "^4.1.8",
+ "convex-test": "^0.0.53",
+ "jsdom": "^29.1.1",
+ "vitest": "^4.1.8"
+ },
"convex": {
- "@convex-dev/auth": "^0.0.81",
- "convex": "^1.33.1"
+ "@convex-dev/auth": "^0.0.87",
+ "convex": "^1.34.1"
},
"react19": {
- "@types/react": "~19.1.0",
- "@types/react-dom": "~19.1.0",
- "react": "19.1.4",
- "react-dom": "19.1.4"
+ "@types/react": "~19.2.14",
+ "@types/react-dom": "~19.2.3",
+ "react": "19.2.4",
+ "react-dom": "19.2.4"
}
},
"scripts": {
@@ -39,30 +52,73 @@
"dev": "turbo run dev",
"dev:tunnel": "turbo run dev:tunnel",
"dev:next": "turbo run dev -F @gib/next -F @gib/backend",
+ "dev:next:web": "turbo run dev:web -F @gib/next -F @gib/backend",
"dev:expo": "turbo run dev -F @gib/expo -F @gib/backend",
"dev:backend": "turbo run dev -F @gib/backend",
+ "dev:staging": "INFISICAL_ENV=staging turbo run dev -F @gib/next -F @gib/backend",
"dev:expo:tunnel": "turbo run dev:tunnel -F @gib/expo -F @gib/backend",
+ "db:up": "bash scripts/db/up",
+ "db:down": "bash scripts/db/down",
+ "db:down:wipe": "bash scripts/db/down --wipe",
"format": "turbo run format --continue -- --cache --cache-location .cache/.prettiercache",
"format:fix": "turbo run format --continue -- --write --cache --cache-location .cache/.prettiercache",
"lint": "turbo run lint --continue -- --cache --cache-location .cache/.eslintcache",
"lint:fix": "turbo run lint --continue -- --fix --cache --cache-location .cache/.eslintcache",
"lint:ws": "bunx sherif@latest",
- "postinstall": "bun lint:ws",
+ "patch:usesend": "node scripts/patch-usesend.mjs",
+ "postinstall": "bun patch:usesend && bun lint:ws",
"typecheck": "turbo run typecheck",
+ "test": "turbo run test:unit test:integration test:component",
+ "test:unit": "turbo run test:unit",
+ "test:integration": "turbo run test:integration",
+ "test:component": "turbo run test:component",
+ "test:e2e": "bash scripts/e2e",
+ "test:all": "turbo run test:unit test:integration test:component && bun test:e2e",
+ "ci:check": "bun lint:ws && turbo run lint typecheck test:unit test:integration test:component --concurrency=2 && bun test:e2e",
+ "prepare": "husky",
"ui-add": "turbo run ui-add",
"android": "expo run:android",
"ios": "expo run:ios"
},
"devDependencies": {
"@gib/prettier-config": "workspace:",
- "@turbo/gen": "^2.8.20",
- "baseline-browser-mapping": "^2.10.8",
+ "@turbo/gen": "^2.9.18",
"dotenv-cli": "11.0.0",
+ "husky": "^9.1.7",
+ "lint-staged": "^17.0.7",
"prettier": "catalog:",
- "turbo": "^2.8.20",
+ "turbo": "^2.9.18",
"typescript": "catalog:"
},
"prettier": "@gib/prettier-config",
+ "lint-staged": {
+ "apps/next/**/*.{ts,tsx}": [
+ "eslint --flag unstable_native_nodejs_ts_config --fix --no-warn-ignored --config apps/next/eslint.config.ts",
+ "prettier --write"
+ ],
+ "apps/expo/**/*.{ts,tsx}": [
+ "eslint --flag unstable_native_nodejs_ts_config --fix --no-warn-ignored --config apps/expo/eslint.config.mts",
+ "prettier --write"
+ ],
+ "packages/backend/**/*.{ts,tsx}": [
+ "eslint --flag unstable_native_nodejs_ts_config --fix --no-warn-ignored --config packages/backend/eslint.config.ts",
+ "prettier --write"
+ ],
+ "packages/ui/**/*.{ts,tsx}": [
+ "eslint --flag unstable_native_nodejs_ts_config --fix --no-warn-ignored --config packages/ui/eslint.config.ts",
+ "prettier --write"
+ ],
+ "tools/tailwind/**/*.{ts,tsx}": [
+ "eslint --flag unstable_native_nodejs_ts_config --fix --no-warn-ignored --config tools/tailwind/eslint.config.ts",
+ "prettier --write"
+ ],
+ "tools/{eslint,prettier,typescript,vitest}/**/*.{ts,tsx}": [
+ "prettier --write"
+ ],
+ "**/*.{js,mjs,cjs,md,json,yaml,yml,css}": [
+ "prettier --write"
+ ]
+ },
"trustedDependencies": [
"@sentry/cli",
"core-js-pure",
diff --git a/packages/backend/.cache/.prettiercache b/packages/backend/.cache/.prettiercache
index 35140f8..796420c 100644
--- a/packages/backend/.cache/.prettiercache
+++ b/packages/backend/.cache/.prettiercache
@@ -1 +1 @@
-[["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23"],{"key":"24","value":"25"},{"key":"26","value":"27"},{"key":"28","value":"29"},{"key":"30","value":"31"},{"key":"32","value":"33"},{"key":"34","value":"35"},{"key":"36","value":"37"},{"key":"38","value":"39"},{"key":"40","value":"41"},{"key":"42","value":"43"},{"key":"44","value":"45"},{"key":"46","value":"47"},{"key":"48","value":"49"},{"key":"50","value":"51"},{"key":"52","value":"53"},{"key":"54","value":"55"},{"key":"56","value":"57"},{"key":"58","value":"59"},{"key":"60","value":"61"},{"key":"62","value":"63"},{"key":"64","value":"65"},{"key":"66","value":"67"},{"key":"68","value":"69"},"/home/gib/Documents/Code/convex-monorepo/packages/backend/.gitignore",{"size":16,"mtime":1766222924000,"hash":"70"},"/home/gib/Documents/Code/convex-monorepo/packages/backend/convex/custom/auth/providers/usesend.ts",{"size":3245,"mtime":1774543332725,"hash":"71","data":"72"},"/home/gib/Documents/Code/convex-monorepo/packages/backend/scripts/generateKeys.mjs",{"size":520,"mtime":1768368324432,"hash":"73","data":"74"},"/home/gib/Documents/Code/convex-monorepo/packages/backend/convex/tsconfig.json",{"size":732,"mtime":1766222924000,"hash":"75","data":"76"},"/home/gib/Documents/Code/convex-monorepo/packages/backend/convex/http.ts",{"size":153,"mtime":1768157491000,"hash":"77","data":"78"},"/home/gib/Documents/Code/convex-monorepo/packages/backend/convex/utils.ts",{"size":635,"mtime":1768155639000,"hash":"79","data":"80"},"/home/gib/Documents/Code/convex-monorepo/packages/backend/convex/schema.ts",{"size":1161,"mtime":1774544485430,"hash":"81","data":"82"},"/home/gib/Documents/Code/convex-monorepo/packages/backend/convex/auth.ts",{"size":3770,"mtime":1774537696767,"hash":"83","data":"84"},"/home/gib/Documents/Code/convex-monorepo/packages/backend/convex/files.ts",{"size":582,"mtime":1768239263763,"hash":"85","data":"86"},"/home/gib/Documents/Code/convex-monorepo/packages/backend/convex/custom/auth/index.ts",{"size":142,"mtime":1768157708000,"hash":"87","data":"88"},"/home/gib/Documents/Code/convex-monorepo/packages/backend/types/auth.ts",{"size":174,"mtime":1768188156942,"hash":"89","data":"90"},"/home/gib/Documents/Code/convex-monorepo/packages/backend/convex/crons.ts",{"size":528,"mtime":1768239263662,"hash":"91","data":"92"},"/home/gib/Documents/Code/convex-monorepo/packages/backend/convex/auth.config.ts",{"size":127,"mtime":1768156477000,"hash":"93","data":"94"},"/home/gib/Documents/Code/convex-monorepo/packages/backend/convex/_generated/server.d.ts",{"size":5600,"mtime":1774546246577,"hash":"95","data":"96"},"/home/gib/Documents/Code/convex-monorepo/packages/backend/convex/README.md",{"size":2525,"mtime":1768155639000,"hash":"97","data":"98"},"/home/gib/Documents/Code/convex-monorepo/packages/backend/convex/_generated/api.d.ts",{"size":1632,"mtime":1774546247295,"hash":"99","data":"100"},"/home/gib/Documents/Code/convex-monorepo/packages/backend/convex/_generated/dataModel.d.ts",{"size":1737,"mtime":1774546589762,"hash":"101","data":"102"},"/home/gib/Documents/Code/convex-monorepo/packages/backend/convex/_generated/server.js",{"size":3696,"mtime":1774546246569,"hash":"103","data":"104"},"/home/gib/Documents/Code/convex-monorepo/packages/backend/types/index.ts",{"size":69,"mtime":1768239263861,"hash":"105","data":"106"},"/home/gib/Documents/Code/convex-monorepo/packages/backend/convex/custom/auth/providers/password.ts",{"size":966,"mtime":1774545150633,"hash":"107","data":"108"},"/home/gib/Documents/Code/convex-monorepo/packages/backend/.cache/.prettiercache",{"size":5478,"mtime":1774544663987},"/home/gib/Documents/Code/convex-monorepo/packages/backend/package.json",{"size":1300,"mtime":1768239263823,"hash":"109","data":"110"},"/home/gib/Documents/Code/convex-monorepo/packages/backend/convex/_generated/api.js",{"size":480,"mtime":1774546246582,"hash":"111","data":"112"},"175b1a771387d8b7e26145c3d04e0475","14f5e2d18e21f65282ac744b382f2d5f",{"hashOfOptions":"113"},"ccf5b9105ad4ff66fce0a7133fa3db4b",{"hashOfOptions":"114"},"cfa98923457caed911ec68b626ef4234",{"hashOfOptions":"115"},"4bbb95a66a1e615c30ea7c5098a4a609",{"hashOfOptions":"116"},"6a3198db454396c63e99ee08065726bd",{"hashOfOptions":"117"},"7e6dcc47831030bfaa3e235d2226cec6",{"hashOfOptions":"118"},"3d304208139ef0b2775272a5a4a2a970",{"hashOfOptions":"119"},"5ff3856f1a61b946df899f7c9880b72a",{"hashOfOptions":"120"},"8776a23ed6f2ab3681e4ba5b4bcf3d74",{"hashOfOptions":"121"},"f0f9ef72dc6fef350f3521d3fd8adfc7",{"hashOfOptions":"122"},"0d76c3867783aec5435b0c716f1bfc65",{"hashOfOptions":"123"},"2d4f4ccfc784af9d668d8c64726c2f6b",{"hashOfOptions":"124"},"6719b019702fc173de16b1bdc8e8ed47",{"hashOfOptions":"125"},"f5aa8269478f140adb4ccf0470dd1244",{"hashOfOptions":"126"},"7c522302bfb45e9cf5f1c271b48fa247",{"hashOfOptions":"127"},"ce3275ccdd28673d7e9280b33792057c",{"hashOfOptions":"128"},"f42d53bd1ba24bfee1407d2098f3b9ff",{"hashOfOptions":"129"},"57577de5aadfa618e91739aea3630342",{"hashOfOptions":"130"},"55bcf7d546da727edf2c1b7e52db6c7f",{"hashOfOptions":"131"},"5d96f2526115241c4a37250b0f45ac4d",{"hashOfOptions":"132"},"9d0d3b8d30fb1a1207df0584bf0f4c2e",{"hashOfOptions":"133"},"559378404","1572137748","2802546153","2396101593","842922540","1478655424","2455343513","491364902","2374011252","309999831","1661441336","3087589493","3464494565","1153437227","1400189712","392706379","2060074149","2291384685","3538931632","3443151820","2295863120"]
\ No newline at end of file
+[["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51"],{"key":"52","value":"53"},{"key":"54","value":"55"},{"key":"56","value":"57"},{"key":"58","value":"59"},{"key":"60","value":"61"},{"key":"62","value":"63"},{"key":"64","value":"65"},{"key":"66","value":"67"},{"key":"68","value":"69"},{"key":"70","value":"71"},{"key":"72","value":"73"},{"key":"74","value":"75"},{"key":"76","value":"77"},{"key":"78","value":"79"},{"key":"80","value":"81"},{"key":"82","value":"83"},{"key":"84","value":"85"},{"key":"86","value":"87"},{"key":"88","value":"89"},{"key":"90","value":"91"},{"key":"92","value":"93"},{"key":"94","value":"95"},{"key":"96","value":"97"},{"key":"98","value":"99"},{"key":"100","value":"101"},{"key":"102","value":"103"},{"key":"104","value":"105"},{"key":"106","value":"107"},{"key":"108","value":"109"},{"key":"110","value":"111"},{"key":"112","value":"113"},{"key":"114","value":"115"},{"key":"116","value":"117"},{"key":"118","value":"119"},{"key":"120","value":"121"},{"key":"122","value":"123"},{"key":"124","value":"125"},{"key":"126","value":"127"},{"key":"128","value":"129"},{"key":"130","value":"131"},{"key":"132","value":"133"},{"key":"134","value":"135"},{"key":"136","value":"137"},{"key":"138","value":"139"},{"key":"140","value":"141"},{"key":"142","value":"143"},{"key":"144","value":"145"},{"key":"146","value":"147"},{"key":"148","value":"149"},{"key":"150","value":"151"},{"key":"152","value":"153"},"/home/gib/Documents/Code/convex-monorepo/packages/backend/tsconfig.json",{"size":209,"mtime":1782064673517,"data":"154"},"/home/gib/Documents/Code/Spoon/packages/backend/tsconfig.json",{"size":209,"mtime":1782064673517,"data":"155"},"/home/gib/Documents/Code/convex-monorepo/packages/backend/.gitignore",{"size":16,"mtime":1766222924000,"hash":"156"},"/home/gib/Documents/Code/convex-monorepo/packages/backend/convex/custom/auth/providers/usesend.ts",{"size":3461,"mtime":1782065211116,"hash":"157","data":"158"},"/home/gib/Documents/Code/convex-monorepo/packages/backend/scripts/generateKeys.mjs",{"size":520,"mtime":1768368324432,"hash":"159","data":"160"},"/home/gib/Documents/Code/Spoon/packages/backend/.gitignore",{"size":16,"mtime":1766222924000},"/home/gib/Documents/Code/Spoon/packages/backend/convex/custom/auth/providers/usesend.ts",{"size":3461,"mtime":1782065211116,"data":"161"},"/home/gib/Documents/Code/Spoon/packages/backend/scripts/generateKeys.mjs",{"size":520,"mtime":1768368324432,"data":"162"},"/home/gib/Documents/Code/convex-monorepo/packages/backend/convex/tsconfig.json",{"size":732,"mtime":1766222924000,"hash":"163","data":"164"},"/home/gib/Documents/Code/convex-monorepo/packages/backend/convex/http.ts",{"size":153,"mtime":1768157491000,"hash":"165","data":"166"},"/home/gib/Documents/Code/convex-monorepo/packages/backend/tests/vite-env.d.ts",{"size":38,"mtime":1782064673517,"data":"167"},"/home/gib/Documents/Code/Spoon/packages/backend/convex/http.ts",{"size":153,"mtime":1768157491000,"data":"168"},"/home/gib/Documents/Code/Spoon/packages/backend/convex/tsconfig.json",{"size":732,"mtime":1766222924000,"data":"169"},"/home/gib/Documents/Code/Spoon/packages/backend/tests/vite-env.d.ts",{"size":38,"mtime":1782064673517,"data":"170"},"/home/gib/Documents/Code/convex-monorepo/packages/backend/convex/schema.ts",{"size":1199,"mtime":1774583096378,"hash":"171","data":"172"},"/home/gib/Documents/Code/convex-monorepo/packages/backend/eslint.config.ts",{"size":233,"mtime":1774717251737,"data":"173"},"/home/gib/Documents/Code/convex-monorepo/packages/backend/tests/unit/harness.test.ts",{"size":418,"mtime":1782064673517,"data":"174"},"/home/gib/Documents/Code/convex-monorepo/packages/backend/vitest.config.ts",{"size":387,"mtime":1782065113472,"data":"175"},"/home/gib/Documents/Code/Spoon/packages/backend/convex/schema.ts",{"size":1199,"mtime":1774583096378,"data":"176"},"/home/gib/Documents/Code/Spoon/packages/backend/eslint.config.ts",{"size":233,"mtime":1774717251737,"data":"177"},"/home/gib/Documents/Code/Spoon/packages/backend/tests/unit/harness.test.ts",{"size":418,"mtime":1782064673517,"data":"178"},"/home/gib/Documents/Code/Spoon/packages/backend/vitest.config.ts",{"size":387,"mtime":1782065113472,"data":"179"},"/home/gib/Documents/Code/convex-monorepo/packages/backend/convex/auth.ts",{"size":3664,"mtime":1774717261375,"hash":"180","data":"181"},"/home/gib/Documents/Code/Spoon/packages/backend/convex/auth.ts",{"size":3664,"mtime":1774717261375,"data":"182"},"/home/gib/Documents/Code/convex-monorepo/packages/backend/convex/files.ts",{"size":582,"mtime":1768239263763,"hash":"183","data":"184"},"/home/gib/Documents/Code/convex-monorepo/packages/backend/convex/custom/auth/index.ts",{"size":142,"mtime":1768157708000,"hash":"185","data":"186"},"/home/gib/Documents/Code/Spoon/packages/backend/convex/custom/auth/index.ts",{"size":142,"mtime":1768157708000,"data":"187"},"/home/gib/Documents/Code/Spoon/packages/backend/convex/files.ts",{"size":582,"mtime":1768239263763,"data":"188"},"/home/gib/Documents/Code/convex-monorepo/packages/backend/types/auth.ts",{"size":174,"mtime":1768188156942,"hash":"189","data":"190"},"/home/gib/Documents/Code/Spoon/packages/backend/types/auth.ts",{"size":174,"mtime":1768188156942,"data":"191"},"/home/gib/Documents/Code/convex-monorepo/packages/backend/convex/crons.ts",{"size":528,"mtime":1774717276314,"hash":"192","data":"193"},"/home/gib/Documents/Code/Spoon/packages/backend/convex/crons.ts",{"size":528,"mtime":1774717276314,"data":"194"},"/home/gib/Documents/Code/convex-monorepo/packages/backend/convex/auth.config.ts",{"size":127,"mtime":1768156477000,"hash":"195","data":"196"},"/home/gib/Documents/Code/convex-monorepo/packages/backend/convex/_generated/server.d.ts",{"size":5600,"mtime":1782064989616,"hash":"197","data":"198"},"/home/gib/Documents/Code/convex-monorepo/packages/backend/convex/globals.d.ts",{"size":358,"mtime":1774718189069,"data":"199"},"/home/gib/Documents/Code/Spoon/packages/backend/convex/auth.config.ts",{"size":127,"mtime":1768156477000,"data":"200"},"/home/gib/Documents/Code/Spoon/packages/backend/convex/globals.d.ts",{"size":358,"mtime":1774718189069,"data":"201"},"/home/gib/Documents/Code/convex-monorepo/packages/backend/convex/README.md",{"size":2525,"mtime":1768155639000,"hash":"202","data":"203"},"/home/gib/Documents/Code/Spoon/packages/backend/convex/README.md",{"size":2525,"mtime":1768155639000,"data":"204"},"/home/gib/Documents/Code/convex-monorepo/packages/backend/convex/_generated/api.d.ts",{"size":1566,"mtime":1782064989616,"hash":"205","data":"206"},"/home/gib/Documents/Code/convex-monorepo/packages/backend/convex/_generated/dataModel.d.ts",{"size":1736,"mtime":1782068137549,"hash":"207","data":"208"},"/home/gib/Documents/Code/convex-monorepo/packages/backend/convex/_generated/server.js",{"size":3696,"mtime":1782064989616,"hash":"209","data":"210"},"/home/gib/Documents/Code/convex-monorepo/packages/backend/types/index.ts",{"size":69,"mtime":1768239263861,"hash":"211","data":"212"},"/home/gib/Documents/Code/Spoon/packages/backend/types/index.ts",{"size":69,"mtime":1768239263861,"data":"213"},"/home/gib/Documents/Code/convex-monorepo/packages/backend/convex/custom/auth/providers/password.ts",{"size":966,"mtime":1774546669452,"hash":"214","data":"215"},"/home/gib/Documents/Code/convex-monorepo/packages/backend/.cache/.prettiercache",{"size":6569,"mtime":1782065457492},"/home/gib/Documents/Code/convex-monorepo/packages/backend/.cache/.eslintcache",{"size":5533,"mtime":1782065364721},"/home/gib/Documents/Code/Spoon/packages/backend/convex/custom/auth/providers/password.ts",{"size":966,"mtime":1774546669452,"data":"216"},"/home/gib/Documents/Code/convex-monorepo/packages/backend/package.json",{"size":1745,"mtime":1782064939453,"hash":"217","data":"218"},"/home/gib/Documents/Code/convex-monorepo/packages/backend/convex/_generated/api.js",{"size":480,"mtime":1782064989616,"hash":"219","data":"220"},"/home/gib/Documents/Code/Spoon/packages/backend/package.json",{"size":1745,"mtime":1782064939453,"data":"221"},{"hashOfOptions":"222"},{"hashOfOptions":"223"},"175b1a771387d8b7e26145c3d04e0475","14f5e2d18e21f65282ac744b382f2d5f",{"hashOfOptions":"224"},"ccf5b9105ad4ff66fce0a7133fa3db4b",{"hashOfOptions":"225"},{"hashOfOptions":"226"},{"hashOfOptions":"227"},"cfa98923457caed911ec68b626ef4234",{"hashOfOptions":"228"},"4bbb95a66a1e615c30ea7c5098a4a609",{"hashOfOptions":"229"},{"hashOfOptions":"230"},{"hashOfOptions":"231"},{"hashOfOptions":"232"},{"hashOfOptions":"233"},"7e6dcc47831030bfaa3e235d2226cec6",{"hashOfOptions":"234"},{"hashOfOptions":"235"},{"hashOfOptions":"236"},{"hashOfOptions":"237"},{"hashOfOptions":"238"},{"hashOfOptions":"239"},{"hashOfOptions":"240"},{"hashOfOptions":"241"},"3d304208139ef0b2775272a5a4a2a970",{"hashOfOptions":"242"},{"hashOfOptions":"243"},"5ff3856f1a61b946df899f7c9880b72a",{"hashOfOptions":"244"},"8776a23ed6f2ab3681e4ba5b4bcf3d74",{"hashOfOptions":"245"},{"hashOfOptions":"246"},{"hashOfOptions":"247"},"f0f9ef72dc6fef350f3521d3fd8adfc7",{"hashOfOptions":"248"},{"hashOfOptions":"249"},"0d76c3867783aec5435b0c716f1bfc65",{"hashOfOptions":"250"},{"hashOfOptions":"251"},"2d4f4ccfc784af9d668d8c64726c2f6b",{"hashOfOptions":"252"},"6719b019702fc173de16b1bdc8e8ed47",{"hashOfOptions":"253"},{"hashOfOptions":"254"},{"hashOfOptions":"255"},{"hashOfOptions":"256"},"f5aa8269478f140adb4ccf0470dd1244",{"hashOfOptions":"257"},{"hashOfOptions":"258"},"7c522302bfb45e9cf5f1c271b48fa247",{"hashOfOptions":"259"},"ce3275ccdd28673d7e9280b33792057c",{"hashOfOptions":"260"},"f42d53bd1ba24bfee1407d2098f3b9ff",{"hashOfOptions":"261"},"57577de5aadfa618e91739aea3630342",{"hashOfOptions":"262"},{"hashOfOptions":"263"},"55bcf7d546da727edf2c1b7e52db6c7f",{"hashOfOptions":"264"},{"hashOfOptions":"265"},"5d96f2526115241c4a37250b0f45ac4d",{"hashOfOptions":"266"},"9d0d3b8d30fb1a1207df0584bf0f4c2e",{"hashOfOptions":"267"},{"hashOfOptions":"268"},"1264126679","1899851585","4201113886","4144289882","191151240","1994274672","3482085679","468670495","1489924999","3549302325","661298757","3684931825","3701110534","3412473360","4150441154","4270246500","1326678556","1038041382","3981568216","1895814522","527912415","3608544245","2480994144","2811195566","1635992088","2047198922","2882210577","3517935483","3651070578","3217275356","2735390383","2652563487","477588209","2010107673","2672595035","3375892337","1001460359","202825046","3769113233","2497258463","363953587","3444585417","3073877238","3101273100","7295762","573047958","639185960"]
\ No newline at end of file
diff --git a/packages/backend/convex/_generated/api.d.ts b/packages/backend/convex/_generated/api.d.ts
index 30bb1ae..22d6fa2 100644
--- a/packages/backend/convex/_generated/api.d.ts
+++ b/packages/backend/convex/_generated/api.d.ts
@@ -15,7 +15,6 @@ import type * as custom_auth_providers_password from "../custom/auth/providers/p
import type * as custom_auth_providers_usesend from "../custom/auth/providers/usesend.js";
import type * as files from "../files.js";
import type * as http from "../http.js";
-import type * as utils from "../utils.js";
import type {
ApiFromModules,
@@ -31,7 +30,6 @@ declare const fullApi: ApiFromModules<{
"custom/auth/providers/usesend": typeof custom_auth_providers_usesend;
files: typeof files;
http: typeof http;
- utils: typeof utils;
}>;
/**
diff --git a/packages/backend/convex/auth.ts b/packages/backend/convex/auth.ts
index c1b38ca..78c4f4e 100644
--- a/packages/backend/convex/auth.ts
+++ b/packages/backend/convex/auth.ts
@@ -8,7 +8,7 @@ import {
import { ConvexError, v } from 'convex/values';
import type { Doc, Id } from './_generated/dataModel';
-import type { MutationCtx, QueryCtx } from './_generated/server';
+import type { QueryCtx } from './_generated/server';
import { api } from './_generated/api';
import { action, mutation, query } from './_generated/server';
import { Password, validatePassword } from './custom/auth';
@@ -96,11 +96,10 @@ export const updateUserPassword = action({
if (!userId) throw new ConvexError('Not authenticated.');
const user = await ctx.runQuery(api.auth.getUser, { userId });
if (!user?.email) throw new ConvexError('User not found.');
- const verified = await retrieveAccount(ctx, {
+ await retrieveAccount(ctx, {
provider: 'password',
account: { id: user.email, secret: currentPassword },
});
- if (!verified) throw new ConvexError('Current password is incorrect.');
if (!validatePassword(newPassword))
throw new ConvexError('Invalid password.');
diff --git a/packages/backend/convex/custom/auth/providers/usesend.ts b/packages/backend/convex/custom/auth/providers/usesend.ts
index cdef531..c0b94aa 100644
--- a/packages/backend/convex/custom/auth/providers/usesend.ts
+++ b/packages/backend/convex/custom/auth/providers/usesend.ts
@@ -11,32 +11,35 @@ export default function UseSendProvider(config: EmailUserConfig): EmailConfig {
from: process.env.USESEND_FROM_EMAIL ?? 'noreply@example.com',
maxAge: 24 * 60 * 60, // 24 hours
- async generateVerificationToken() {
+ generateVerificationToken: () => {
const random: RandomReader = {
- read(bytes) {
- crypto.getRandomValues(bytes);
+ read: (bytes) => {
+ crypto.getRandomValues(bytes as Uint8Array);
},
};
return generateRandomString(random, alphabet('0-9'), 6);
},
- async sendVerificationRequest(params) {
+ sendVerificationRequest: async (params) => {
const { identifier: to, provider, url, token } = params;
// Derive a display name from the site URL, fallback to 'App'
const siteUrl = process.env.USESEND_FROM_EMAIL ?? '';
const appName = siteUrl.split('@')[1]?.split('.')[0] ?? 'App';
- const useSend = new UseSend(
- process.env.USESEND_API_KEY!,
- process.env.USESEND_URL!,
- );
+ const apiKey = process.env.USESEND_API_KEY;
+ const useSendUrl = process.env.USESEND_URL;
+ if (!apiKey || !useSendUrl) {
+ throw new Error('USESEND_API_KEY and USESEND_URL must be set.');
+ }
+
+ const useSend = new UseSend(apiKey, useSendUrl);
// For password reset, we want to send the code, not the magic link
const isPasswordReset =
- url.includes('reset') || provider.id?.includes('reset');
+ url.includes('reset') || provider.id.includes('reset');
const result = await useSend.emails.send({
- from: provider.from!,
+ from: provider.from ?? 'noreply@example.com',
to: [to],
subject: isPasswordReset
? `Reset your password - ${appName}`
diff --git a/packages/backend/convex/globals.d.ts b/packages/backend/convex/globals.d.ts
new file mode 100644
index 0000000..f6a3c33
--- /dev/null
+++ b/packages/backend/convex/globals.d.ts
@@ -0,0 +1,10 @@
+// Declare process.env for Convex backend environment variables.
+// Convex supports process.env to read variables set in the Convex Dashboard.
+declare const process: {
+ readonly env: {
+ readonly USESEND_API_KEY?: string;
+ readonly USESEND_URL?: string;
+ readonly USESEND_FROM_EMAIL?: string;
+ readonly [key: string]: string | undefined;
+ };
+};
diff --git a/packages/backend/convex/schema.ts b/packages/backend/convex/schema.ts
index 155a6d1..645f10d 100644
--- a/packages/backend/convex/schema.ts
+++ b/packages/backend/convex/schema.ts
@@ -18,6 +18,7 @@ const applicationTables = {
phoneVerificationTime: v.optional(v.number()),
isAnonymous: v.optional(v.boolean()),
/* Fields below here are custom & not defined in authTables */
+ isAdmin: v.optional(v.boolean()),
themePreference: v.optional(
v.union(v.literal('light'), v.literal('dark'), v.literal('system')),
),
diff --git a/packages/backend/convex/utils.ts b/packages/backend/convex/utils.ts
deleted file mode 100644
index 9e809ee..0000000
--- a/packages/backend/convex/utils.ts
+++ /dev/null
@@ -1,16 +0,0 @@
-export function missingEnvVariableUrl(envVarName: string, whereToGet: string) {
- const deployment = deploymentName();
- if (!deployment) return `Missing ${envVarName} in environment variables.`;
- return (
- `\n Missing ${envVarName} in environment variables.\n\n` +
- ` Get it from ${whereToGet} .\n Paste it on the Convex dashboard:\n` +
- ` https://dashboard.convex.dev/d/${deployment}/settings?var=${envVarName}`
- );
-}
-
-export function deploymentName() {
- const url = process.env.CONVEX_CLOUD_URL;
- if (!url) return undefined;
- const regex = new RegExp('https://(.+).convex.cloud');
- return regex.exec(url)?.[1];
-}
diff --git a/packages/backend/eslint.config.ts b/packages/backend/eslint.config.ts
new file mode 100644
index 0000000..78912ab
--- /dev/null
+++ b/packages/backend/eslint.config.ts
@@ -0,0 +1,10 @@
+import { defineConfig } from 'eslint/config';
+
+import { baseConfig } from '@gib/eslint-config/base';
+
+export default defineConfig(
+ {
+ ignores: ['convex/_generated/**', 'types/**', 'scripts/**', 'dist/**'],
+ },
+ baseConfig,
+);
diff --git a/packages/backend/package.json b/packages/backend/package.json
index 933b7a5..e5133f0 100644
--- a/packages/backend/package.json
+++ b/packages/backend/package.json
@@ -14,31 +14,40 @@
"scripts": {
"dev": "bun with-env convex dev",
"dev:tunnel": "bun with-env convex dev",
+ "dev:web": "bun with-env convex dev",
"setup": "bun with-env convex dev --until-success",
"clean": "git clean -xdf .cache .turbo dist node_modules",
"format": "prettier --check . --ignore-path ../../.gitignore",
"lint": "eslint --flag unstable_native_nodejs_ts_config",
"typecheck": "tsc --noEmit",
- "with-env": "dotenv -e ../../.env --"
+ "test:unit": "vitest run --project unit",
+ "test:integration": "vitest run --project integration --passWithNoTests",
+ "test:component": "vitest run --project component --passWithNoTests",
+ "with-env": "sh ../../scripts/with-env ${INFISICAL_ENV:-dev} --"
},
"dependencies": {
"@oslojs/crypto": "^1.0.1",
- "@react-email/components": "0.5.4",
- "@react-email/render": "^1.4.0",
+ "@react-email/components": "1.0.10",
+ "@react-email/render": "^2.0.4",
"convex": "catalog:convex",
"react": "catalog:react19",
"react-dom": "catalog:react19",
- "usesend-js": "^1.5.6",
+ "usesend-js": "^1.6.3",
"zod": "catalog:"
},
"devDependencies": {
+ "@edge-runtime/vm": "catalog:test",
"@gib/eslint-config": "workspace:*",
"@gib/prettier-config": "workspace:*",
"@gib/tsconfig": "workspace:*",
+ "@gib/vitest-config": "workspace:*",
+ "@types/node": "catalog:",
+ "convex-test": "catalog:test",
"eslint": "catalog:",
"prettier": "catalog:",
- "react-email": "4.2.11",
- "typescript": "catalog:"
+ "react-email": "5.2.10",
+ "typescript": "catalog:",
+ "vitest": "catalog:test"
},
"prettier": "@gib/prettier-config"
}
diff --git a/packages/backend/tests/unit/harness.test.ts b/packages/backend/tests/unit/harness.test.ts
new file mode 100644
index 0000000..4c15d04
--- /dev/null
+++ b/packages/backend/tests/unit/harness.test.ts
@@ -0,0 +1,13 @@
+import { convexTest } from 'convex-test';
+import { describe, expect, test } from 'vitest';
+
+import schema from '../../convex/schema';
+
+const modules = import.meta.glob('../../convex/**/*.*s');
+
+describe('convex-test harness', () => {
+ test('boots and executes against the project schema', async () => {
+ const t = convexTest(schema, modules);
+ expect(await t.run(() => Promise.resolve(42))).toBe(42);
+ });
+});
diff --git a/packages/backend/tests/vite-env.d.ts b/packages/backend/tests/vite-env.d.ts
new file mode 100644
index 0000000..11f02fe
--- /dev/null
+++ b/packages/backend/tests/vite-env.d.ts
@@ -0,0 +1 @@
+///
diff --git a/packages/backend/tsconfig.json b/packages/backend/tsconfig.json
new file mode 100644
index 0000000..f84c972
--- /dev/null
+++ b/packages/backend/tsconfig.json
@@ -0,0 +1,6 @@
+{
+ "extends": "@gib/tsconfig/base.json",
+ "compilerOptions": { "lib": ["ES2022", "DOM"], "types": ["node"] },
+ "include": ["tests", "vitest.config.ts"],
+ "exclude": ["node_modules", "convex/_generated"]
+}
diff --git a/packages/backend/vitest.config.ts b/packages/backend/vitest.config.ts
new file mode 100644
index 0000000..e6db8fd
--- /dev/null
+++ b/packages/backend/vitest.config.ts
@@ -0,0 +1,13 @@
+import { defineConfig } from 'vitest/config';
+
+import { convexProject, nodeProject } from '@gib/vitest-config';
+
+export default defineConfig({
+ test: {
+ projects: [
+ convexProject('unit', ['tests/unit/**/*.test.ts']),
+ convexProject('integration', ['tests/integration/**/*.test.ts']),
+ nodeProject('component', ['tests/component/**/*.test.{ts,tsx}']),
+ ],
+ },
+});
diff --git a/packages/ui/.cache/.eslintcache b/packages/ui/.cache/.eslintcache
index 073c60c..b367892 100644
--- a/packages/ui/.cache/.eslintcache
+++ b/packages/ui/.cache/.eslintcache
@@ -1 +1 @@
-[{"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/accordion.tsx":"1","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/alert-dialog.tsx":"2","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/alert.tsx":"3","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/aspect-ratio.tsx":"4","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/avatar.tsx":"5","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/badge.tsx":"6","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/based-avatar.tsx":"7","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/based-progress.tsx":"8","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/breadcrumb.tsx":"9","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/button-group.tsx":"10","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/button.tsx":"11","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/calendar.tsx":"12","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/card.tsx":"13","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/carousel.tsx":"14","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/chart.tsx":"15","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/checkbox.tsx":"16","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/collapsible.tsx":"17","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/combobox.tsx":"18","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/command.tsx":"19","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/context-menu.tsx":"20","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/dialog.tsx":"21","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/drawer.tsx":"22","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/dropdown-menu.tsx":"23","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/empty.tsx":"24","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/field.tsx":"25","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/form.tsx":"26","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/hooks/index.tsx":"27","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/hooks/use-mobile.ts":"28","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/hooks/use-on-click-outside.tsx":"29","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/hover-card.tsx":"30","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/image-crop.tsx":"31","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/index.tsx":"32","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/input-group.tsx":"33","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/input-otp.tsx":"34","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/input.tsx":"35","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/item.tsx":"36","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/kbd.tsx":"37","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/label.tsx":"38","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/menubar.tsx":"39","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/native-select.tsx":"40","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/navigation-menu.tsx":"41","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/pagination.tsx":"42","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/popover.tsx":"43","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/progress.tsx":"44","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/radio-group.tsx":"45","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/resizable.tsx":"46","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/scroll-area.tsx":"47","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/select.tsx":"48","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/separator.tsx":"49","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/sheet.tsx":"50","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/sidebar.tsx":"51","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/skeleton.tsx":"52","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/slider.tsx":"53","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/sonner.tsx":"54","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/spinner.tsx":"55","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/status-message.tsx":"56","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/submit-button.tsx":"57","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/switch.tsx":"58","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/table.tsx":"59","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/tabs.tsx":"60","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/textarea.tsx":"61","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/theme.tsx":"62","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/toggle-group.tsx":"63","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/toggle.tsx":"64","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/tooltip.tsx":"65"},{"size":2618,"mtime":1774544484670,"results":"66","hashOfConfig":"67"},{"size":5302,"mtime":1774544484831,"results":"68","hashOfConfig":"67"},{"size":2002,"mtime":1774544485001,"results":"69","hashOfConfig":"67"},{"size":273,"mtime":1774544485059,"results":"70","hashOfConfig":"67"},{"size":2764,"mtime":1774544485222,"results":"71","hashOfConfig":"67"},{"size":1833,"mtime":1774544470961,"results":"72","hashOfConfig":"67"},{"size":1738,"mtime":1773778628580,"results":"73","hashOfConfig":"67"},{"size":1372,"mtime":1773778628580,"results":"74","hashOfConfig":"67"},{"size":2238,"mtime":1774544485702,"results":"75","hashOfConfig":"67"},{"size":2297,"mtime":1774544485788,"results":"76","hashOfConfig":"67"},{"size":3380,"mtime":1774544470961,"results":"77","hashOfConfig":"67"},{"size":8444,"mtime":1774544470961,"results":"78","hashOfConfig":"67"},{"size":2462,"mtime":1774544486082,"results":"79","hashOfConfig":"67"},{"size":5758,"mtime":1774544486321,"results":"80","hashOfConfig":"67"},{"size":10055,"mtime":1774544486484,"results":"81","hashOfConfig":"67"},{"size":1359,"mtime":1774544486513,"results":"82","hashOfConfig":"67"},{"size":757,"mtime":1774544486533,"results":"83","hashOfConfig":"67"},{"size":8572,"mtime":1774544486634,"results":"84","hashOfConfig":"67"},{"size":4628,"mtime":1774544486715,"results":"85","hashOfConfig":"67"},{"size":8006,"mtime":1774544486782,"results":"86","hashOfConfig":"67"},{"size":3925,"mtime":1774544486830,"results":"87","hashOfConfig":"67"},{"size":4165,"mtime":1774544486870,"results":"88","hashOfConfig":"67"},{"size":8511,"mtime":1774544486927,"results":"89","hashOfConfig":"67"},{"size":2265,"mtime":1774544486964,"results":"90","hashOfConfig":"67"},{"size":5789,"mtime":1774544487028,"results":"91","hashOfConfig":"67"},{"size":3810,"mtime":1774544487072,"results":"92","hashOfConfig":"67"},{"size":104,"mtime":1774538639553,"results":"93","hashOfConfig":"67"},{"size":589,"mtime":1774544470961,"results":"94","hashOfConfig":"67"},{"size":1530,"mtime":1774544487137,"results":"95","hashOfConfig":"67"},{"size":1476,"mtime":1774544487157,"results":"96","hashOfConfig":"67"},{"size":10320,"mtime":1774544470962,"results":"97","hashOfConfig":"67"},{"size":7589,"mtime":1774538739012,"results":"98","hashOfConfig":"67"},{"size":4980,"mtime":1774544487352,"results":"99","hashOfConfig":"67"},{"size":2474,"mtime":1774544487380,"results":"100","hashOfConfig":"67"},{"size":950,"mtime":1774544487397,"results":"101","hashOfConfig":"67"},{"size":4575,"mtime":1774544487439,"results":"102","hashOfConfig":"67"},{"size":788,"mtime":1774544487458,"results":"103","hashOfConfig":"67"},{"size":585,"mtime":1774544487498,"results":"104","hashOfConfig":"67"},{"size":8040,"mtime":1774544487542,"results":"105","hashOfConfig":"67"},{"size":1788,"mtime":1774544487573,"results":"106","hashOfConfig":"67"},{"size":6420,"mtime":1774544487625,"results":"107","hashOfConfig":"67"},{"size":2667,"mtime":1774544487661,"results":"108","hashOfConfig":"67"},{"size":2261,"mtime":1774544487690,"results":"109","hashOfConfig":"67"},{"size":714,"mtime":1774544487711,"results":"110","hashOfConfig":"67"},{"size":1406,"mtime":1774544487730,"results":"111","hashOfConfig":"67"},{"size":1750,"mtime":1774544487757,"results":"112","hashOfConfig":"67"},{"size":1619,"mtime":1774544487784,"results":"113","hashOfConfig":"67"},{"size":6105,"mtime":1774544487823,"results":"114","hashOfConfig":"67"},{"size":675,"mtime":1774544487842,"results":"115","hashOfConfig":"67"},{"size":4013,"mtime":1774544487881,"results":"116","hashOfConfig":"67"},{"size":21264,"mtime":1774544488032,"results":"117","hashOfConfig":"67"},{"size":253,"mtime":1774544488045,"results":"118","hashOfConfig":"67"},{"size":2002,"mtime":1774544470962,"results":"119","hashOfConfig":"67"},{"size":1160,"mtime":1773938365512,"results":"120","hashOfConfig":"67"},{"size":307,"mtime":1774544488097,"results":"121","hashOfConfig":"67"},{"size":1619,"mtime":1773778628581,"results":"122","hashOfConfig":"67"},{"size":1192,"mtime":1773778628581,"results":"123","hashOfConfig":"67"},{"size":1712,"mtime":1774544488148,"results":"124","hashOfConfig":"67"},{"size":2176,"mtime":1774544488171,"results":"125","hashOfConfig":"67"},{"size":3435,"mtime":1774544488194,"results":"126","hashOfConfig":"67"},{"size":736,"mtime":1774544488211,"results":"127","hashOfConfig":"67"},{"size":1338,"mtime":1774544488228,"results":"128","hashOfConfig":"67"},{"size":2238,"mtime":1774544488249,"results":"129","hashOfConfig":"67"},{"size":1596,"mtime":1774544488268,"results":"130","hashOfConfig":"67"},{"size":1771,"mtime":1774544488284,"results":"131","hashOfConfig":"67"},{"filePath":"132","messages":"133","suppressedMessages":"134","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"ls4k5m",{"filePath":"135","messages":"136","suppressedMessages":"137","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"138","messages":"139","suppressedMessages":"140","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"141","messages":"142","suppressedMessages":"143","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"144","messages":"145","suppressedMessages":"146","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"147","messages":"148","suppressedMessages":"149","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"150","messages":"151","suppressedMessages":"152","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"153","messages":"154","suppressedMessages":"155","errorCount":1,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"156","messages":"157","suppressedMessages":"158","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"159","messages":"160","suppressedMessages":"161","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"162","messages":"163","suppressedMessages":"164","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"165","messages":"166","suppressedMessages":"167","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"168","messages":"169","suppressedMessages":"170","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"171","messages":"172","suppressedMessages":"173","errorCount":2,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"174","messages":"175","suppressedMessages":"176","errorCount":59,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"177","messages":"178","suppressedMessages":"179","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"180","messages":"181","suppressedMessages":"182","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"183","messages":"184","suppressedMessages":"185","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"186","messages":"187","suppressedMessages":"188","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"189","messages":"190","suppressedMessages":"191","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"192","messages":"193","suppressedMessages":"194","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"195","messages":"196","suppressedMessages":"197","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"198","messages":"199","suppressedMessages":"200","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"201","messages":"202","suppressedMessages":"203","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"204","messages":"205","suppressedMessages":"206","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"207","messages":"208","suppressedMessages":"209","errorCount":2,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"210","messages":"211","suppressedMessages":"212","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"213","messages":"214","suppressedMessages":"215","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"216","messages":"217","suppressedMessages":"218","errorCount":2,"fatalErrorCount":0,"warningCount":2,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"219","messages":"220","suppressedMessages":"221","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"222","messages":"223","suppressedMessages":"224","errorCount":8,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"225","messages":"226","suppressedMessages":"227","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"228","messages":"229","suppressedMessages":"230","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"231","messages":"232","suppressedMessages":"233","errorCount":1,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"234","messages":"235","suppressedMessages":"236","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"237","messages":"238","suppressedMessages":"239","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"240","messages":"241","suppressedMessages":"242","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"243","messages":"244","suppressedMessages":"245","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"246","messages":"247","suppressedMessages":"248","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"249","messages":"250","suppressedMessages":"251","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"252","messages":"253","suppressedMessages":"254","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"255","messages":"256","suppressedMessages":"257","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"258","messages":"259","suppressedMessages":"260","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"261","messages":"262","suppressedMessages":"263","errorCount":1,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"264","messages":"265","suppressedMessages":"266","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"267","messages":"268","suppressedMessages":"269","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"270","messages":"271","suppressedMessages":"272","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"273","messages":"274","suppressedMessages":"275","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"276","messages":"277","suppressedMessages":"278","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"279","messages":"280","suppressedMessages":"281","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"282","messages":"283","suppressedMessages":"284","errorCount":1,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"285","messages":"286","suppressedMessages":"287","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"288","messages":"289","suppressedMessages":"290","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"291","messages":"292","suppressedMessages":"293","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"294","messages":"295","suppressedMessages":"296","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"297","messages":"298","suppressedMessages":"299","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"300","messages":"301","suppressedMessages":"302","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"303","messages":"304","suppressedMessages":"305","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"306","messages":"307","suppressedMessages":"308","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"309","messages":"310","suppressedMessages":"311","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"312","messages":"313","suppressedMessages":"314","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"315","messages":"316","suppressedMessages":"317","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"318","messages":"319","suppressedMessages":"320","errorCount":4,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"321","messages":"322","suppressedMessages":"323","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"324","messages":"325","suppressedMessages":"326","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/accordion.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/alert-dialog.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/alert.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/aspect-ratio.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/avatar.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/badge.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/based-avatar.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/based-progress.tsx",["327"],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/breadcrumb.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/button-group.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/button.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/calendar.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/card.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/carousel.tsx",["328","329"],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/chart.tsx",["330","331","332","333","334","335","336","337","338","339","340","341","342","343","344","345","346","347","348","349","350","351","352","353","354","355","356","357","358","359","360","361","362","363","364","365","366","367","368","369","370","371","372","373","374","375","376","377","378","379","380","381","382","383","384","385","386","387","388"],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/checkbox.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/collapsible.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/combobox.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/command.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/context-menu.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/dialog.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/drawer.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/dropdown-menu.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/empty.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/field.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/form.tsx",["389","390"],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/hooks/index.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/hooks/use-mobile.ts",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/hooks/use-on-click-outside.tsx",["391","392","393","394"],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/hover-card.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/image-crop.tsx",["395","396","397","398","399","400","401","402"],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/index.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/input-group.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/input-otp.tsx",["403"],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/input.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/item.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/kbd.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/label.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/menubar.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/native-select.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/navigation-menu.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/pagination.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/popover.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/progress.tsx",["404"],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/radio-group.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/resizable.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/scroll-area.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/select.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/separator.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/sheet.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/sidebar.tsx",["405"],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/skeleton.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/slider.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/sonner.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/spinner.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/status-message.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/submit-button.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/switch.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/table.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/tabs.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/textarea.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/theme.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/toggle-group.tsx",["406","407","408","409"],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/toggle.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/tooltip.tsx",[],[],{"ruleId":"410","severity":2,"message":"411","line":48,"column":51,"nodeType":"412","messageId":"413","endLine":48,"endColumn":59},{"ruleId":"410","severity":2,"message":"414","line":101,"column":10,"nodeType":"415","messageId":"416","endLine":101,"endColumn":12,"suggestions":"417"},{"ruleId":"410","severity":2,"message":"418","line":112,"column":11,"nodeType":"412","messageId":"419","endLine":112,"endColumn":22},{"ruleId":"420","severity":2,"message":"421","line":51,"column":31,"nodeType":"422","messageId":"423","endLine":51,"endColumn":33,"suggestions":"424"},{"ruleId":"420","severity":2,"message":"421","line":75,"column":34,"nodeType":"422","messageId":"423","endLine":75,"endColumn":36,"suggestions":"425"},{"ruleId":"420","severity":2,"message":"421","line":92,"column":66,"nodeType":"422","messageId":"423","endLine":92,"endColumn":68,"suggestions":"426"},{"ruleId":"427","severity":2,"message":"428","line":133,"column":32,"nodeType":"412","messageId":"429","endLine":133,"endColumn":38},{"ruleId":"430","severity":2,"message":"431","line":137,"column":11,"nodeType":"432","messageId":"433","endLine":137,"endColumn":27},{"ruleId":"420","severity":2,"message":"421","line":138,"column":29,"nodeType":"422","messageId":"423","endLine":138,"endColumn":31,"suggestions":"434"},{"ruleId":"427","severity":2,"message":"435","line":138,"column":38,"nodeType":"412","messageId":"429","endLine":138,"endColumn":45},{"ruleId":"420","severity":2,"message":"421","line":138,"column":46,"nodeType":"422","messageId":"423","endLine":138,"endColumn":48,"suggestions":"436"},{"ruleId":"427","severity":2,"message":"437","line":138,"column":55,"nodeType":"412","messageId":"429","endLine":138,"endColumn":59},{"ruleId":"420","severity":2,"message":"421","line":138,"column":60,"nodeType":"422","messageId":"423","endLine":138,"endColumn":62,"suggestions":"438"},{"ruleId":"420","severity":2,"message":"421","line":142,"column":32,"nodeType":"422","messageId":"423","endLine":142,"endColumn":34,"suggestions":"439"},{"ruleId":"440","severity":2,"message":"441","line":148,"column":34,"nodeType":"412","messageId":"442","endLine":148,"endColumn":41},{"ruleId":"427","severity":2,"message":"428","line":168,"column":28,"nodeType":"412","messageId":"429","endLine":168,"endColumn":34},{"ruleId":"427","severity":2,"message":"428","line":172,"column":29,"nodeType":"412","messageId":"429","endLine":172,"endColumn":35},{"ruleId":"443","severity":2,"message":"444","line":183,"column":10,"nodeType":"415","messageId":"445","endLine":185,"endColumn":15},{"ruleId":"443","severity":2,"message":"444","line":183,"column":10,"nodeType":"415","messageId":"445","endLine":184,"endColumn":18},{"ruleId":"427","severity":2,"message":"446","line":184,"column":12,"nodeType":"412","messageId":"429","endLine":184,"endColumn":18},{"ruleId":"427","severity":2,"message":"447","line":184,"column":34,"nodeType":"412","messageId":"429","endLine":184,"endColumn":38},{"ruleId":"427","severity":2,"message":"448","line":185,"column":12,"nodeType":"412","messageId":"429","endLine":185,"endColumn":15},{"ruleId":"420","severity":2,"message":"421","line":186,"column":36,"nodeType":"422","messageId":"423","endLine":186,"endColumn":38,"suggestions":"449"},{"ruleId":"427","severity":2,"message":"450","line":186,"column":44,"nodeType":"412","messageId":"429","endLine":186,"endColumn":48},{"ruleId":"420","severity":2,"message":"421","line":186,"column":49,"nodeType":"422","messageId":"423","endLine":186,"endColumn":51,"suggestions":"451"},{"ruleId":"427","severity":2,"message":"452","line":186,"column":57,"nodeType":"412","messageId":"429","endLine":186,"endColumn":64},{"ruleId":"420","severity":2,"message":"421","line":186,"column":65,"nodeType":"422","messageId":"423","endLine":186,"endColumn":67,"suggestions":"453"},{"ruleId":"430","severity":2,"message":"454","line":188,"column":19,"nodeType":"432","messageId":"433","endLine":188,"endColumn":76},{"ruleId":"420","severity":2,"message":"421","line":188,"column":42,"nodeType":"422","messageId":"423","endLine":188,"endColumn":44,"suggestions":"455"},{"ruleId":"427","severity":2,"message":"456","line":188,"column":50,"nodeType":"412","messageId":"429","endLine":188,"endColumn":57},{"ruleId":"420","severity":2,"message":"421","line":188,"column":63,"nodeType":"422","messageId":"423","endLine":188,"endColumn":65,"suggestions":"457"},{"ruleId":"427","severity":2,"message":"458","line":188,"column":71,"nodeType":"412","messageId":"429","endLine":188,"endColumn":76},{"ruleId":"430","severity":2,"message":"454","line":192,"column":22,"nodeType":"415","messageId":"433","endLine":192,"endColumn":34},{"ruleId":"427","severity":2,"message":"452","line":192,"column":27,"nodeType":"412","messageId":"429","endLine":192,"endColumn":34},{"ruleId":"427","severity":2,"message":"459","line":198,"column":37,"nodeType":"412","messageId":"429","endLine":198,"endColumn":42},{"ruleId":"427","severity":2,"message":"450","line":198,"column":65,"nodeType":"412","messageId":"429","endLine":198,"endColumn":69},{"ruleId":"440","severity":2,"message":"460","line":199,"column":29,"nodeType":"415","messageId":"442","endLine":199,"endColumn":39},{"ruleId":"427","severity":2,"message":"459","line":199,"column":34,"nodeType":"412","messageId":"429","endLine":199,"endColumn":39},{"ruleId":"440","severity":2,"message":"461","line":199,"column":41,"nodeType":"415","messageId":"442","endLine":199,"endColumn":50},{"ruleId":"427","severity":2,"message":"450","line":199,"column":46,"nodeType":"412","messageId":"429","endLine":199,"endColumn":50},{"ruleId":"440","severity":2,"message":"462","line":199,"column":52,"nodeType":"412","messageId":"442","endLine":199,"endColumn":56},{"ruleId":"440","severity":2,"message":"463","line":199,"column":58,"nodeType":"412","messageId":"442","endLine":199,"endColumn":63},{"ruleId":"440","severity":2,"message":"464","line":199,"column":65,"nodeType":"415","messageId":"442","endLine":199,"endColumn":77},{"ruleId":"427","severity":2,"message":"456","line":199,"column":70,"nodeType":"412","messageId":"429","endLine":199,"endColumn":77},{"ruleId":"430","severity":2,"message":"454","line":219,"column":31,"nodeType":"465","messageId":"433","endLine":219,"endColumn":59},{"ruleId":"430","severity":2,"message":"454","line":220,"column":31,"nodeType":"465","messageId":"433","endLine":220,"endColumn":63},{"ruleId":"420","severity":2,"message":"421","line":235,"column":46,"nodeType":"422","messageId":"423","endLine":235,"endColumn":48,"suggestions":"466"},{"ruleId":"427","severity":2,"message":"450","line":235,"column":54,"nodeType":"412","messageId":"429","endLine":235,"endColumn":58},{"ruleId":"427","severity":2,"message":"459","line":238,"column":29,"nodeType":"412","messageId":"429","endLine":238,"endColumn":34},{"ruleId":"443","severity":2,"message":"467","line":240,"column":28,"nodeType":"415","messageId":"445","endLine":240,"endColumn":53},{"ruleId":"427","severity":2,"message":"459","line":240,"column":33,"nodeType":"412","messageId":"429","endLine":240,"endColumn":38},{"ruleId":"443","severity":2,"message":"444","line":281,"column":8,"nodeType":"415","messageId":"445","endLine":283,"endColumn":13},{"ruleId":"443","severity":2,"message":"444","line":281,"column":8,"nodeType":"415","messageId":"445","endLine":282,"endColumn":16},{"ruleId":"427","severity":2,"message":"447","line":282,"column":32,"nodeType":"412","messageId":"429","endLine":282,"endColumn":36},{"ruleId":"427","severity":2,"message":"448","line":283,"column":10,"nodeType":"412","messageId":"429","endLine":283,"endColumn":13},{"ruleId":"420","severity":2,"message":"421","line":284,"column":34,"nodeType":"422","messageId":"423","endLine":284,"endColumn":36,"suggestions":"468"},{"ruleId":"427","severity":2,"message":"452","line":284,"column":42,"nodeType":"412","messageId":"429","endLine":284,"endColumn":49},{"ruleId":"420","severity":2,"message":"421","line":284,"column":50,"nodeType":"422","messageId":"423","endLine":284,"endColumn":52,"suggestions":"469"},{"ruleId":"430","severity":2,"message":"454","line":289,"column":20,"nodeType":"415","messageId":"433","endLine":289,"endColumn":30},{"ruleId":"427","severity":2,"message":"459","line":289,"column":25,"nodeType":"412","messageId":"429","endLine":289,"endColumn":30},{"ruleId":"430","severity":2,"message":"454","line":300,"column":21,"nodeType":"465","messageId":"433","endLine":300,"endColumn":48},{"ruleId":"427","severity":2,"message":"458","line":300,"column":43,"nodeType":"412","messageId":"429","endLine":300,"endColumn":48},{"ruleId":"410","severity":2,"message":"470","line":49,"column":7,"nodeType":"471","messageId":"472","endLine":49,"endColumn":20},{"ruleId":"410","severity":2,"message":"414","line":141,"column":36,"nodeType":"415","messageId":"416","endLine":141,"endColumn":38,"suggestions":"473"},{"ruleId":"474","severity":1,"message":"475","line":2,"column":10,"nodeType":null,"messageId":"476","endLine":2,"endColumn":27},{"ruleId":"474","severity":1,"message":"477","line":2,"column":29,"nodeType":null,"messageId":"476","endLine":2,"endColumn":30},{"ruleId":"443","severity":2,"message":"444","line":36,"column":41,"nodeType":"415","messageId":"445","endLine":36,"endColumn":59},{"ruleId":"443","severity":2,"message":"444","line":37,"column":27,"nodeType":"415","messageId":"445","endLine":37,"endColumn":47},{"ruleId":"478","severity":2,"message":"479","line":156,"column":17,"nodeType":"415","messageId":"480","endLine":156,"endColumn":30},{"ruleId":"420","severity":2,"message":"421","line":156,"column":43,"nodeType":"422","messageId":"423","endLine":156,"endColumn":45,"suggestions":"481"},{"ruleId":"482","severity":2,"message":"483","line":179,"column":5,"nodeType":"484","messageId":"485","endLine":179,"endColumn":7,"suggestions":"486"},{"ruleId":"487","severity":2,"message":"488","line":296,"column":54,"nodeType":"489","messageId":"490","endLine":296,"endColumn":57,"suggestions":"491"},{"ruleId":"487","severity":2,"message":"488","line":307,"column":21,"nodeType":"489","messageId":"490","endLine":307,"endColumn":24,"suggestions":"492"},{"ruleId":"487","severity":2,"message":"488","line":333,"column":54,"nodeType":"489","messageId":"490","endLine":333,"endColumn":57,"suggestions":"493"},{"ruleId":"487","severity":2,"message":"488","line":344,"column":21,"nodeType":"489","messageId":"490","endLine":344,"endColumn":24,"suggestions":"494"},{"ruleId":"487","severity":2,"message":"488","line":375,"column":19,"nodeType":"489","messageId":"490","endLine":375,"endColumn":22,"suggestions":"495"},{"ruleId":"410","severity":2,"message":"414","line":50,"column":59,"nodeType":"415","messageId":"416","endLine":50,"endColumn":61,"suggestions":"496"},{"ruleId":"420","severity":2,"message":"421","line":24,"column":55,"nodeType":"422","messageId":"423","endLine":24,"endColumn":57,"suggestions":"497"},{"ruleId":"498","severity":2,"message":"499","line":606,"column":26,"nodeType":null,"endLine":606,"endColumn":39},{"ruleId":"420","severity":2,"message":"421","line":61,"column":37,"nodeType":"422","messageId":"423","endLine":61,"endColumn":39,"suggestions":"500"},{"ruleId":"420","severity":2,"message":"421","line":62,"column":31,"nodeType":"422","messageId":"423","endLine":62,"endColumn":33,"suggestions":"501"},{"ruleId":"420","severity":2,"message":"421","line":66,"column":36,"nodeType":"422","messageId":"423","endLine":66,"endColumn":38,"suggestions":"502"},{"ruleId":"420","severity":2,"message":"421","line":67,"column":30,"nodeType":"422","messageId":"423","endLine":67,"endColumn":32,"suggestions":"503"},"@typescript-eslint/no-unnecessary-condition","Unnecessary conditional, expected left-hand side of `??` operator to be possibly null or undefined.","Identifier","neverNullish","Unnecessary optional chain on a non-nullish value.","MemberExpression","neverOptionalChain",["504"],"Unnecessary conditional, value is always truthy.","alwaysTruthy","@typescript-eslint/prefer-nullish-coalescing","Prefer using nullish coalescing operator (`??`) instead of a logical or (`||`), as it is a safer operator.","Punctuator","preferNullishOverOr",["505"],["506"],["507"],"@typescript-eslint/no-unsafe-member-access","Unsafe member access .length on an `error` typed value.","unsafeMemberExpression","@typescript-eslint/no-unsafe-assignment","Unsafe assignment of an error typed value.","VariableDeclarator","anyAssignment",["508"],"Unsafe member access .dataKey on an `error` typed value.",["509"],"Unsafe member access .name on an `error` typed value.",["510"],["511"],"@typescript-eslint/no-unsafe-argument","Unsafe argument of type error typed assigned to a parameter of type `readonly Payload[]`.","unsafeArgument","@typescript-eslint/no-unsafe-call","Unsafe call of a(n) `error` type typed value.","unsafeCall","Unsafe member access .filter on an `error` typed value.","Unsafe member access .type on an `any` value.","Unsafe member access .map on an `error` typed value.",["512"],"Unsafe member access .name on an `any` value.",["513"],"Unsafe member access .dataKey on an `any` value.",["514"],"Unsafe assignment of an `any` value.",["515"],"Unsafe member access .payload on an `any` value.",["516"],"Unsafe member access .color on an `any` value.","Unsafe member access .value on an `any` value.","Unsafe argument of type `any` assigned to a parameter of type `ValueType | undefined`.","Unsafe argument of type `any` assigned to a parameter of type `NameType | undefined`.","Unsafe argument of type `any` assigned to a parameter of type `Payload`.","Unsafe argument of type `any` assigned to a parameter of type `number`.","Unsafe argument of type `any` assigned to a parameter of type `readonly Payload[]`.","Property",["517"],"Unsafe call of a(n) `any` typed value.",["518"],["519"],"Unnecessary conditional, value is always falsy.","UnaryExpression","alwaysFalsy",["520"],"@typescript-eslint/no-unused-vars","'MousePointerClick' is defined but never used. Allowed unused vars must match /^_/u.","unusedVar","'X' is defined but never used. Allowed unused vars must match /^_/u.","@typescript-eslint/no-base-to-string","'reader.result' may use Object's default stringification format ('[object Object]') when stringified.","baseToString",["521"],"@typescript-eslint/require-await","Async arrow function 'handleComplete' has no 'await' expression.","ArrowFunctionExpression","missingAwait",["522"],"@typescript-eslint/no-explicit-any","Unexpected any. Specify a different type.","TSAnyKeyword","unexpectedAny",["523","524"],["525","526"],["527","528"],["529","530"],["531","532"],["533"],["534"],"react-hooks/purity","Error: Cannot call impure function during render\n\n`Math.random` is an impure function. Calling an impure function can produce unstable results that update unpredictably when the component happens to re-render. (https://react.dev/reference/rules/components-and-hooks-must-be-pure#components-and-hooks-must-be-idempotent).\n\n/home/gib/Documents/Code/convex-monorepo/packages/ui/src/sidebar.tsx:606:26\n 604 | // Random width between 50 to 90%.\n 605 | const width = React.useMemo(() => {\n> 606 | return `${Math.floor(Math.random() * 40) + 50}%`;\n | ^^^^^^^^^^^^^ Cannot call impure function\n 607 | }, []);\n 608 |\n 609 | return (",["535"],["536"],["537"],["538"],{"messageId":"539","fix":"540","desc":"541"},{"messageId":"542","data":"543","fix":"544","desc":"545"},{"messageId":"542","data":"546","fix":"547","desc":"545"},{"messageId":"542","data":"548","fix":"549","desc":"545"},{"messageId":"542","data":"550","fix":"551","desc":"545"},{"messageId":"542","data":"552","fix":"553","desc":"545"},{"messageId":"542","data":"554","fix":"555","desc":"545"},{"messageId":"542","data":"556","fix":"557","desc":"545"},{"messageId":"542","data":"558","fix":"559","desc":"545"},{"messageId":"542","data":"560","fix":"561","desc":"545"},{"messageId":"542","data":"562","fix":"563","desc":"545"},{"messageId":"542","data":"564","fix":"565","desc":"545"},{"messageId":"542","data":"566","fix":"567","desc":"545"},{"messageId":"542","data":"568","fix":"569","desc":"545"},{"messageId":"542","data":"570","fix":"571","desc":"545"},{"messageId":"542","data":"572","fix":"573","desc":"545"},{"messageId":"539","fix":"574","desc":"541"},{"messageId":"542","data":"575","fix":"576","desc":"545"},{"messageId":"577","fix":"578","desc":"579"},{"messageId":"580","fix":"581","desc":"582"},{"messageId":"583","fix":"584","desc":"585"},{"messageId":"580","fix":"586","desc":"582"},{"messageId":"583","fix":"587","desc":"585"},{"messageId":"580","fix":"588","desc":"582"},{"messageId":"583","fix":"589","desc":"585"},{"messageId":"580","fix":"590","desc":"582"},{"messageId":"583","fix":"591","desc":"585"},{"messageId":"580","fix":"592","desc":"582"},{"messageId":"583","fix":"593","desc":"585"},{"messageId":"539","fix":"594","desc":"541"},{"messageId":"542","data":"595","fix":"596","desc":"545"},{"messageId":"542","data":"597","fix":"598","desc":"545"},{"messageId":"542","data":"599","fix":"600","desc":"545"},{"messageId":"542","data":"601","fix":"602","desc":"545"},{"messageId":"542","data":"603","fix":"604","desc":"545"},"suggestRemoveOptionalChain",{"range":"605","text":"606"},"Remove unnecessary optional chain","suggestNullish",{"equals":"607"},{"range":"608","text":"609"},"Fix to nullish coalescing operator (`??`).",{"equals":"607"},{"range":"610","text":"609"},{"equals":"607"},{"range":"611","text":"609"},{"equals":"607"},{"range":"612","text":"613"},{"equals":"607"},{"range":"614","text":"615"},{"equals":"607"},{"range":"616","text":"609"},{"equals":"607"},{"range":"617","text":"609"},{"equals":"607"},{"range":"618","text":"619"},{"equals":"607"},{"range":"620","text":"621"},{"equals":"607"},{"range":"622","text":"609"},{"equals":"607"},{"range":"623","text":"624"},{"equals":"607"},{"range":"625","text":"609"},{"equals":"607"},{"range":"626","text":"609"},{"equals":"607"},{"range":"627","text":"628"},{"equals":"607"},{"range":"629","text":"609"},{"range":"630","text":"606"},{"equals":"607"},{"range":"631","text":"609"},"removeAsync",{"range":"632","text":"607"},"Remove 'async'.","suggestUnknown",{"range":"633","text":"634"},"Use `unknown` instead, this will force you to explicitly, and safely assert the type is correct.","suggestNever",{"range":"635","text":"636"},"Use `never` instead, this is useful when instantiating generic type parameters that you don't need to know the type of.",{"range":"637","text":"634"},{"range":"638","text":"636"},{"range":"639","text":"634"},{"range":"640","text":"636"},{"range":"641","text":"634"},{"range":"642","text":"636"},{"range":"643","text":"634"},{"range":"644","text":"636"},{"range":"645","text":"606"},{"equals":"607"},{"range":"646","text":"609"},{"equals":"607"},{"range":"647","text":"609"},{"equals":"607"},{"range":"648","text":"609"},{"equals":"607"},{"range":"649","text":"609"},{"equals":"607"},{"range":"650","text":"609"},[2578,2580],".","",[1088,1090],"??",[2394,2396],[2773,2775],[3652,3677],"(labelKey ?? item?.dataKey)",[3664,3691],"(item?.dataKey ?? item?.name)",[3692,3694],[3871,3873],[4857,4877],"(nameKey ?? item.name)",[4868,4893],"(item.name ?? item.dataKey)",[4894,4896],[5022,5048],"(color ?? item.payload.fill)",[5049,5051],[7130,7132],[8293,8316],"(nameKey ?? item.dataKey)",[8317,8319],[3426,3428],[3924,3926],[4466,4472],[6783,6786],"unknown",[6783,6786],"never",[6951,6954],[6951,6954],[7468,7471],[7468,7471],[7636,7639],[7636,7639],[8277,8280],[8277,8280],[1202,1204],[641,643],[1539,1541],[1581,1583],[1708,1710],[1749,1751]]
\ No newline at end of file
+[{"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/accordion.tsx":"1","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/alert-dialog.tsx":"2","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/alert.tsx":"3","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/aspect-ratio.tsx":"4","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/avatar.tsx":"5","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/badge.tsx":"6","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/based-avatar.tsx":"7","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/based-progress.tsx":"8","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/breadcrumb.tsx":"9","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/button-group.tsx":"10","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/button.tsx":"11","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/calendar.tsx":"12","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/card.tsx":"13","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/carousel.tsx":"14","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/chart.tsx":"15","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/checkbox.tsx":"16","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/collapsible.tsx":"17","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/combobox.tsx":"18","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/command.tsx":"19","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/context-menu.tsx":"20","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/css.d.ts":"21","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/dialog.tsx":"22","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/drawer.tsx":"23","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/dropdown-menu.tsx":"24","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/empty.tsx":"25","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/field.tsx":"26","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/form.tsx":"27","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/hooks/index.tsx":"28","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/hooks/use-mobile.ts":"29","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/hooks/use-on-click-outside.tsx":"30","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/hover-card.tsx":"31","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/image-crop.tsx":"32","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/index.tsx":"33","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/input-group.tsx":"34","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/input-otp.tsx":"35","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/input.tsx":"36","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/item.tsx":"37","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/kbd.tsx":"38","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/label.tsx":"39","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/menubar.tsx":"40","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/native-select.tsx":"41","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/navigation-menu.tsx":"42","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/pagination.tsx":"43","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/popover.tsx":"44","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/progress.tsx":"45","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/radio-group.tsx":"46","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/resizable.tsx":"47","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/scroll-area.tsx":"48","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/select.tsx":"49","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/separator.tsx":"50","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/sheet.tsx":"51","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/sidebar.tsx":"52","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/skeleton.tsx":"53","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/slider.tsx":"54","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/sonner.tsx":"55","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/spinner.tsx":"56","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/status-message.tsx":"57","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/submit-button.tsx":"58","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/switch.tsx":"59","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/table.tsx":"60","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/tabs.tsx":"61","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/textarea.tsx":"62","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/theme.tsx":"63","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/toggle-group.tsx":"64","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/toggle.tsx":"65","/home/gib/Documents/Code/convex-monorepo/packages/ui/src/tooltip.tsx":"66","/home/gib/Documents/Code/convex-monorepo/packages/ui/tests/component/button.test.tsx":"67","/home/gib/Documents/Code/convex-monorepo/packages/ui/tests/jest-dom.d.ts":"68","/home/gib/Documents/Code/Spoon/packages/ui/src/accordion.tsx":"69","/home/gib/Documents/Code/Spoon/packages/ui/src/alert-dialog.tsx":"70","/home/gib/Documents/Code/Spoon/packages/ui/src/alert.tsx":"71","/home/gib/Documents/Code/Spoon/packages/ui/src/aspect-ratio.tsx":"72","/home/gib/Documents/Code/Spoon/packages/ui/src/avatar.tsx":"73","/home/gib/Documents/Code/Spoon/packages/ui/src/badge.tsx":"74","/home/gib/Documents/Code/Spoon/packages/ui/src/based-avatar.tsx":"75","/home/gib/Documents/Code/Spoon/packages/ui/src/based-progress.tsx":"76","/home/gib/Documents/Code/Spoon/packages/ui/src/breadcrumb.tsx":"77","/home/gib/Documents/Code/Spoon/packages/ui/src/button-group.tsx":"78","/home/gib/Documents/Code/Spoon/packages/ui/src/button.tsx":"79","/home/gib/Documents/Code/Spoon/packages/ui/src/calendar.tsx":"80","/home/gib/Documents/Code/Spoon/packages/ui/src/card.tsx":"81","/home/gib/Documents/Code/Spoon/packages/ui/src/carousel.tsx":"82","/home/gib/Documents/Code/Spoon/packages/ui/src/chart.tsx":"83","/home/gib/Documents/Code/Spoon/packages/ui/src/checkbox.tsx":"84","/home/gib/Documents/Code/Spoon/packages/ui/src/collapsible.tsx":"85","/home/gib/Documents/Code/Spoon/packages/ui/src/combobox.tsx":"86","/home/gib/Documents/Code/Spoon/packages/ui/src/command.tsx":"87","/home/gib/Documents/Code/Spoon/packages/ui/src/context-menu.tsx":"88","/home/gib/Documents/Code/Spoon/packages/ui/src/css.d.ts":"89","/home/gib/Documents/Code/Spoon/packages/ui/src/dialog.tsx":"90","/home/gib/Documents/Code/Spoon/packages/ui/src/drawer.tsx":"91","/home/gib/Documents/Code/Spoon/packages/ui/src/dropdown-menu.tsx":"92","/home/gib/Documents/Code/Spoon/packages/ui/src/empty.tsx":"93","/home/gib/Documents/Code/Spoon/packages/ui/src/field.tsx":"94","/home/gib/Documents/Code/Spoon/packages/ui/src/form.tsx":"95","/home/gib/Documents/Code/Spoon/packages/ui/src/hooks/index.tsx":"96","/home/gib/Documents/Code/Spoon/packages/ui/src/hooks/use-mobile.ts":"97","/home/gib/Documents/Code/Spoon/packages/ui/src/hooks/use-on-click-outside.tsx":"98","/home/gib/Documents/Code/Spoon/packages/ui/src/hover-card.tsx":"99","/home/gib/Documents/Code/Spoon/packages/ui/src/image-crop.tsx":"100","/home/gib/Documents/Code/Spoon/packages/ui/src/index.tsx":"101","/home/gib/Documents/Code/Spoon/packages/ui/src/input-group.tsx":"102","/home/gib/Documents/Code/Spoon/packages/ui/src/input-otp.tsx":"103","/home/gib/Documents/Code/Spoon/packages/ui/src/input.tsx":"104","/home/gib/Documents/Code/Spoon/packages/ui/src/item.tsx":"105","/home/gib/Documents/Code/Spoon/packages/ui/src/kbd.tsx":"106","/home/gib/Documents/Code/Spoon/packages/ui/src/label.tsx":"107","/home/gib/Documents/Code/Spoon/packages/ui/src/menubar.tsx":"108","/home/gib/Documents/Code/Spoon/packages/ui/src/native-select.tsx":"109","/home/gib/Documents/Code/Spoon/packages/ui/src/navigation-menu.tsx":"110","/home/gib/Documents/Code/Spoon/packages/ui/src/pagination.tsx":"111","/home/gib/Documents/Code/Spoon/packages/ui/src/popover.tsx":"112","/home/gib/Documents/Code/Spoon/packages/ui/src/progress.tsx":"113","/home/gib/Documents/Code/Spoon/packages/ui/src/radio-group.tsx":"114","/home/gib/Documents/Code/Spoon/packages/ui/src/resizable.tsx":"115","/home/gib/Documents/Code/Spoon/packages/ui/src/scroll-area.tsx":"116","/home/gib/Documents/Code/Spoon/packages/ui/src/select.tsx":"117","/home/gib/Documents/Code/Spoon/packages/ui/src/separator.tsx":"118","/home/gib/Documents/Code/Spoon/packages/ui/src/sheet.tsx":"119","/home/gib/Documents/Code/Spoon/packages/ui/src/sidebar.tsx":"120","/home/gib/Documents/Code/Spoon/packages/ui/src/skeleton.tsx":"121","/home/gib/Documents/Code/Spoon/packages/ui/src/slider.tsx":"122","/home/gib/Documents/Code/Spoon/packages/ui/src/sonner.tsx":"123","/home/gib/Documents/Code/Spoon/packages/ui/src/spinner.tsx":"124","/home/gib/Documents/Code/Spoon/packages/ui/src/status-message.tsx":"125","/home/gib/Documents/Code/Spoon/packages/ui/src/submit-button.tsx":"126","/home/gib/Documents/Code/Spoon/packages/ui/src/switch.tsx":"127","/home/gib/Documents/Code/Spoon/packages/ui/src/table.tsx":"128","/home/gib/Documents/Code/Spoon/packages/ui/src/tabs.tsx":"129","/home/gib/Documents/Code/Spoon/packages/ui/src/textarea.tsx":"130","/home/gib/Documents/Code/Spoon/packages/ui/src/theme.tsx":"131","/home/gib/Documents/Code/Spoon/packages/ui/src/toggle-group.tsx":"132","/home/gib/Documents/Code/Spoon/packages/ui/src/toggle.tsx":"133","/home/gib/Documents/Code/Spoon/packages/ui/src/tooltip.tsx":"134","/home/gib/Documents/Code/Spoon/packages/ui/tests/component/button.test.tsx":"135","/home/gib/Documents/Code/Spoon/packages/ui/tests/jest-dom.d.ts":"136"},{"size":2618,"mtime":1774546669454,"results":"137","hashOfConfig":"138"},{"size":5302,"mtime":1774546669454,"results":"139","hashOfConfig":"138"},{"size":2002,"mtime":1774546669454,"results":"140","hashOfConfig":"138"},{"size":273,"mtime":1774546669455,"results":"141","hashOfConfig":"138"},{"size":2764,"mtime":1774546669455,"results":"142","hashOfConfig":"138"},{"size":1833,"mtime":1774546669455,"results":"143","hashOfConfig":"138"},{"size":1745,"mtime":1774589278255,"results":"144","hashOfConfig":"138"},{"size":1365,"mtime":1782065185636,"results":"145","hashOfConfig":"138"},{"size":2238,"mtime":1774546669455,"results":"146","hashOfConfig":"138"},{"size":2297,"mtime":1774546669455,"results":"147","hashOfConfig":"138"},{"size":3380,"mtime":1774546669455,"results":"148","hashOfConfig":"138"},{"size":8444,"mtime":1774546669455,"results":"149","hashOfConfig":"138"},{"size":2462,"mtime":1774546669455,"results":"150","hashOfConfig":"138"},{"size":5695,"mtime":1774718094545,"results":"151","hashOfConfig":"138"},{"size":10626,"mtime":1782065185637,"results":"152","hashOfConfig":"138"},{"size":1359,"mtime":1774546669456,"results":"153","hashOfConfig":"138"},{"size":757,"mtime":1774546669456,"results":"154","hashOfConfig":"138"},{"size":8628,"mtime":1782065185637,"results":"155","hashOfConfig":"138"},{"size":4628,"mtime":1774546669456,"results":"156","hashOfConfig":"138"},{"size":8006,"mtime":1774546669456,"results":"157","hashOfConfig":"138"},{"size":24,"mtime":1782065185638,"results":"158","hashOfConfig":"138"},{"size":3925,"mtime":1774546669456,"results":"159","hashOfConfig":"138"},{"size":4165,"mtime":1774546669456,"results":"160","hashOfConfig":"138"},{"size":8511,"mtime":1774546669456,"results":"161","hashOfConfig":"138"},{"size":2265,"mtime":1774546669456,"results":"162","hashOfConfig":"138"},{"size":5789,"mtime":1774546669456,"results":"163","hashOfConfig":"138"},{"size":3710,"mtime":1774716706731,"results":"164","hashOfConfig":"138"},{"size":104,"mtime":1774546669457,"results":"165","hashOfConfig":"138"},{"size":589,"mtime":1774546669457,"results":"166","hashOfConfig":"138"},{"size":1492,"mtime":1774716711669,"results":"167","hashOfConfig":"138"},{"size":1476,"mtime":1774546669457,"results":"168","hashOfConfig":"138"},{"size":10554,"mtime":1782065314897,"results":"169","hashOfConfig":"138"},{"size":7589,"mtime":1774546669457,"results":"170","hashOfConfig":"138"},{"size":4980,"mtime":1774546669457,"results":"171","hashOfConfig":"138"},{"size":2473,"mtime":1774716732088,"results":"172","hashOfConfig":"138"},{"size":950,"mtime":1774546669457,"results":"173","hashOfConfig":"138"},{"size":4575,"mtime":1774546669457,"results":"174","hashOfConfig":"138"},{"size":788,"mtime":1774546669457,"results":"175","hashOfConfig":"138"},{"size":585,"mtime":1774546669457,"results":"176","hashOfConfig":"138"},{"size":8040,"mtime":1774546669457,"results":"177","hashOfConfig":"138"},{"size":1788,"mtime":1774546669457,"results":"178","hashOfConfig":"138"},{"size":6420,"mtime":1774546669457,"results":"179","hashOfConfig":"138"},{"size":2667,"mtime":1774546669458,"results":"180","hashOfConfig":"138"},{"size":2261,"mtime":1774546669458,"results":"181","hashOfConfig":"138"},{"size":714,"mtime":1774716744392,"results":"182","hashOfConfig":"138"},{"size":1406,"mtime":1774546669458,"results":"183","hashOfConfig":"138"},{"size":1750,"mtime":1774546669458,"results":"184","hashOfConfig":"138"},{"size":1619,"mtime":1774546669458,"results":"185","hashOfConfig":"138"},{"size":6105,"mtime":1774546669458,"results":"186","hashOfConfig":"138"},{"size":675,"mtime":1774546669458,"results":"187","hashOfConfig":"138"},{"size":4013,"mtime":1774546669458,"results":"188","hashOfConfig":"138"},{"size":21254,"mtime":1774716753752,"results":"189","hashOfConfig":"138"},{"size":253,"mtime":1774546669458,"results":"190","hashOfConfig":"138"},{"size":2002,"mtime":1774546669458,"results":"191","hashOfConfig":"138"},{"size":1160,"mtime":1773938365512,"results":"192","hashOfConfig":"138"},{"size":307,"mtime":1774546669458,"results":"193","hashOfConfig":"138"},{"size":1619,"mtime":1773778628581,"results":"194","hashOfConfig":"138"},{"size":1192,"mtime":1773778628581,"results":"195","hashOfConfig":"138"},{"size":1712,"mtime":1774546669458,"results":"196","hashOfConfig":"138"},{"size":2176,"mtime":1774546669458,"results":"197","hashOfConfig":"138"},{"size":3435,"mtime":1774546669459,"results":"198","hashOfConfig":"138"},{"size":736,"mtime":1774546669459,"results":"199","hashOfConfig":"138"},{"size":1338,"mtime":1774546669459,"results":"200","hashOfConfig":"138"},{"size":2238,"mtime":1774716762755,"results":"201","hashOfConfig":"138"},{"size":1596,"mtime":1774546669459,"results":"202","hashOfConfig":"138"},{"size":1771,"mtime":1774546669459,"results":"203","hashOfConfig":"138"},{"size":357,"mtime":1782064956221,"results":"204","hashOfConfig":"205"},{"size":43,"mtime":1782064673518,"results":"206","hashOfConfig":"205"},{"size":2618,"mtime":1774546669454,"results":"207","hashOfConfig":"208"},{"size":5302,"mtime":1774546669454,"results":"209","hashOfConfig":"208"},{"size":2002,"mtime":1774546669454,"results":"210","hashOfConfig":"208"},{"size":273,"mtime":1774546669455,"results":"211","hashOfConfig":"208"},{"size":2764,"mtime":1774546669455,"results":"212","hashOfConfig":"208"},{"size":1833,"mtime":1774546669455,"results":"213","hashOfConfig":"208"},{"size":1745,"mtime":1774589278255,"results":"214","hashOfConfig":"208"},{"size":1365,"mtime":1782065185636,"results":"215","hashOfConfig":"208"},{"size":2238,"mtime":1774546669455,"results":"216","hashOfConfig":"208"},{"size":2297,"mtime":1774546669455,"results":"217","hashOfConfig":"208"},{"size":3380,"mtime":1774546669455,"results":"218","hashOfConfig":"208"},{"size":8444,"mtime":1774546669455,"results":"219","hashOfConfig":"208"},{"size":2462,"mtime":1774546669455,"results":"220","hashOfConfig":"208"},{"size":5695,"mtime":1774718094545,"results":"221","hashOfConfig":"208"},{"size":10626,"mtime":1782065185637,"results":"222","hashOfConfig":"208"},{"size":1359,"mtime":1774546669456,"results":"223","hashOfConfig":"208"},{"size":757,"mtime":1774546669456,"results":"224","hashOfConfig":"208"},{"size":8628,"mtime":1782065185637,"results":"225","hashOfConfig":"208"},{"size":4628,"mtime":1774546669456,"results":"226","hashOfConfig":"208"},{"size":8006,"mtime":1774546669456,"results":"227","hashOfConfig":"208"},{"size":24,"mtime":1782065185638,"results":"228","hashOfConfig":"208"},{"size":3925,"mtime":1774546669456,"results":"229","hashOfConfig":"208"},{"size":4165,"mtime":1774546669456,"results":"230","hashOfConfig":"208"},{"size":8511,"mtime":1774546669456,"results":"231","hashOfConfig":"208"},{"size":2265,"mtime":1774546669456,"results":"232","hashOfConfig":"208"},{"size":5789,"mtime":1774546669456,"results":"233","hashOfConfig":"208"},{"size":3710,"mtime":1774716706731,"results":"234","hashOfConfig":"208"},{"size":104,"mtime":1774546669457,"results":"235","hashOfConfig":"208"},{"size":589,"mtime":1774546669457,"results":"236","hashOfConfig":"208"},{"size":1492,"mtime":1774716711669,"results":"237","hashOfConfig":"208"},{"size":1476,"mtime":1774546669457,"results":"238","hashOfConfig":"208"},{"size":10554,"mtime":1782065314897,"results":"239","hashOfConfig":"208"},{"size":7589,"mtime":1774546669457,"results":"240","hashOfConfig":"208"},{"size":4980,"mtime":1774546669457,"results":"241","hashOfConfig":"208"},{"size":2473,"mtime":1774716732088,"results":"242","hashOfConfig":"208"},{"size":950,"mtime":1774546669457,"results":"243","hashOfConfig":"208"},{"size":4575,"mtime":1774546669457,"results":"244","hashOfConfig":"208"},{"size":788,"mtime":1774546669457,"results":"245","hashOfConfig":"208"},{"size":585,"mtime":1774546669457,"results":"246","hashOfConfig":"208"},{"size":8040,"mtime":1774546669457,"results":"247","hashOfConfig":"208"},{"size":1788,"mtime":1774546669457,"results":"248","hashOfConfig":"208"},{"size":6420,"mtime":1774546669457,"results":"249","hashOfConfig":"208"},{"size":2667,"mtime":1774546669458,"results":"250","hashOfConfig":"208"},{"size":2261,"mtime":1774546669458,"results":"251","hashOfConfig":"208"},{"size":714,"mtime":1774716744392,"results":"252","hashOfConfig":"208"},{"size":1406,"mtime":1774546669458,"results":"253","hashOfConfig":"208"},{"size":1750,"mtime":1774546669458,"results":"254","hashOfConfig":"208"},{"size":1619,"mtime":1774546669458,"results":"255","hashOfConfig":"208"},{"size":6105,"mtime":1774546669458,"results":"256","hashOfConfig":"208"},{"size":675,"mtime":1774546669458,"results":"257","hashOfConfig":"208"},{"size":4013,"mtime":1774546669458,"results":"258","hashOfConfig":"208"},{"size":21254,"mtime":1774716753752,"results":"259","hashOfConfig":"208"},{"size":253,"mtime":1774546669458,"results":"260","hashOfConfig":"208"},{"size":2002,"mtime":1774546669458,"results":"261","hashOfConfig":"208"},{"size":1160,"mtime":1773938365512,"results":"262","hashOfConfig":"208"},{"size":307,"mtime":1774546669458,"results":"263","hashOfConfig":"208"},{"size":1619,"mtime":1773778628581,"results":"264","hashOfConfig":"208"},{"size":1192,"mtime":1773778628581,"results":"265","hashOfConfig":"208"},{"size":1712,"mtime":1774546669458,"results":"266","hashOfConfig":"208"},{"size":2176,"mtime":1774546669458,"results":"267","hashOfConfig":"208"},{"size":3435,"mtime":1774546669459,"results":"268","hashOfConfig":"208"},{"size":736,"mtime":1774546669459,"results":"269","hashOfConfig":"208"},{"size":1338,"mtime":1774546669459,"results":"270","hashOfConfig":"208"},{"size":2238,"mtime":1774716762755,"results":"271","hashOfConfig":"208"},{"size":1596,"mtime":1774546669459,"results":"272","hashOfConfig":"208"},{"size":1771,"mtime":1774546669459,"results":"273","hashOfConfig":"208"},{"size":357,"mtime":1782064956221,"results":"274","hashOfConfig":"275"},{"size":43,"mtime":1782064673518,"results":"276","hashOfConfig":"275"},{"filePath":"277","messages":"278","suppressedMessages":"279","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"ruwhm8",{"filePath":"280","messages":"281","suppressedMessages":"282","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"283","messages":"284","suppressedMessages":"285","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"286","messages":"287","suppressedMessages":"288","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"289","messages":"290","suppressedMessages":"291","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"292","messages":"293","suppressedMessages":"294","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"295","messages":"296","suppressedMessages":"297","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"298","messages":"299","suppressedMessages":"300","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"301","messages":"302","suppressedMessages":"303","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"304","messages":"305","suppressedMessages":"306","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"307","messages":"308","suppressedMessages":"309","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"310","messages":"311","suppressedMessages":"312","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"313","messages":"314","suppressedMessages":"315","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"316","messages":"317","suppressedMessages":"318","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"319","messages":"320","suppressedMessages":"321","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"322","messages":"323","suppressedMessages":"324","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"325","messages":"326","suppressedMessages":"327","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"328","messages":"329","suppressedMessages":"330","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"331","messages":"332","suppressedMessages":"333","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"334","messages":"335","suppressedMessages":"336","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"337","messages":"338","suppressedMessages":"339","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"340","messages":"341","suppressedMessages":"342","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"343","messages":"344","suppressedMessages":"345","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"346","messages":"347","suppressedMessages":"348","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"349","messages":"350","suppressedMessages":"351","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"352","messages":"353","suppressedMessages":"354","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"355","messages":"356","suppressedMessages":"357","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"358","messages":"359","suppressedMessages":"360","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"361","messages":"362","suppressedMessages":"363","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"364","messages":"365","suppressedMessages":"366","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"367","messages":"368","suppressedMessages":"369","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"370","messages":"371","suppressedMessages":"372","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"373","messages":"374","suppressedMessages":"375","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"376","messages":"377","suppressedMessages":"378","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"379","messages":"380","suppressedMessages":"381","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"382","messages":"383","suppressedMessages":"384","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"385","messages":"386","suppressedMessages":"387","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"388","messages":"389","suppressedMessages":"390","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"391","messages":"392","suppressedMessages":"393","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"394","messages":"395","suppressedMessages":"396","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"397","messages":"398","suppressedMessages":"399","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"400","messages":"401","suppressedMessages":"402","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"403","messages":"404","suppressedMessages":"405","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"406","messages":"407","suppressedMessages":"408","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"409","messages":"410","suppressedMessages":"411","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"412","messages":"413","suppressedMessages":"414","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"415","messages":"416","suppressedMessages":"417","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"418","messages":"419","suppressedMessages":"420","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"421","messages":"422","suppressedMessages":"423","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"424","messages":"425","suppressedMessages":"426","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"427","messages":"428","suppressedMessages":"429","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"430","messages":"431","suppressedMessages":"432","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"433","messages":"434","suppressedMessages":"435","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"436","messages":"437","suppressedMessages":"438","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"439","messages":"440","suppressedMessages":"441","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"442","messages":"443","suppressedMessages":"444","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"445","messages":"446","suppressedMessages":"447","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"448","messages":"449","suppressedMessages":"450","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"451","messages":"452","suppressedMessages":"453","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"454","messages":"455","suppressedMessages":"456","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"457","messages":"458","suppressedMessages":"459","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"460","messages":"461","suppressedMessages":"462","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"463","messages":"464","suppressedMessages":"465","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"466","messages":"467","suppressedMessages":"468","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"469","messages":"470","suppressedMessages":"471","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"472","messages":"473","suppressedMessages":"474","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"475","messages":"476","suppressedMessages":"477","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"znwjq7",{"filePath":"478","messages":"479","suppressedMessages":"480","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"481","messages":"482","suppressedMessages":"483","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"apah81",{"filePath":"484","messages":"485","suppressedMessages":"486","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"487","messages":"488","suppressedMessages":"489","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"490","messages":"491","suppressedMessages":"492","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"493","messages":"494","suppressedMessages":"495","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"496","messages":"497","suppressedMessages":"498","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"499","messages":"500","suppressedMessages":"501","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"502","messages":"503","suppressedMessages":"504","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"505","messages":"506","suppressedMessages":"507","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"508","messages":"509","suppressedMessages":"510","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"511","messages":"512","suppressedMessages":"513","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"514","messages":"515","suppressedMessages":"516","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"517","messages":"518","suppressedMessages":"519","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"520","messages":"521","suppressedMessages":"522","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"523","messages":"524","suppressedMessages":"525","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"526","messages":"527","suppressedMessages":"528","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"529","messages":"530","suppressedMessages":"531","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"532","messages":"533","suppressedMessages":"534","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"535","messages":"536","suppressedMessages":"537","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"538","messages":"539","suppressedMessages":"540","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"541","messages":"542","suppressedMessages":"543","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"544","messages":"545","suppressedMessages":"546","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"547","messages":"548","suppressedMessages":"549","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"550","messages":"551","suppressedMessages":"552","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"553","messages":"554","suppressedMessages":"555","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"556","messages":"557","suppressedMessages":"558","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"559","messages":"560","suppressedMessages":"561","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"562","messages":"563","suppressedMessages":"564","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"565","messages":"566","suppressedMessages":"567","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"568","messages":"569","suppressedMessages":"570","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"571","messages":"572","suppressedMessages":"573","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"574","messages":"575","suppressedMessages":"576","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"577","messages":"578","suppressedMessages":"579","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"580","messages":"581","suppressedMessages":"582","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"583","messages":"584","suppressedMessages":"585","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"586","messages":"587","suppressedMessages":"588","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"589","messages":"590","suppressedMessages":"591","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"592","messages":"593","suppressedMessages":"594","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"595","messages":"596","suppressedMessages":"597","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"598","messages":"599","suppressedMessages":"600","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"601","messages":"602","suppressedMessages":"603","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"604","messages":"605","suppressedMessages":"606","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"607","messages":"608","suppressedMessages":"609","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"610","messages":"611","suppressedMessages":"612","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"613","messages":"614","suppressedMessages":"615","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"616","messages":"617","suppressedMessages":"618","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"619","messages":"620","suppressedMessages":"621","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"622","messages":"623","suppressedMessages":"624","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"625","messages":"626","suppressedMessages":"627","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"628","messages":"629","suppressedMessages":"630","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"631","messages":"632","suppressedMessages":"633","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"634","messages":"635","suppressedMessages":"636","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"637","messages":"638","suppressedMessages":"639","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"640","messages":"641","suppressedMessages":"642","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"643","messages":"644","suppressedMessages":"645","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"646","messages":"647","suppressedMessages":"648","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"649","messages":"650","suppressedMessages":"651","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"652","messages":"653","suppressedMessages":"654","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"655","messages":"656","suppressedMessages":"657","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"658","messages":"659","suppressedMessages":"660","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"661","messages":"662","suppressedMessages":"663","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"664","messages":"665","suppressedMessages":"666","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"667","messages":"668","suppressedMessages":"669","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"670","messages":"671","suppressedMessages":"672","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"673","messages":"674","suppressedMessages":"675","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"676","messages":"677","suppressedMessages":"678","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"679","messages":"680","suppressedMessages":"681","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"89e6p7",{"filePath":"682","messages":"683","suppressedMessages":"684","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/accordion.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/alert-dialog.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/alert.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/aspect-ratio.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/avatar.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/badge.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/based-avatar.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/based-progress.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/breadcrumb.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/button-group.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/button.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/calendar.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/card.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/carousel.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/chart.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/checkbox.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/collapsible.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/combobox.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/command.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/context-menu.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/css.d.ts",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/dialog.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/drawer.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/dropdown-menu.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/empty.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/field.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/form.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/hooks/index.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/hooks/use-mobile.ts",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/hooks/use-on-click-outside.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/hover-card.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/image-crop.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/index.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/input-group.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/input-otp.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/input.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/item.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/kbd.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/label.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/menubar.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/native-select.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/navigation-menu.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/pagination.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/popover.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/progress.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/radio-group.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/resizable.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/scroll-area.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/select.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/separator.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/sheet.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/sidebar.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/skeleton.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/slider.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/sonner.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/spinner.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/status-message.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/submit-button.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/switch.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/table.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/tabs.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/textarea.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/theme.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/toggle-group.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/toggle.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/tooltip.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/tests/component/button.test.tsx",[],[],"/home/gib/Documents/Code/convex-monorepo/packages/ui/tests/jest-dom.d.ts",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/accordion.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/alert-dialog.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/alert.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/aspect-ratio.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/avatar.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/badge.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/based-avatar.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/based-progress.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/breadcrumb.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/button-group.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/button.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/calendar.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/card.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/carousel.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/chart.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/checkbox.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/collapsible.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/combobox.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/command.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/context-menu.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/css.d.ts",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/dialog.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/drawer.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/dropdown-menu.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/empty.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/field.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/form.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/hooks/index.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/hooks/use-mobile.ts",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/hooks/use-on-click-outside.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/hover-card.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/image-crop.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/index.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/input-group.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/input-otp.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/input.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/item.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/kbd.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/label.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/menubar.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/native-select.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/navigation-menu.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/pagination.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/popover.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/progress.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/radio-group.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/resizable.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/scroll-area.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/select.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/separator.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/sheet.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/sidebar.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/skeleton.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/slider.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/sonner.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/spinner.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/status-message.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/submit-button.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/switch.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/table.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/tabs.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/textarea.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/theme.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/toggle-group.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/toggle.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/src/tooltip.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/tests/component/button.test.tsx",[],[],"/home/gib/Documents/Code/Spoon/packages/ui/tests/jest-dom.d.ts",[],[]]
\ No newline at end of file
diff --git a/packages/ui/.cache/.prettiercache b/packages/ui/.cache/.prettiercache
index 9b6066e..ca79a57 100644
--- a/packages/ui/.cache/.prettiercache
+++ b/packages/ui/.cache/.prettiercache
@@ -1 +1 @@
-[["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63","64","65","66","67","68","69","70","71","72"],{"key":"73","value":"74"},{"key":"75","value":"76"},{"key":"77","value":"78"},{"key":"79","value":"80"},{"key":"81","value":"82"},{"key":"83","value":"84"},{"key":"85","value":"86"},{"key":"87","value":"88"},{"key":"89","value":"90"},{"key":"91","value":"92"},{"key":"93","value":"94"},{"key":"95","value":"96"},{"key":"97","value":"98"},{"key":"99","value":"100"},{"key":"101","value":"102"},{"key":"103","value":"104"},{"key":"105","value":"106"},{"key":"107","value":"108"},{"key":"109","value":"110"},{"key":"111","value":"112"},{"key":"113","value":"114"},{"key":"115","value":"116"},{"key":"117","value":"118"},{"key":"119","value":"120"},{"key":"121","value":"122"},{"key":"123","value":"124"},{"key":"125","value":"126"},{"key":"127","value":"128"},{"key":"129","value":"130"},{"key":"131","value":"132"},{"key":"133","value":"134"},{"key":"135","value":"136"},{"key":"137","value":"138"},{"key":"139","value":"140"},{"key":"141","value":"142"},{"key":"143","value":"144"},{"key":"145","value":"146"},{"key":"147","value":"148"},{"key":"149","value":"150"},{"key":"151","value":"152"},{"key":"153","value":"154"},{"key":"155","value":"156"},{"key":"157","value":"158"},{"key":"159","value":"160"},{"key":"161","value":"162"},{"key":"163","value":"164"},{"key":"165","value":"166"},{"key":"167","value":"168"},{"key":"169","value":"170"},{"key":"171","value":"172"},{"key":"173","value":"174"},{"key":"175","value":"176"},{"key":"177","value":"178"},{"key":"179","value":"180"},{"key":"181","value":"182"},{"key":"183","value":"184"},{"key":"185","value":"186"},{"key":"187","value":"188"},{"key":"189","value":"190"},{"key":"191","value":"192"},{"key":"193","value":"194"},{"key":"195","value":"196"},{"key":"197","value":"198"},{"key":"199","value":"200"},{"key":"201","value":"202"},{"key":"203","value":"204"},{"key":"205","value":"206"},{"key":"207","value":"208"},{"key":"209","value":"210"},{"key":"211","value":"212"},{"key":"213","value":"214"},{"key":"215","value":"216"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/based-avatar.tsx",{"size":1738,"mtime":1773778628580,"data":"217"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/hooks/index.tsx",{"size":104,"mtime":1774538639553,"data":"218"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/hover-card.tsx",{"size":1476,"mtime":1774544487157,"data":"219"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/popover.tsx",{"size":2261,"mtime":1774544487690,"data":"220"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/tooltip.tsx",{"size":1771,"mtime":1774544488284,"data":"221"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/aspect-ratio.tsx",{"size":273,"mtime":1774544485059,"data":"222"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/button.tsx",{"size":3380,"mtime":1774544470961,"data":"223"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/toggle-group.tsx",{"size":2238,"mtime":1774544488249,"data":"224"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/hooks/use-mobile.ts",{"size":589,"mtime":1774544470961,"data":"225"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/submit-button.tsx",{"size":1192,"mtime":1773778628581,"data":"226"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/.cache/.eslintcache",{"size":45499,"mtime":1774544652212},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/carousel.tsx",{"size":5758,"mtime":1774544486321,"data":"227"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/textarea.tsx",{"size":736,"mtime":1774544488211,"data":"228"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/.cache/.prettiercache",{"size":13430,"mtime":1774544664111},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/avatar.tsx",{"size":2764,"mtime":1774544485222,"data":"229"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/command.tsx",{"size":4628,"mtime":1774544486715,"data":"230"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/dropdown-menu.tsx",{"size":8511,"mtime":1774544486927,"data":"231"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/empty.tsx",{"size":2265,"mtime":1774544486964,"data":"232"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/item.tsx",{"size":4575,"mtime":1774544487439,"data":"233"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/spinner.tsx",{"size":307,"mtime":1774544488097,"data":"234"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/package.json",{"size":2103,"mtime":1774538890797,"data":"235"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/dialog.tsx",{"size":3925,"mtime":1774544486830,"data":"236"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/input-otp.tsx",{"size":2474,"mtime":1774544487380,"data":"237"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/input.tsx",{"size":950,"mtime":1774544487397,"data":"238"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/label.tsx",{"size":585,"mtime":1774544487498,"data":"239"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/select.tsx",{"size":6105,"mtime":1774544487823,"data":"240"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/based-progress.tsx",{"size":1372,"mtime":1773778628580,"data":"241"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/kbd.tsx",{"size":788,"mtime":1774544487458,"data":"242"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/resizable.tsx",{"size":1750,"mtime":1774544487757,"data":"243"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/separator.tsx",{"size":675,"mtime":1774544487842,"data":"244"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/tsconfig.json",{"size":212,"mtime":1773778628581,"data":"245"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/accordion.tsx",{"size":2618,"mtime":1774544484670,"data":"246"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/chart.tsx",{"size":10055,"mtime":1774544486484,"data":"247"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/navigation-menu.tsx",{"size":6420,"mtime":1774544487625,"data":"248"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/switch.tsx",{"size":1712,"mtime":1774544488148,"data":"249"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/toggle.tsx",{"size":1596,"mtime":1774544488268,"data":"250"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/badge.tsx",{"size":1833,"mtime":1774544470961,"data":"251"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/slider.tsx",{"size":2002,"mtime":1774544470962,"data":"252"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/theme.tsx",{"size":1338,"mtime":1774544488228,"data":"253"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/eslint.config.ts",{"size":254,"mtime":1773778628580,"data":"254"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/field.tsx",{"size":5789,"mtime":1774544487028,"data":"255"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/form.tsx",{"size":3810,"mtime":1774544487072,"data":"256"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/image-crop.tsx",{"size":10320,"mtime":1774544470962,"data":"257"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/native-select.tsx",{"size":1788,"mtime":1774544487573,"data":"258"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/alert-dialog.tsx",{"size":5302,"mtime":1774544484831,"data":"259"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/drawer.tsx",{"size":4165,"mtime":1774544486870,"data":"260"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/progress.tsx",{"size":714,"mtime":1774544487711,"data":"261"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/scroll-area.tsx",{"size":1619,"mtime":1774544487784,"data":"262"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/skeleton.tsx",{"size":253,"mtime":1774544488045,"data":"263"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/sonner.tsx",{"size":1160,"mtime":1773938365512,"data":"264"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/button-group.tsx",{"size":2297,"mtime":1774544485788,"data":"265"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/status-message.tsx",{"size":1619,"mtime":1773778628581,"data":"266"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/breadcrumb.tsx",{"size":2238,"mtime":1774544485702,"data":"267"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/checkbox.tsx",{"size":1359,"mtime":1774544486513,"data":"268"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/context-menu.tsx",{"size":8006,"mtime":1774544486782,"data":"269"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/hooks/use-on-click-outside.tsx",{"size":1545,"mtime":1774545915598,"data":"270"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/alert.tsx",{"size":2002,"mtime":1774544485001,"data":"271"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/index.tsx",{"size":7589,"mtime":1774538739012,"data":"272"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/table.tsx",{"size":2176,"mtime":1774544488171,"data":"273"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/.cache/tsbuildinfo.json",{"size":378458,"mtime":1774546246477,"data":"274"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/combobox.tsx",{"size":8572,"mtime":1774544486634,"data":"275"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/radio-group.tsx",{"size":1406,"mtime":1774544487730,"data":"276"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/sheet.tsx",{"size":4013,"mtime":1774544487881,"data":"277"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/components.json",{"size":334,"mtime":1773778628580,"data":"278"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/calendar.tsx",{"size":8444,"mtime":1774544470961,"data":"279"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/card.tsx",{"size":2462,"mtime":1774544486082,"data":"280"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/collapsible.tsx",{"size":757,"mtime":1774544486533,"data":"281"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/input-group.tsx",{"size":4980,"mtime":1774544487352,"data":"282"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/menubar.tsx",{"size":8040,"mtime":1774544487542,"data":"283"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/pagination.tsx",{"size":2667,"mtime":1774544487661,"data":"284"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/sidebar.tsx",{"size":21264,"mtime":1774544488032,"data":"285"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/tabs.tsx",{"size":3435,"mtime":1774544488194,"data":"286"},{"hashOfOptions":"287"},{"hashOfOptions":"288"},{"hashOfOptions":"289"},{"hashOfOptions":"290"},{"hashOfOptions":"291"},{"hashOfOptions":"292"},{"hashOfOptions":"293"},{"hashOfOptions":"294"},{"hashOfOptions":"295"},{"hashOfOptions":"296"},{"hashOfOptions":"297"},{"hashOfOptions":"298"},{"hashOfOptions":"299"},{"hashOfOptions":"300"},{"hashOfOptions":"301"},{"hashOfOptions":"302"},{"hashOfOptions":"303"},{"hashOfOptions":"304"},{"hashOfOptions":"305"},{"hashOfOptions":"306"},{"hashOfOptions":"307"},{"hashOfOptions":"308"},{"hashOfOptions":"309"},{"hashOfOptions":"310"},{"hashOfOptions":"311"},{"hashOfOptions":"312"},{"hashOfOptions":"313"},{"hashOfOptions":"314"},{"hashOfOptions":"315"},{"hashOfOptions":"316"},{"hashOfOptions":"317"},{"hashOfOptions":"318"},{"hashOfOptions":"319"},{"hashOfOptions":"320"},{"hashOfOptions":"321"},{"hashOfOptions":"322"},{"hashOfOptions":"323"},{"hashOfOptions":"324"},{"hashOfOptions":"325"},{"hashOfOptions":"326"},{"hashOfOptions":"327"},{"hashOfOptions":"328"},{"hashOfOptions":"329"},{"hashOfOptions":"330"},{"hashOfOptions":"331"},{"hashOfOptions":"332"},{"hashOfOptions":"333"},{"hashOfOptions":"334"},{"hashOfOptions":"335"},{"hashOfOptions":"336"},{"hashOfOptions":"337"},{"hashOfOptions":"338"},{"hashOfOptions":"339"},{"hashOfOptions":"340"},{"hashOfOptions":"341"},{"hashOfOptions":"342"},{"hashOfOptions":"343"},{"hashOfOptions":"344"},{"hashOfOptions":"345"},{"hashOfOptions":"346"},{"hashOfOptions":"347"},{"hashOfOptions":"348"},{"hashOfOptions":"349"},{"hashOfOptions":"350"},{"hashOfOptions":"351"},{"hashOfOptions":"352"},{"hashOfOptions":"353"},{"hashOfOptions":"354"},{"hashOfOptions":"355"},{"hashOfOptions":"356"},"1184689735","660239897","180314549","2051734059","880268265","198318730","1141869862","1123175354","2337392641","107484621","1347677460","1849566670","3290150093","3520368305","761107969","3968385043","370864359","1181604639","4244029006","2977393756","2806355726","3149566864","1660808922","4225762768","2372592059","1582912979","1535320241","2102224395","3689442971","2367691918","305120708","2920925054","1163466280","2121680520","279570377","1117210645","1718382351","2550719820","3175771648","477959384","845238134","2177684728","3087551917","1672865797","3991061825","20049715","3611214177","3396089821","4274111832","2778273760","4175810647","962607959","941313905","1902845259","105560002","2056788376","3353269652","2084119482","79199185","2576520211","4241885477","1446467142","2175131602","574553988","2578775728","4115303618","2308038938","3595592494","3317595938","1218342738"]
\ No newline at end of file
+[["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63","64","65","66","67","68","69","70","71","72","73","74","75","76","77","78","79","80","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","110","111","112","113","114","115","116","117","118","119","120","121","122","123","124","125","126","127","128","129","130","131","132","133","134","135","136","137","138","139","140","141","142","143","144","145","146","147","148","149"],{"key":"150","value":"151"},{"key":"152","value":"153"},{"key":"154","value":"155"},{"key":"156","value":"157"},{"key":"158","value":"159"},{"key":"160","value":"161"},{"key":"162","value":"163"},{"key":"164","value":"165"},{"key":"166","value":"167"},{"key":"168","value":"169"},{"key":"170","value":"171"},{"key":"172","value":"173"},{"key":"174","value":"175"},{"key":"176","value":"177"},{"key":"178","value":"179"},{"key":"180","value":"181"},{"key":"182","value":"183"},{"key":"184","value":"185"},{"key":"186","value":"187"},{"key":"188","value":"189"},{"key":"190","value":"191"},{"key":"192","value":"193"},{"key":"194","value":"195"},{"key":"196","value":"197"},{"key":"198","value":"199"},{"key":"200","value":"201"},{"key":"202","value":"203"},{"key":"204","value":"205"},{"key":"206","value":"207"},{"key":"208","value":"209"},{"key":"210","value":"211"},{"key":"212","value":"213"},{"key":"214","value":"215"},{"key":"216","value":"217"},{"key":"218","value":"219"},{"key":"220","value":"221"},{"key":"222","value":"223"},{"key":"224","value":"225"},{"key":"226","value":"227"},{"key":"228","value":"229"},{"key":"230","value":"231"},{"key":"232","value":"233"},{"key":"234","value":"235"},{"key":"236","value":"237"},{"key":"238","value":"239"},{"key":"240","value":"241"},{"key":"242","value":"243"},{"key":"244","value":"245"},{"key":"246","value":"247"},{"key":"248","value":"249"},{"key":"250","value":"251"},{"key":"252","value":"253"},{"key":"254","value":"255"},{"key":"256","value":"257"},{"key":"258","value":"259"},{"key":"260","value":"261"},{"key":"262","value":"263"},{"key":"264","value":"265"},{"key":"266","value":"267"},{"key":"268","value":"269"},{"key":"270","value":"271"},{"key":"272","value":"273"},{"key":"274","value":"275"},{"key":"276","value":"277"},{"key":"278","value":"279"},{"key":"280","value":"281"},{"key":"282","value":"283"},{"key":"284","value":"285"},{"key":"286","value":"287"},{"key":"288","value":"289"},{"key":"290","value":"291"},{"key":"292","value":"293"},{"key":"294","value":"295"},{"key":"296","value":"297"},{"key":"298","value":"299"},{"key":"300","value":"301"},{"key":"302","value":"303"},{"key":"304","value":"305"},{"key":"306","value":"307"},{"key":"308","value":"309"},{"key":"310","value":"311"},{"key":"312","value":"313"},{"key":"314","value":"315"},{"key":"316","value":"317"},{"key":"318","value":"319"},{"key":"320","value":"321"},{"key":"322","value":"323"},{"key":"324","value":"325"},{"key":"326","value":"327"},{"key":"328","value":"329"},{"key":"330","value":"331"},{"key":"332","value":"333"},{"key":"334","value":"335"},{"key":"336","value":"337"},{"key":"338","value":"339"},{"key":"340","value":"341"},{"key":"342","value":"343"},{"key":"344","value":"345"},{"key":"346","value":"347"},{"key":"348","value":"349"},{"key":"350","value":"351"},{"key":"352","value":"353"},{"key":"354","value":"355"},{"key":"356","value":"357"},{"key":"358","value":"359"},{"key":"360","value":"361"},{"key":"362","value":"363"},{"key":"364","value":"365"},{"key":"366","value":"367"},{"key":"368","value":"369"},{"key":"370","value":"371"},{"key":"372","value":"373"},{"key":"374","value":"375"},{"key":"376","value":"377"},{"key":"378","value":"379"},{"key":"380","value":"381"},{"key":"382","value":"383"},{"key":"384","value":"385"},{"key":"386","value":"387"},{"key":"388","value":"389"},{"key":"390","value":"391"},{"key":"392","value":"393"},{"key":"394","value":"395"},{"key":"396","value":"397"},{"key":"398","value":"399"},{"key":"400","value":"401"},{"key":"402","value":"403"},{"key":"404","value":"405"},{"key":"406","value":"407"},{"key":"408","value":"409"},{"key":"410","value":"411"},{"key":"412","value":"413"},{"key":"414","value":"415"},{"key":"416","value":"417"},{"key":"418","value":"419"},{"key":"420","value":"421"},{"key":"422","value":"423"},{"key":"424","value":"425"},{"key":"426","value":"427"},{"key":"428","value":"429"},{"key":"430","value":"431"},{"key":"432","value":"433"},{"key":"434","value":"435"},{"key":"436","value":"437"},{"key":"438","value":"439"},{"key":"440","value":"441"},{"key":"442","value":"443"},{"key":"444","value":"445"},{"key":"446","value":"447"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/based-avatar.tsx",{"size":1745,"mtime":1774589278255,"data":"448"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/hooks/index.tsx",{"size":104,"mtime":1774546669457,"data":"449"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/hover-card.tsx",{"size":1476,"mtime":1774546669457,"data":"450"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/popover.tsx",{"size":2261,"mtime":1774546669458,"data":"451"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/tooltip.tsx",{"size":1771,"mtime":1774546669459,"data":"452"},"/home/gib/Documents/Code/Spoon/packages/ui/src/based-avatar.tsx",{"size":1745,"mtime":1774589278255,"data":"453"},"/home/gib/Documents/Code/Spoon/packages/ui/src/hooks/index.tsx",{"size":104,"mtime":1774546669457,"data":"454"},"/home/gib/Documents/Code/Spoon/packages/ui/src/hover-card.tsx",{"size":1476,"mtime":1774546669457,"data":"455"},"/home/gib/Documents/Code/Spoon/packages/ui/src/popover.tsx",{"size":2261,"mtime":1774546669458,"data":"456"},"/home/gib/Documents/Code/Spoon/packages/ui/src/tooltip.tsx",{"size":1771,"mtime":1774546669459,"data":"457"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/aspect-ratio.tsx",{"size":273,"mtime":1774546669455,"data":"458"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/button.tsx",{"size":3380,"mtime":1774546669455,"data":"459"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/toggle-group.tsx",{"size":2238,"mtime":1774716762755,"data":"460"},"/home/gib/Documents/Code/Spoon/packages/ui/src/aspect-ratio.tsx",{"size":273,"mtime":1774546669455,"data":"461"},"/home/gib/Documents/Code/Spoon/packages/ui/src/button.tsx",{"size":3380,"mtime":1774546669455,"data":"462"},"/home/gib/Documents/Code/Spoon/packages/ui/src/toggle-group.tsx",{"size":2238,"mtime":1774716762755,"data":"463"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/hooks/use-mobile.ts",{"size":589,"mtime":1774546669457,"data":"464"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/submit-button.tsx",{"size":1192,"mtime":1773778628581,"data":"465"},"/home/gib/Documents/Code/Spoon/packages/ui/src/hooks/use-mobile.ts",{"size":589,"mtime":1774546669457,"data":"466"},"/home/gib/Documents/Code/Spoon/packages/ui/src/submit-button.tsx",{"size":1192,"mtime":1773778628581,"data":"467"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/.cache/.eslintcache",{"size":26446,"mtime":1782065375883},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/carousel.tsx",{"size":5695,"mtime":1774718094545,"data":"468"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/textarea.tsx",{"size":736,"mtime":1774546669459,"data":"469"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/.cache/.prettiercache",{"size":14405,"mtime":1782065457801},"/home/gib/Documents/Code/Spoon/packages/ui/src/carousel.tsx",{"size":5695,"mtime":1774718094545,"data":"470"},"/home/gib/Documents/Code/Spoon/packages/ui/src/textarea.tsx",{"size":736,"mtime":1774546669459,"data":"471"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/avatar.tsx",{"size":2764,"mtime":1774546669455,"data":"472"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/command.tsx",{"size":4628,"mtime":1774546669456,"data":"473"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/dropdown-menu.tsx",{"size":8511,"mtime":1774546669456,"data":"474"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/empty.tsx",{"size":2265,"mtime":1774546669456,"data":"475"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/item.tsx",{"size":4575,"mtime":1774546669457,"data":"476"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/spinner.tsx",{"size":307,"mtime":1774546669458,"data":"477"},"/home/gib/Documents/Code/Spoon/packages/ui/src/avatar.tsx",{"size":2764,"mtime":1774546669455,"data":"478"},"/home/gib/Documents/Code/Spoon/packages/ui/src/command.tsx",{"size":4628,"mtime":1774546669456,"data":"479"},"/home/gib/Documents/Code/Spoon/packages/ui/src/dropdown-menu.tsx",{"size":8511,"mtime":1774546669456,"data":"480"},"/home/gib/Documents/Code/Spoon/packages/ui/src/empty.tsx",{"size":2265,"mtime":1774546669456,"data":"481"},"/home/gib/Documents/Code/Spoon/packages/ui/src/item.tsx",{"size":4575,"mtime":1774546669457,"data":"482"},"/home/gib/Documents/Code/Spoon/packages/ui/src/spinner.tsx",{"size":307,"mtime":1774546669458,"data":"483"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/package.json",{"size":2495,"mtime":1782064939453,"data":"484"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/dialog.tsx",{"size":3925,"mtime":1774546669456,"data":"485"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/input-otp.tsx",{"size":2473,"mtime":1774716732088,"data":"486"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/input.tsx",{"size":950,"mtime":1774546669457,"data":"487"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/label.tsx",{"size":585,"mtime":1774546669457,"data":"488"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/select.tsx",{"size":6105,"mtime":1774546669458,"data":"489"},"/home/gib/Documents/Code/Spoon/packages/ui/package.json",{"size":2495,"mtime":1782064939453,"data":"490"},"/home/gib/Documents/Code/Spoon/packages/ui/src/dialog.tsx",{"size":3925,"mtime":1774546669456,"data":"491"},"/home/gib/Documents/Code/Spoon/packages/ui/src/input-otp.tsx",{"size":2473,"mtime":1774716732088,"data":"492"},"/home/gib/Documents/Code/Spoon/packages/ui/src/input.tsx",{"size":950,"mtime":1774546669457,"data":"493"},"/home/gib/Documents/Code/Spoon/packages/ui/src/label.tsx",{"size":585,"mtime":1774546669457,"data":"494"},"/home/gib/Documents/Code/Spoon/packages/ui/src/select.tsx",{"size":6105,"mtime":1774546669458,"data":"495"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/based-progress.tsx",{"size":1365,"mtime":1782065185636,"data":"496"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/kbd.tsx",{"size":788,"mtime":1774546669457,"data":"497"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/resizable.tsx",{"size":1750,"mtime":1774546669458,"data":"498"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/separator.tsx",{"size":675,"mtime":1774546669458,"data":"499"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/tsconfig.json",{"size":241,"mtime":1782065314896,"data":"500"},"/home/gib/Documents/Code/Spoon/packages/ui/src/based-progress.tsx",{"size":1365,"mtime":1782065185636,"data":"501"},"/home/gib/Documents/Code/Spoon/packages/ui/src/kbd.tsx",{"size":788,"mtime":1774546669457,"data":"502"},"/home/gib/Documents/Code/Spoon/packages/ui/src/resizable.tsx",{"size":1750,"mtime":1774546669458,"data":"503"},"/home/gib/Documents/Code/Spoon/packages/ui/src/separator.tsx",{"size":675,"mtime":1774546669458,"data":"504"},"/home/gib/Documents/Code/Spoon/packages/ui/tsconfig.json",{"size":241,"mtime":1782065314896,"data":"505"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/accordion.tsx",{"size":2618,"mtime":1774546669454,"data":"506"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/chart.tsx",{"size":10626,"mtime":1782065185637,"data":"507"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/navigation-menu.tsx",{"size":6420,"mtime":1774546669457,"data":"508"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/switch.tsx",{"size":1712,"mtime":1774546669458,"data":"509"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/toggle.tsx",{"size":1596,"mtime":1774546669459,"data":"510"},"/home/gib/Documents/Code/Spoon/packages/ui/src/accordion.tsx",{"size":2618,"mtime":1774546669454,"data":"511"},"/home/gib/Documents/Code/Spoon/packages/ui/src/chart.tsx",{"size":10626,"mtime":1782065185637,"data":"512"},"/home/gib/Documents/Code/Spoon/packages/ui/src/navigation-menu.tsx",{"size":6420,"mtime":1774546669457,"data":"513"},"/home/gib/Documents/Code/Spoon/packages/ui/src/switch.tsx",{"size":1712,"mtime":1774546669458,"data":"514"},"/home/gib/Documents/Code/Spoon/packages/ui/src/toggle.tsx",{"size":1596,"mtime":1774546669459,"data":"515"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/badge.tsx",{"size":1833,"mtime":1774546669455,"data":"516"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/slider.tsx",{"size":2002,"mtime":1774546669458,"data":"517"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/theme.tsx",{"size":1338,"mtime":1774546669459,"data":"518"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/css.d.ts",{"size":24,"mtime":1782065185638,"data":"519"},"/home/gib/Documents/Code/Spoon/packages/ui/src/badge.tsx",{"size":1833,"mtime":1774546669455,"data":"520"},"/home/gib/Documents/Code/Spoon/packages/ui/src/css.d.ts",{"size":24,"mtime":1782065185638,"data":"521"},"/home/gib/Documents/Code/Spoon/packages/ui/src/slider.tsx",{"size":2002,"mtime":1774546669458,"data":"522"},"/home/gib/Documents/Code/Spoon/packages/ui/src/theme.tsx",{"size":1338,"mtime":1774546669459,"data":"523"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/eslint.config.ts",{"size":254,"mtime":1773778628580,"data":"524"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/field.tsx",{"size":5789,"mtime":1774546669456,"data":"525"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/form.tsx",{"size":3710,"mtime":1774716706731,"data":"526"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/image-crop.tsx",{"size":10554,"mtime":1782065314897,"data":"527"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/native-select.tsx",{"size":1788,"mtime":1774546669457,"data":"528"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/vitest.config.ts",{"size":395,"mtime":1782065113472,"data":"529"},"/home/gib/Documents/Code/Spoon/packages/ui/eslint.config.ts",{"size":254,"mtime":1773778628580,"data":"530"},"/home/gib/Documents/Code/Spoon/packages/ui/src/field.tsx",{"size":5789,"mtime":1774546669456,"data":"531"},"/home/gib/Documents/Code/Spoon/packages/ui/src/form.tsx",{"size":3710,"mtime":1774716706731,"data":"532"},"/home/gib/Documents/Code/Spoon/packages/ui/src/image-crop.tsx",{"size":10554,"mtime":1782065314897,"data":"533"},"/home/gib/Documents/Code/Spoon/packages/ui/src/native-select.tsx",{"size":1788,"mtime":1774546669457,"data":"534"},"/home/gib/Documents/Code/Spoon/packages/ui/vitest.config.ts",{"size":395,"mtime":1782065113472,"data":"535"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/alert-dialog.tsx",{"size":5302,"mtime":1774546669454,"data":"536"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/drawer.tsx",{"size":4165,"mtime":1774546669456,"data":"537"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/progress.tsx",{"size":714,"mtime":1774716744392,"data":"538"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/scroll-area.tsx",{"size":1619,"mtime":1774546669458,"data":"539"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/skeleton.tsx",{"size":253,"mtime":1774546669458,"data":"540"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/sonner.tsx",{"size":1160,"mtime":1773938365512,"data":"541"},"/home/gib/Documents/Code/Spoon/packages/ui/src/alert-dialog.tsx",{"size":5302,"mtime":1774546669454,"data":"542"},"/home/gib/Documents/Code/Spoon/packages/ui/src/drawer.tsx",{"size":4165,"mtime":1774546669456,"data":"543"},"/home/gib/Documents/Code/Spoon/packages/ui/src/progress.tsx",{"size":714,"mtime":1774716744392,"data":"544"},"/home/gib/Documents/Code/Spoon/packages/ui/src/scroll-area.tsx",{"size":1619,"mtime":1774546669458,"data":"545"},"/home/gib/Documents/Code/Spoon/packages/ui/src/skeleton.tsx",{"size":253,"mtime":1774546669458,"data":"546"},"/home/gib/Documents/Code/Spoon/packages/ui/src/sonner.tsx",{"size":1160,"mtime":1773938365512,"data":"547"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/button-group.tsx",{"size":2297,"mtime":1774546669455,"data":"548"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/status-message.tsx",{"size":1619,"mtime":1773778628581,"data":"549"},"/home/gib/Documents/Code/Spoon/packages/ui/src/button-group.tsx",{"size":2297,"mtime":1774546669455,"data":"550"},"/home/gib/Documents/Code/Spoon/packages/ui/src/status-message.tsx",{"size":1619,"mtime":1773778628581,"data":"551"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/breadcrumb.tsx",{"size":2238,"mtime":1774546669455,"data":"552"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/checkbox.tsx",{"size":1359,"mtime":1774546669456,"data":"553"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/context-menu.tsx",{"size":8006,"mtime":1774546669456,"data":"554"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/hooks/use-on-click-outside.tsx",{"size":1492,"mtime":1774716711669,"data":"555"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/tests/component/button.test.tsx",{"size":357,"mtime":1782064956221,"data":"556"},"/home/gib/Documents/Code/Spoon/packages/ui/src/breadcrumb.tsx",{"size":2238,"mtime":1774546669455,"data":"557"},"/home/gib/Documents/Code/Spoon/packages/ui/src/checkbox.tsx",{"size":1359,"mtime":1774546669456,"data":"558"},"/home/gib/Documents/Code/Spoon/packages/ui/src/context-menu.tsx",{"size":8006,"mtime":1774546669456,"data":"559"},"/home/gib/Documents/Code/Spoon/packages/ui/src/hooks/use-on-click-outside.tsx",{"size":1492,"mtime":1774716711669,"data":"560"},"/home/gib/Documents/Code/Spoon/packages/ui/tests/component/button.test.tsx",{"size":357,"mtime":1782064956221,"data":"561"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/alert.tsx",{"size":2002,"mtime":1774546669454,"data":"562"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/index.tsx",{"size":7589,"mtime":1774546669457,"data":"563"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/table.tsx",{"size":2176,"mtime":1774546669458,"data":"564"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/.cache/tsbuildinfo.json",{"size":440907,"mtime":1782065410551,"data":"565"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/tests/jest-dom.d.ts",{"size":43,"mtime":1782064673518,"data":"566"},"/home/gib/Documents/Code/Spoon/packages/ui/src/alert.tsx",{"size":2002,"mtime":1774546669454,"data":"567"},"/home/gib/Documents/Code/Spoon/packages/ui/src/index.tsx",{"size":7589,"mtime":1774546669457,"data":"568"},"/home/gib/Documents/Code/Spoon/packages/ui/src/table.tsx",{"size":2176,"mtime":1774546669458,"data":"569"},"/home/gib/Documents/Code/Spoon/packages/ui/tests/jest-dom.d.ts",{"size":43,"mtime":1782064673518,"data":"570"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/combobox.tsx",{"size":8628,"mtime":1782065185637,"data":"571"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/radio-group.tsx",{"size":1406,"mtime":1774546669458,"data":"572"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/sheet.tsx",{"size":4013,"mtime":1774546669458,"data":"573"},"/home/gib/Documents/Code/Spoon/packages/ui/src/combobox.tsx",{"size":8628,"mtime":1782065185637,"data":"574"},"/home/gib/Documents/Code/Spoon/packages/ui/src/radio-group.tsx",{"size":1406,"mtime":1774546669458,"data":"575"},"/home/gib/Documents/Code/Spoon/packages/ui/src/sheet.tsx",{"size":4013,"mtime":1774546669458,"data":"576"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/components.json",{"size":334,"mtime":1773778628580,"data":"577"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/calendar.tsx",{"size":8444,"mtime":1774546669455,"data":"578"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/card.tsx",{"size":2462,"mtime":1774546669455,"data":"579"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/collapsible.tsx",{"size":757,"mtime":1774546669456,"data":"580"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/input-group.tsx",{"size":4980,"mtime":1774546669457,"data":"581"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/menubar.tsx",{"size":8040,"mtime":1774546669457,"data":"582"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/pagination.tsx",{"size":2667,"mtime":1774546669458,"data":"583"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/sidebar.tsx",{"size":21254,"mtime":1774716753752,"data":"584"},"/home/gib/Documents/Code/convex-monorepo/packages/ui/src/tabs.tsx",{"size":3435,"mtime":1774546669459,"data":"585"},"/home/gib/Documents/Code/Spoon/packages/ui/components.json",{"size":334,"mtime":1773778628580,"data":"586"},"/home/gib/Documents/Code/Spoon/packages/ui/src/calendar.tsx",{"size":8444,"mtime":1774546669455,"data":"587"},"/home/gib/Documents/Code/Spoon/packages/ui/src/card.tsx",{"size":2462,"mtime":1774546669455,"data":"588"},"/home/gib/Documents/Code/Spoon/packages/ui/src/collapsible.tsx",{"size":757,"mtime":1774546669456,"data":"589"},"/home/gib/Documents/Code/Spoon/packages/ui/src/input-group.tsx",{"size":4980,"mtime":1774546669457,"data":"590"},"/home/gib/Documents/Code/Spoon/packages/ui/src/menubar.tsx",{"size":8040,"mtime":1774546669457,"data":"591"},"/home/gib/Documents/Code/Spoon/packages/ui/src/pagination.tsx",{"size":2667,"mtime":1774546669458,"data":"592"},"/home/gib/Documents/Code/Spoon/packages/ui/src/sidebar.tsx",{"size":21254,"mtime":1774716753752,"data":"593"},"/home/gib/Documents/Code/Spoon/packages/ui/src/tabs.tsx",{"size":3435,"mtime":1774546669459,"data":"594"},{"hashOfOptions":"595"},{"hashOfOptions":"596"},{"hashOfOptions":"597"},{"hashOfOptions":"598"},{"hashOfOptions":"599"},{"hashOfOptions":"600"},{"hashOfOptions":"601"},{"hashOfOptions":"602"},{"hashOfOptions":"603"},{"hashOfOptions":"604"},{"hashOfOptions":"605"},{"hashOfOptions":"606"},{"hashOfOptions":"607"},{"hashOfOptions":"608"},{"hashOfOptions":"609"},{"hashOfOptions":"610"},{"hashOfOptions":"611"},{"hashOfOptions":"612"},{"hashOfOptions":"613"},{"hashOfOptions":"614"},{"hashOfOptions":"615"},{"hashOfOptions":"616"},{"hashOfOptions":"617"},{"hashOfOptions":"618"},{"hashOfOptions":"619"},{"hashOfOptions":"620"},{"hashOfOptions":"621"},{"hashOfOptions":"622"},{"hashOfOptions":"623"},{"hashOfOptions":"624"},{"hashOfOptions":"625"},{"hashOfOptions":"626"},{"hashOfOptions":"627"},{"hashOfOptions":"628"},{"hashOfOptions":"629"},{"hashOfOptions":"630"},{"hashOfOptions":"631"},{"hashOfOptions":"632"},{"hashOfOptions":"633"},{"hashOfOptions":"634"},{"hashOfOptions":"635"},{"hashOfOptions":"636"},{"hashOfOptions":"637"},{"hashOfOptions":"638"},{"hashOfOptions":"639"},{"hashOfOptions":"640"},{"hashOfOptions":"641"},{"hashOfOptions":"642"},{"hashOfOptions":"643"},{"hashOfOptions":"644"},{"hashOfOptions":"645"},{"hashOfOptions":"646"},{"hashOfOptions":"647"},{"hashOfOptions":"648"},{"hashOfOptions":"649"},{"hashOfOptions":"650"},{"hashOfOptions":"651"},{"hashOfOptions":"652"},{"hashOfOptions":"653"},{"hashOfOptions":"654"},{"hashOfOptions":"655"},{"hashOfOptions":"656"},{"hashOfOptions":"657"},{"hashOfOptions":"658"},{"hashOfOptions":"659"},{"hashOfOptions":"660"},{"hashOfOptions":"661"},{"hashOfOptions":"662"},{"hashOfOptions":"663"},{"hashOfOptions":"664"},{"hashOfOptions":"665"},{"hashOfOptions":"666"},{"hashOfOptions":"667"},{"hashOfOptions":"668"},{"hashOfOptions":"669"},{"hashOfOptions":"670"},{"hashOfOptions":"671"},{"hashOfOptions":"672"},{"hashOfOptions":"673"},{"hashOfOptions":"674"},{"hashOfOptions":"675"},{"hashOfOptions":"676"},{"hashOfOptions":"677"},{"hashOfOptions":"678"},{"hashOfOptions":"679"},{"hashOfOptions":"680"},{"hashOfOptions":"681"},{"hashOfOptions":"682"},{"hashOfOptions":"683"},{"hashOfOptions":"684"},{"hashOfOptions":"685"},{"hashOfOptions":"686"},{"hashOfOptions":"687"},{"hashOfOptions":"688"},{"hashOfOptions":"689"},{"hashOfOptions":"690"},{"hashOfOptions":"691"},{"hashOfOptions":"692"},{"hashOfOptions":"693"},{"hashOfOptions":"694"},{"hashOfOptions":"695"},{"hashOfOptions":"696"},{"hashOfOptions":"697"},{"hashOfOptions":"698"},{"hashOfOptions":"699"},{"hashOfOptions":"700"},{"hashOfOptions":"701"},{"hashOfOptions":"702"},{"hashOfOptions":"703"},{"hashOfOptions":"704"},{"hashOfOptions":"705"},{"hashOfOptions":"706"},{"hashOfOptions":"707"},{"hashOfOptions":"708"},{"hashOfOptions":"709"},{"hashOfOptions":"710"},{"hashOfOptions":"711"},{"hashOfOptions":"712"},{"hashOfOptions":"713"},{"hashOfOptions":"714"},{"hashOfOptions":"715"},{"hashOfOptions":"716"},{"hashOfOptions":"717"},{"hashOfOptions":"718"},{"hashOfOptions":"719"},{"hashOfOptions":"720"},{"hashOfOptions":"721"},{"hashOfOptions":"722"},{"hashOfOptions":"723"},{"hashOfOptions":"724"},{"hashOfOptions":"725"},{"hashOfOptions":"726"},{"hashOfOptions":"727"},{"hashOfOptions":"728"},{"hashOfOptions":"729"},{"hashOfOptions":"730"},{"hashOfOptions":"731"},{"hashOfOptions":"732"},{"hashOfOptions":"733"},{"hashOfOptions":"734"},{"hashOfOptions":"735"},{"hashOfOptions":"736"},{"hashOfOptions":"737"},{"hashOfOptions":"738"},{"hashOfOptions":"739"},{"hashOfOptions":"740"},{"hashOfOptions":"741"},"3174318977","3027776095","2752525295","4056464497","2884998703","2740523755","1813440629","3388250201","690178183","3813679685","2187947972","1017043296","3112804596","1754152750","141682634","2679009374","64323143","2329939731","1062100573","4250475049","2056043598","2557932808","2783655352","3285544562","3165323527","1230131447","2983563079","2806039897","2309962273","3186335077","2289962865","2158812429","609131101","1857125487","103898507","4115016059","1888159624","2852567190","3665466964","1987221718","498463776","4100936202","3977063154","1977206528","2389866","1038307308","3844516662","3225575540","540490229","469573145","2394431479","2961335633","2527097825","1461122143","749305903","3026321677","3593225831","1578183415","3226803156","3437742858","647855556","1038639714","1996853954","3858693354","2488828448","1645632986","163279052","1121493292","3412192527","992384079","556037205","2312813975","2463278117","106750209","117023417","3902090091","3259085958","2013426502","2417057298","3417448880","105172542","4116859098","3986697712","1064512092","210993532","4053173786","2025707860","549503556","782213863","1548039231","404460667","2387585913","24613019","3271263255","348418641","672678569","1132072421","1173250447","752224773","2395902593","1968773778","946171930","1534978556","1866803844","2453054097","1670974097","2930943147","1090914181","2646679621","3088779003","2398585851","2497147925","1347666927","2477806683","3238182152","894443230","2190924506","2084119482","397496516","2289267742","4240496116","1242010096","3478128346","787565323","649089113","3079540331","1515177077","3729720943","2130625921","3451197580","2883497740","2513651902","651344630","2187872520","17802080","1872835944","1027359080","3157440652","84911266","3611109494","307588136","3731976460","973537054","946483062","2508560850","1956040062","951376886"]
\ No newline at end of file
diff --git a/packages/ui/.cache/tsbuildinfo.json b/packages/ui/.cache/tsbuildinfo.json
index 760902e..70ec1d2 100644
--- a/packages/ui/.cache/tsbuildinfo.json
+++ b/packages/ui/.cache/tsbuildinfo.json
@@ -1,10982 +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.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.decorators.d.ts",
- "../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts",
- "../../../node_modules/@types/react/global.d.ts",
- "../../../node_modules/csstype/index.d.ts",
- "../../../node_modules/@types/react/index.d.ts",
- "../../../node_modules/lucide-react/dist/lucide-react.d.ts",
- "../../../node_modules/@radix-ui/react-accessible-icon/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-context/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-primitive/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-collapsible/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-accordion/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-dismissable-layer/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-focus-scope/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-portal/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-dialog/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-alert-dialog/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-aspect-ratio/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-avatar/dist/index.d.mts",
- "../../../node_modules/@types/react/jsx-runtime.d.ts",
- "../../../node_modules/@radix-ui/react-checkbox/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-arrow/dist/index.d.mts",
- "../../../node_modules/@radix-ui/rect/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-popper/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-roving-focus/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-menu/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-context-menu/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-direction/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-dropdown-menu/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-label/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-form/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-hover-card/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-menubar/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-visually-hidden/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-navigation-menu/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-one-time-password-field/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-password-toggle-field/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-popover/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-progress/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-radio-group/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-scroll-area/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-select/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-separator/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-slider/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-slot/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-switch/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-tabs/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-toast/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-toggle/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-toggle-group/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-toolbar/dist/index.d.mts",
- "../../../node_modules/@radix-ui/react-tooltip/dist/index.d.mts",
- "../../../node_modules/radix-ui/dist/index.d.mts",
- "../../../node_modules/clsx/clsx.d.mts",
- "../../../node_modules/class-variance-authority/dist/types.d.ts",
- "../../../node_modules/class-variance-authority/dist/index.d.ts",
- "../../../node_modules/tailwind-merge/dist/types.d.ts",
- "../src/alert.tsx",
- "../src/alert-dialog.tsx",
- "../src/aspect-ratio.tsx",
- "../src/avatar.tsx",
- "../src/badge.tsx",
- "../src/based-avatar.tsx",
- "../src/based-progress.tsx",
- "../src/breadcrumb.tsx",
- "../src/button.tsx",
- "../src/button-group.tsx",
- "../../../node_modules/@date-fns/tz/constants/index.d.ts",
- "../../../node_modules/@date-fns/tz/date/index.d.ts",
- "../../../node_modules/@date-fns/tz/date/mini.d.ts",
- "../../../node_modules/@date-fns/tz/tz/index.d.ts",
- "../../../node_modules/@date-fns/tz/tzOffset/index.d.ts",
- "../../../node_modules/@date-fns/tz/tzScan/index.d.ts",
- "../../../node_modules/@date-fns/tz/tzName/index.d.ts",
- "../../../node_modules/@date-fns/tz/index.d.ts",
- "../../../node_modules/date-fns/constants.d.ts",
- "../../../node_modules/date-fns/locale/types.d.ts",
- "../../../node_modules/date-fns/fp/types.d.ts",
- "../../../node_modules/date-fns/types.d.ts",
- "../../../node_modules/date-fns/add.d.ts",
- "../../../node_modules/date-fns/addBusinessDays.d.ts",
- "../../../node_modules/date-fns/addDays.d.ts",
- "../../../node_modules/date-fns/addHours.d.ts",
- "../../../node_modules/date-fns/addISOWeekYears.d.ts",
- "../../../node_modules/date-fns/addMilliseconds.d.ts",
- "../../../node_modules/date-fns/addMinutes.d.ts",
- "../../../node_modules/date-fns/addMonths.d.ts",
- "../../../node_modules/date-fns/addQuarters.d.ts",
- "../../../node_modules/date-fns/addSeconds.d.ts",
- "../../../node_modules/date-fns/addWeeks.d.ts",
- "../../../node_modules/date-fns/addYears.d.ts",
- "../../../node_modules/date-fns/areIntervalsOverlapping.d.ts",
- "../../../node_modules/date-fns/clamp.d.ts",
- "../../../node_modules/date-fns/closestIndexTo.d.ts",
- "../../../node_modules/date-fns/closestTo.d.ts",
- "../../../node_modules/date-fns/compareAsc.d.ts",
- "../../../node_modules/date-fns/compareDesc.d.ts",
- "../../../node_modules/date-fns/constructFrom.d.ts",
- "../../../node_modules/date-fns/constructNow.d.ts",
- "../../../node_modules/date-fns/daysToWeeks.d.ts",
- "../../../node_modules/date-fns/differenceInBusinessDays.d.ts",
- "../../../node_modules/date-fns/differenceInCalendarDays.d.ts",
- "../../../node_modules/date-fns/differenceInCalendarISOWeekYears.d.ts",
- "../../../node_modules/date-fns/differenceInCalendarISOWeeks.d.ts",
- "../../../node_modules/date-fns/differenceInCalendarMonths.d.ts",
- "../../../node_modules/date-fns/differenceInCalendarQuarters.d.ts",
- "../../../node_modules/date-fns/differenceInCalendarWeeks.d.ts",
- "../../../node_modules/date-fns/differenceInCalendarYears.d.ts",
- "../../../node_modules/date-fns/differenceInDays.d.ts",
- "../../../node_modules/date-fns/differenceInHours.d.ts",
- "../../../node_modules/date-fns/differenceInISOWeekYears.d.ts",
- "../../../node_modules/date-fns/differenceInMilliseconds.d.ts",
- "../../../node_modules/date-fns/differenceInMinutes.d.ts",
- "../../../node_modules/date-fns/differenceInMonths.d.ts",
- "../../../node_modules/date-fns/differenceInQuarters.d.ts",
- "../../../node_modules/date-fns/differenceInSeconds.d.ts",
- "../../../node_modules/date-fns/differenceInWeeks.d.ts",
- "../../../node_modules/date-fns/differenceInYears.d.ts",
- "../../../node_modules/date-fns/eachDayOfInterval.d.ts",
- "../../../node_modules/date-fns/eachHourOfInterval.d.ts",
- "../../../node_modules/date-fns/eachMinuteOfInterval.d.ts",
- "../../../node_modules/date-fns/eachMonthOfInterval.d.ts",
- "../../../node_modules/date-fns/eachQuarterOfInterval.d.ts",
- "../../../node_modules/date-fns/eachWeekOfInterval.d.ts",
- "../../../node_modules/date-fns/eachWeekendOfInterval.d.ts",
- "../../../node_modules/date-fns/eachWeekendOfMonth.d.ts",
- "../../../node_modules/date-fns/eachWeekendOfYear.d.ts",
- "../../../node_modules/date-fns/eachYearOfInterval.d.ts",
- "../../../node_modules/date-fns/endOfDay.d.ts",
- "../../../node_modules/date-fns/endOfDecade.d.ts",
- "../../../node_modules/date-fns/endOfHour.d.ts",
- "../../../node_modules/date-fns/endOfISOWeek.d.ts",
- "../../../node_modules/date-fns/endOfISOWeekYear.d.ts",
- "../../../node_modules/date-fns/endOfMinute.d.ts",
- "../../../node_modules/date-fns/endOfMonth.d.ts",
- "../../../node_modules/date-fns/endOfQuarter.d.ts",
- "../../../node_modules/date-fns/endOfSecond.d.ts",
- "../../../node_modules/date-fns/endOfToday.d.ts",
- "../../../node_modules/date-fns/endOfTomorrow.d.ts",
- "../../../node_modules/date-fns/endOfWeek.d.ts",
- "../../../node_modules/date-fns/endOfYear.d.ts",
- "../../../node_modules/date-fns/endOfYesterday.d.ts",
- "../../../node_modules/date-fns/_lib/format/formatters.d.ts",
- "../../../node_modules/date-fns/_lib/format/longFormatters.d.ts",
- "../../../node_modules/date-fns/format.d.ts",
- "../../../node_modules/date-fns/formatDistance.d.ts",
- "../../../node_modules/date-fns/formatDistanceStrict.d.ts",
- "../../../node_modules/date-fns/formatDistanceToNow.d.ts",
- "../../../node_modules/date-fns/formatDistanceToNowStrict.d.ts",
- "../../../node_modules/date-fns/formatDuration.d.ts",
- "../../../node_modules/date-fns/formatISO.d.ts",
- "../../../node_modules/date-fns/formatISO9075.d.ts",
- "../../../node_modules/date-fns/formatISODuration.d.ts",
- "../../../node_modules/date-fns/formatRFC3339.d.ts",
- "../../../node_modules/date-fns/formatRFC7231.d.ts",
- "../../../node_modules/date-fns/formatRelative.d.ts",
- "../../../node_modules/date-fns/fromUnixTime.d.ts",
- "../../../node_modules/date-fns/getDate.d.ts",
- "../../../node_modules/date-fns/getDay.d.ts",
- "../../../node_modules/date-fns/getDayOfYear.d.ts",
- "../../../node_modules/date-fns/getDaysInMonth.d.ts",
- "../../../node_modules/date-fns/getDaysInYear.d.ts",
- "../../../node_modules/date-fns/getDecade.d.ts",
- "../../../node_modules/date-fns/_lib/defaultOptions.d.ts",
- "../../../node_modules/date-fns/getDefaultOptions.d.ts",
- "../../../node_modules/date-fns/getHours.d.ts",
- "../../../node_modules/date-fns/getISODay.d.ts",
- "../../../node_modules/date-fns/getISOWeek.d.ts",
- "../../../node_modules/date-fns/getISOWeekYear.d.ts",
- "../../../node_modules/date-fns/getISOWeeksInYear.d.ts",
- "../../../node_modules/date-fns/getMilliseconds.d.ts",
- "../../../node_modules/date-fns/getMinutes.d.ts",
- "../../../node_modules/date-fns/getMonth.d.ts",
- "../../../node_modules/date-fns/getOverlappingDaysInIntervals.d.ts",
- "../../../node_modules/date-fns/getQuarter.d.ts",
- "../../../node_modules/date-fns/getSeconds.d.ts",
- "../../../node_modules/date-fns/getTime.d.ts",
- "../../../node_modules/date-fns/getUnixTime.d.ts",
- "../../../node_modules/date-fns/getWeek.d.ts",
- "../../../node_modules/date-fns/getWeekOfMonth.d.ts",
- "../../../node_modules/date-fns/getWeekYear.d.ts",
- "../../../node_modules/date-fns/getWeeksInMonth.d.ts",
- "../../../node_modules/date-fns/getYear.d.ts",
- "../../../node_modules/date-fns/hoursToMilliseconds.d.ts",
- "../../../node_modules/date-fns/hoursToMinutes.d.ts",
- "../../../node_modules/date-fns/hoursToSeconds.d.ts",
- "../../../node_modules/date-fns/interval.d.ts",
- "../../../node_modules/date-fns/intervalToDuration.d.ts",
- "../../../node_modules/date-fns/intlFormat.d.ts",
- "../../../node_modules/date-fns/intlFormatDistance.d.ts",
- "../../../node_modules/date-fns/isAfter.d.ts",
- "../../../node_modules/date-fns/isBefore.d.ts",
- "../../../node_modules/date-fns/isDate.d.ts",
- "../../../node_modules/date-fns/isEqual.d.ts",
- "../../../node_modules/date-fns/isExists.d.ts",
- "../../../node_modules/date-fns/isFirstDayOfMonth.d.ts",
- "../../../node_modules/date-fns/isFriday.d.ts",
- "../../../node_modules/date-fns/isFuture.d.ts",
- "../../../node_modules/date-fns/isLastDayOfMonth.d.ts",
- "../../../node_modules/date-fns/isLeapYear.d.ts",
- "../../../node_modules/date-fns/isMatch.d.ts",
- "../../../node_modules/date-fns/isMonday.d.ts",
- "../../../node_modules/date-fns/isPast.d.ts",
- "../../../node_modules/date-fns/isSameDay.d.ts",
- "../../../node_modules/date-fns/isSameHour.d.ts",
- "../../../node_modules/date-fns/isSameISOWeek.d.ts",
- "../../../node_modules/date-fns/isSameISOWeekYear.d.ts",
- "../../../node_modules/date-fns/isSameMinute.d.ts",
- "../../../node_modules/date-fns/isSameMonth.d.ts",
- "../../../node_modules/date-fns/isSameQuarter.d.ts",
- "../../../node_modules/date-fns/isSameSecond.d.ts",
- "../../../node_modules/date-fns/isSameWeek.d.ts",
- "../../../node_modules/date-fns/isSameYear.d.ts",
- "../../../node_modules/date-fns/isSaturday.d.ts",
- "../../../node_modules/date-fns/isSunday.d.ts",
- "../../../node_modules/date-fns/isThisHour.d.ts",
- "../../../node_modules/date-fns/isThisISOWeek.d.ts",
- "../../../node_modules/date-fns/isThisMinute.d.ts",
- "../../../node_modules/date-fns/isThisMonth.d.ts",
- "../../../node_modules/date-fns/isThisQuarter.d.ts",
- "../../../node_modules/date-fns/isThisSecond.d.ts",
- "../../../node_modules/date-fns/isThisWeek.d.ts",
- "../../../node_modules/date-fns/isThisYear.d.ts",
- "../../../node_modules/date-fns/isThursday.d.ts",
- "../../../node_modules/date-fns/isToday.d.ts",
- "../../../node_modules/date-fns/isTomorrow.d.ts",
- "../../../node_modules/date-fns/isTuesday.d.ts",
- "../../../node_modules/date-fns/isValid.d.ts",
- "../../../node_modules/date-fns/isWednesday.d.ts",
- "../../../node_modules/date-fns/isWeekend.d.ts",
- "../../../node_modules/date-fns/isWithinInterval.d.ts",
- "../../../node_modules/date-fns/isYesterday.d.ts",
- "../../../node_modules/date-fns/lastDayOfDecade.d.ts",
- "../../../node_modules/date-fns/lastDayOfISOWeek.d.ts",
- "../../../node_modules/date-fns/lastDayOfISOWeekYear.d.ts",
- "../../../node_modules/date-fns/lastDayOfMonth.d.ts",
- "../../../node_modules/date-fns/lastDayOfQuarter.d.ts",
- "../../../node_modules/date-fns/lastDayOfWeek.d.ts",
- "../../../node_modules/date-fns/lastDayOfYear.d.ts",
- "../../../node_modules/date-fns/_lib/format/lightFormatters.d.ts",
- "../../../node_modules/date-fns/lightFormat.d.ts",
- "../../../node_modules/date-fns/max.d.ts",
- "../../../node_modules/date-fns/milliseconds.d.ts",
- "../../../node_modules/date-fns/millisecondsToHours.d.ts",
- "../../../node_modules/date-fns/millisecondsToMinutes.d.ts",
- "../../../node_modules/date-fns/millisecondsToSeconds.d.ts",
- "../../../node_modules/date-fns/min.d.ts",
- "../../../node_modules/date-fns/minutesToHours.d.ts",
- "../../../node_modules/date-fns/minutesToMilliseconds.d.ts",
- "../../../node_modules/date-fns/minutesToSeconds.d.ts",
- "../../../node_modules/date-fns/monthsToQuarters.d.ts",
- "../../../node_modules/date-fns/monthsToYears.d.ts",
- "../../../node_modules/date-fns/nextDay.d.ts",
- "../../../node_modules/date-fns/nextFriday.d.ts",
- "../../../node_modules/date-fns/nextMonday.d.ts",
- "../../../node_modules/date-fns/nextSaturday.d.ts",
- "../../../node_modules/date-fns/nextSunday.d.ts",
- "../../../node_modules/date-fns/nextThursday.d.ts",
- "../../../node_modules/date-fns/nextTuesday.d.ts",
- "../../../node_modules/date-fns/nextWednesday.d.ts",
- "../../../node_modules/date-fns/parse/_lib/types.d.ts",
- "../../../node_modules/date-fns/parse/_lib/Setter.d.ts",
- "../../../node_modules/date-fns/parse/_lib/Parser.d.ts",
- "../../../node_modules/date-fns/parse/_lib/parsers.d.ts",
- "../../../node_modules/date-fns/parse.d.ts",
- "../../../node_modules/date-fns/parseISO.d.ts",
- "../../../node_modules/date-fns/parseJSON.d.ts",
- "../../../node_modules/date-fns/previousDay.d.ts",
- "../../../node_modules/date-fns/previousFriday.d.ts",
- "../../../node_modules/date-fns/previousMonday.d.ts",
- "../../../node_modules/date-fns/previousSaturday.d.ts",
- "../../../node_modules/date-fns/previousSunday.d.ts",
- "../../../node_modules/date-fns/previousThursday.d.ts",
- "../../../node_modules/date-fns/previousTuesday.d.ts",
- "../../../node_modules/date-fns/previousWednesday.d.ts",
- "../../../node_modules/date-fns/quartersToMonths.d.ts",
- "../../../node_modules/date-fns/quartersToYears.d.ts",
- "../../../node_modules/date-fns/roundToNearestHours.d.ts",
- "../../../node_modules/date-fns/roundToNearestMinutes.d.ts",
- "../../../node_modules/date-fns/secondsToHours.d.ts",
- "../../../node_modules/date-fns/secondsToMilliseconds.d.ts",
- "../../../node_modules/date-fns/secondsToMinutes.d.ts",
- "../../../node_modules/date-fns/set.d.ts",
- "../../../node_modules/date-fns/setDate.d.ts",
- "../../../node_modules/date-fns/setDay.d.ts",
- "../../../node_modules/date-fns/setDayOfYear.d.ts",
- "../../../node_modules/date-fns/setDefaultOptions.d.ts",
- "../../../node_modules/date-fns/setHours.d.ts",
- "../../../node_modules/date-fns/setISODay.d.ts",
- "../../../node_modules/date-fns/setISOWeek.d.ts",
- "../../../node_modules/date-fns/setISOWeekYear.d.ts",
- "../../../node_modules/date-fns/setMilliseconds.d.ts",
- "../../../node_modules/date-fns/setMinutes.d.ts",
- "../../../node_modules/date-fns/setMonth.d.ts",
- "../../../node_modules/date-fns/setQuarter.d.ts",
- "../../../node_modules/date-fns/setSeconds.d.ts",
- "../../../node_modules/date-fns/setWeek.d.ts",
- "../../../node_modules/date-fns/setWeekYear.d.ts",
- "../../../node_modules/date-fns/setYear.d.ts",
- "../../../node_modules/date-fns/startOfDay.d.ts",
- "../../../node_modules/date-fns/startOfDecade.d.ts",
- "../../../node_modules/date-fns/startOfHour.d.ts",
- "../../../node_modules/date-fns/startOfISOWeek.d.ts",
- "../../../node_modules/date-fns/startOfISOWeekYear.d.ts",
- "../../../node_modules/date-fns/startOfMinute.d.ts",
- "../../../node_modules/date-fns/startOfMonth.d.ts",
- "../../../node_modules/date-fns/startOfQuarter.d.ts",
- "../../../node_modules/date-fns/startOfSecond.d.ts",
- "../../../node_modules/date-fns/startOfToday.d.ts",
- "../../../node_modules/date-fns/startOfTomorrow.d.ts",
- "../../../node_modules/date-fns/startOfWeek.d.ts",
- "../../../node_modules/date-fns/startOfWeekYear.d.ts",
- "../../../node_modules/date-fns/startOfYear.d.ts",
- "../../../node_modules/date-fns/startOfYesterday.d.ts",
- "../../../node_modules/date-fns/sub.d.ts",
- "../../../node_modules/date-fns/subBusinessDays.d.ts",
- "../../../node_modules/date-fns/subDays.d.ts",
- "../../../node_modules/date-fns/subHours.d.ts",
- "../../../node_modules/date-fns/subISOWeekYears.d.ts",
- "../../../node_modules/date-fns/subMilliseconds.d.ts",
- "../../../node_modules/date-fns/subMinutes.d.ts",
- "../../../node_modules/date-fns/subMonths.d.ts",
- "../../../node_modules/date-fns/subQuarters.d.ts",
- "../../../node_modules/date-fns/subSeconds.d.ts",
- "../../../node_modules/date-fns/subWeeks.d.ts",
- "../../../node_modules/date-fns/subYears.d.ts",
- "../../../node_modules/date-fns/toDate.d.ts",
- "../../../node_modules/date-fns/transpose.d.ts",
- "../../../node_modules/date-fns/weeksToDays.d.ts",
- "../../../node_modules/date-fns/yearsToDays.d.ts",
- "../../../node_modules/date-fns/yearsToMonths.d.ts",
- "../../../node_modules/date-fns/yearsToQuarters.d.ts",
- "../../../node_modules/date-fns/index.d.ts",
- "../../../node_modules/date-fns/locale/af.d.ts",
- "../../../node_modules/date-fns/locale/ar.d.ts",
- "../../../node_modules/date-fns/locale/ar-DZ.d.ts",
- "../../../node_modules/date-fns/locale/ar-EG.d.ts",
- "../../../node_modules/date-fns/locale/ar-MA.d.ts",
- "../../../node_modules/date-fns/locale/ar-SA.d.ts",
- "../../../node_modules/date-fns/locale/ar-TN.d.ts",
- "../../../node_modules/date-fns/locale/az.d.ts",
- "../../../node_modules/date-fns/locale/be.d.ts",
- "../../../node_modules/date-fns/locale/be-tarask.d.ts",
- "../../../node_modules/date-fns/locale/bg.d.ts",
- "../../../node_modules/date-fns/locale/bn.d.ts",
- "../../../node_modules/date-fns/locale/bs.d.ts",
- "../../../node_modules/date-fns/locale/ca.d.ts",
- "../../../node_modules/date-fns/locale/ckb.d.ts",
- "../../../node_modules/date-fns/locale/cs.d.ts",
- "../../../node_modules/date-fns/locale/cy.d.ts",
- "../../../node_modules/date-fns/locale/da.d.ts",
- "../../../node_modules/date-fns/locale/de.d.ts",
- "../../../node_modules/date-fns/locale/de-AT.d.ts",
- "../../../node_modules/date-fns/locale/el.d.ts",
- "../../../node_modules/date-fns/locale/en-AU.d.ts",
- "../../../node_modules/date-fns/locale/en-CA.d.ts",
- "../../../node_modules/date-fns/locale/en-GB.d.ts",
- "../../../node_modules/date-fns/locale/en-IE.d.ts",
- "../../../node_modules/date-fns/locale/en-IN.d.ts",
- "../../../node_modules/date-fns/locale/en-NZ.d.ts",
- "../../../node_modules/date-fns/locale/en-US.d.ts",
- "../../../node_modules/date-fns/locale/en-ZA.d.ts",
- "../../../node_modules/date-fns/locale/eo.d.ts",
- "../../../node_modules/date-fns/locale/es.d.ts",
- "../../../node_modules/date-fns/locale/et.d.ts",
- "../../../node_modules/date-fns/locale/eu.d.ts",
- "../../../node_modules/date-fns/locale/fa-IR.d.ts",
- "../../../node_modules/date-fns/locale/fi.d.ts",
- "../../../node_modules/date-fns/locale/fr.d.ts",
- "../../../node_modules/date-fns/locale/fr-CA.d.ts",
- "../../../node_modules/date-fns/locale/fr-CH.d.ts",
- "../../../node_modules/date-fns/locale/fy.d.ts",
- "../../../node_modules/date-fns/locale/gd.d.ts",
- "../../../node_modules/date-fns/locale/gl.d.ts",
- "../../../node_modules/date-fns/locale/gu.d.ts",
- "../../../node_modules/date-fns/locale/he.d.ts",
- "../../../node_modules/date-fns/locale/hi.d.ts",
- "../../../node_modules/date-fns/locale/hr.d.ts",
- "../../../node_modules/date-fns/locale/ht.d.ts",
- "../../../node_modules/date-fns/locale/hu.d.ts",
- "../../../node_modules/date-fns/locale/hy.d.ts",
- "../../../node_modules/date-fns/locale/id.d.ts",
- "../../../node_modules/date-fns/locale/is.d.ts",
- "../../../node_modules/date-fns/locale/it.d.ts",
- "../../../node_modules/date-fns/locale/it-CH.d.ts",
- "../../../node_modules/date-fns/locale/ja.d.ts",
- "../../../node_modules/date-fns/locale/ja-Hira.d.ts",
- "../../../node_modules/date-fns/locale/ka.d.ts",
- "../../../node_modules/date-fns/locale/kk.d.ts",
- "../../../node_modules/date-fns/locale/km.d.ts",
- "../../../node_modules/date-fns/locale/kn.d.ts",
- "../../../node_modules/date-fns/locale/ko.d.ts",
- "../../../node_modules/date-fns/locale/lb.d.ts",
- "../../../node_modules/date-fns/locale/lt.d.ts",
- "../../../node_modules/date-fns/locale/lv.d.ts",
- "../../../node_modules/date-fns/locale/mk.d.ts",
- "../../../node_modules/date-fns/locale/mn.d.ts",
- "../../../node_modules/date-fns/locale/ms.d.ts",
- "../../../node_modules/date-fns/locale/mt.d.ts",
- "../../../node_modules/date-fns/locale/nb.d.ts",
- "../../../node_modules/date-fns/locale/nl.d.ts",
- "../../../node_modules/date-fns/locale/nl-BE.d.ts",
- "../../../node_modules/date-fns/locale/nn.d.ts",
- "../../../node_modules/date-fns/locale/oc.d.ts",
- "../../../node_modules/date-fns/locale/pl.d.ts",
- "../../../node_modules/date-fns/locale/pt.d.ts",
- "../../../node_modules/date-fns/locale/pt-BR.d.ts",
- "../../../node_modules/date-fns/locale/ro.d.ts",
- "../../../node_modules/date-fns/locale/ru.d.ts",
- "../../../node_modules/date-fns/locale/se.d.ts",
- "../../../node_modules/date-fns/locale/sk.d.ts",
- "../../../node_modules/date-fns/locale/sl.d.ts",
- "../../../node_modules/date-fns/locale/sq.d.ts",
- "../../../node_modules/date-fns/locale/sr.d.ts",
- "../../../node_modules/date-fns/locale/sr-Latn.d.ts",
- "../../../node_modules/date-fns/locale/sv.d.ts",
- "../../../node_modules/date-fns/locale/ta.d.ts",
- "../../../node_modules/date-fns/locale/te.d.ts",
- "../../../node_modules/date-fns/locale/th.d.ts",
- "../../../node_modules/date-fns/locale/tr.d.ts",
- "../../../node_modules/date-fns/locale/ug.d.ts",
- "../../../node_modules/date-fns/locale/uk.d.ts",
- "../../../node_modules/date-fns/locale/uz.d.ts",
- "../../../node_modules/date-fns/locale/uz-Cyrl.d.ts",
- "../../../node_modules/date-fns/locale/vi.d.ts",
- "../../../node_modules/date-fns/locale/zh-CN.d.ts",
- "../../../node_modules/date-fns/locale/zh-HK.d.ts",
- "../../../node_modules/date-fns/locale/zh-TW.d.ts",
- "../../../node_modules/date-fns/locale.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/components/Button.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/components/CaptionLabel.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/components/Chevron.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/components/MonthCaption.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/components/Week.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/labels/labelDayButton.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/labels/labelGrid.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/labels/labelGridcell.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/labels/labelMonthDropdown.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/labels/labelNav.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/labels/labelNext.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/labels/labelPrevious.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/labels/labelWeekday.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/labels/labelWeekNumber.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/labels/labelWeekNumberHeader.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/labels/labelYearDropdown.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/labels/index.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/UI.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/classes/CalendarWeek.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/classes/CalendarMonth.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/types/props.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/types/selection.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/useDayPicker.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/types/deprecated.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/types/index.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/components/Day.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/components/DayButton.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/components/Dropdown.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/components/DropdownNav.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/components/Footer.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/components/Month.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/components/MonthGrid.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/components/Months.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/components/MonthsDropdown.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/components/Nav.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/components/NextMonthButton.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/components/Option.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/components/PreviousMonthButton.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/components/Root.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/components/Select.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/components/Weekday.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/components/Weekdays.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/components/WeekNumber.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/components/WeekNumberHeader.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/components/Weeks.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/components/YearsDropdown.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/components/custom-components.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/formatters/formatCaption.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/formatters/formatDay.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/formatters/formatMonthDropdown.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/formatters/formatWeekdayName.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/formatters/formatWeekNumber.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/formatters/formatWeekNumberHeader.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/formatters/formatYearDropdown.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/formatters/index.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/types/shared.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/locale/en-US.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/classes/DateLib.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/classes/CalendarDay.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/classes/index.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/DayPicker.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/helpers/getDefaultClassNames.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/helpers/index.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/utils/addToRange.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/utils/dateMatchModifiers.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/utils/rangeContainsDayOfWeek.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/utils/rangeContainsModifiers.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/utils/rangeIncludesDate.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/utils/rangeOverlaps.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/utils/typeguards.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/utils/index.d.ts",
- "../../../node_modules/react-day-picker/dist/esm/index.d.ts",
- "../src/calendar.tsx",
- "../src/card.tsx",
- "../../../node_modules/embla-carousel/esm/components/Alignment.d.ts",
- "../../../node_modules/embla-carousel/esm/components/NodeRects.d.ts",
- "../../../node_modules/embla-carousel/esm/components/Axis.d.ts",
- "../../../node_modules/embla-carousel/esm/components/SlidesToScroll.d.ts",
- "../../../node_modules/embla-carousel/esm/components/Limit.d.ts",
- "../../../node_modules/embla-carousel/esm/components/ScrollContain.d.ts",
- "../../../node_modules/embla-carousel/esm/components/DragTracker.d.ts",
- "../../../node_modules/embla-carousel/esm/components/utils.d.ts",
- "../../../node_modules/embla-carousel/esm/components/Animations.d.ts",
- "../../../node_modules/embla-carousel/esm/components/Counter.d.ts",
- "../../../node_modules/embla-carousel/esm/components/EventHandler.d.ts",
- "../../../node_modules/embla-carousel/esm/components/EventStore.d.ts",
- "../../../node_modules/embla-carousel/esm/components/PercentOfView.d.ts",
- "../../../node_modules/embla-carousel/esm/components/ResizeHandler.d.ts",
- "../../../node_modules/embla-carousel/esm/components/Vector1d.d.ts",
- "../../../node_modules/embla-carousel/esm/components/ScrollBody.d.ts",
- "../../../node_modules/embla-carousel/esm/components/ScrollBounds.d.ts",
- "../../../node_modules/embla-carousel/esm/components/ScrollLooper.d.ts",
- "../../../node_modules/embla-carousel/esm/components/ScrollProgress.d.ts",
- "../../../node_modules/embla-carousel/esm/components/SlideRegistry.d.ts",
- "../../../node_modules/embla-carousel/esm/components/ScrollTarget.d.ts",
- "../../../node_modules/embla-carousel/esm/components/ScrollTo.d.ts",
- "../../../node_modules/embla-carousel/esm/components/SlideFocus.d.ts",
- "../../../node_modules/embla-carousel/esm/components/Translate.d.ts",
- "../../../node_modules/embla-carousel/esm/components/SlideLooper.d.ts",
- "../../../node_modules/embla-carousel/esm/components/SlidesHandler.d.ts",
- "../../../node_modules/embla-carousel/esm/components/SlidesInView.d.ts",
- "../../../node_modules/embla-carousel/esm/components/Engine.d.ts",
- "../../../node_modules/embla-carousel/esm/components/OptionsHandler.d.ts",
- "../../../node_modules/embla-carousel/esm/components/Plugins.d.ts",
- "../../../node_modules/embla-carousel/esm/components/EmblaCarousel.d.ts",
- "../../../node_modules/embla-carousel/esm/components/DragHandler.d.ts",
- "../../../node_modules/embla-carousel/esm/components/Options.d.ts",
- "../../../node_modules/embla-carousel/esm/index.d.ts",
- "../../../node_modules/embla-carousel-react/esm/components/useEmblaCarousel.d.ts",
- "../../../node_modules/embla-carousel-react/esm/index.d.ts",
- "../src/carousel.tsx",
- "../../../node_modules/@types/d3-time/index.d.ts",
- "../../../node_modules/@types/d3-scale/index.d.ts",
- "../../../node_modules/victory-vendor/d3-scale.d.ts",
- "../../../node_modules/recharts/types/shape/Dot.d.ts",
- "../../../node_modules/recharts/types/component/Text.d.ts",
- "../../../node_modules/recharts/types/zIndex/ZIndexLayer.d.ts",
- "../../../node_modules/recharts/types/cartesian/getCartesianPosition.d.ts",
- "../../../node_modules/recharts/types/component/Label.d.ts",
- "../../../node_modules/recharts/types/cartesian/CartesianAxis.d.ts",
- "../../../node_modules/recharts/types/util/scale/CustomScaleDefinition.d.ts",
- "../../../node_modules/redux/dist/redux.d.ts",
- "../../../node_modules/@reduxjs/toolkit/node_modules/immer/dist/immer.d.ts",
- "../../../node_modules/reselect/dist/reselect.d.ts",
- "../../../node_modules/redux-thunk/dist/redux-thunk.d.ts",
- "../../../node_modules/@reduxjs/toolkit/dist/uncheckedindexed.ts",
- "../../../node_modules/@reduxjs/toolkit/dist/index.d.mts",
- "../../../node_modules/recharts/types/state/cartesianAxisSlice.d.ts",
- "../../../node_modules/recharts/types/synchronisation/types.d.ts",
- "../../../node_modules/recharts/types/chart/types.d.ts",
- "../../../node_modules/recharts/types/component/DefaultTooltipContent.d.ts",
- "../../../node_modules/recharts/types/context/brushUpdateContext.d.ts",
- "../../../node_modules/recharts/types/state/chartDataSlice.d.ts",
- "../../../node_modules/recharts/types/state/types/LineSettings.d.ts",
- "../../../node_modules/recharts/types/state/types/ScatterSettings.d.ts",
- "../../../node_modules/@types/d3-path/index.d.ts",
- "../../../node_modules/@types/d3-shape/index.d.ts",
- "../../../node_modules/victory-vendor/d3-shape.d.ts",
- "../../../node_modules/recharts/types/shape/Curve.d.ts",
- "../../../node_modules/recharts/types/component/LabelList.d.ts",
- "../../../node_modules/recharts/types/component/DefaultLegendContent.d.ts",
- "../../../node_modules/recharts/types/util/payload/getUniqPayload.d.ts",
- "../../../node_modules/recharts/types/util/useElementOffset.d.ts",
- "../../../node_modules/recharts/types/component/Legend.d.ts",
- "../../../node_modules/recharts/types/state/legendSlice.d.ts",
- "../../../node_modules/recharts/types/state/types/StackedGraphicalItem.d.ts",
- "../../../node_modules/recharts/types/util/stacks/stackTypes.d.ts",
- "../../../node_modules/recharts/types/util/scale/RechartsScale.d.ts",
- "../../../node_modules/recharts/types/util/ChartUtils.d.ts",
- "../../../node_modules/recharts/types/state/selectors/areaSelectors.d.ts",
- "../../../node_modules/recharts/types/cartesian/Area.d.ts",
- "../../../node_modules/recharts/types/state/types/AreaSettings.d.ts",
- "../../../node_modules/recharts/types/animation/easing.d.ts",
- "../../../node_modules/recharts/types/shape/Rectangle.d.ts",
- "../../../node_modules/recharts/types/cartesian/Bar.d.ts",
- "../../../node_modules/recharts/types/util/BarUtils.d.ts",
- "../../../node_modules/recharts/types/state/types/BarSettings.d.ts",
- "../../../node_modules/recharts/types/state/types/RadialBarSettings.d.ts",
- "../../../node_modules/recharts/types/util/svgPropertiesNoEvents.d.ts",
- "../../../node_modules/recharts/types/util/useUniqueId.d.ts",
- "../../../node_modules/recharts/types/state/types/PieSettings.d.ts",
- "../../../node_modules/recharts/types/state/types/RadarSettings.d.ts",
- "../../../node_modules/recharts/types/state/graphicalItemsSlice.d.ts",
- "../../../node_modules/recharts/types/state/tooltipSlice.d.ts",
- "../../../node_modules/recharts/types/state/optionsSlice.d.ts",
- "../../../node_modules/recharts/types/state/layoutSlice.d.ts",
- "../../../node_modules/immer/dist/immer.d.ts",
- "../../../node_modules/recharts/types/util/IfOverflow.d.ts",
- "../../../node_modules/recharts/types/util/resolveDefaultProps.d.ts",
- "../../../node_modules/recharts/types/cartesian/ReferenceLine.d.ts",
- "../../../node_modules/recharts/types/state/referenceElementsSlice.d.ts",
- "../../../node_modules/recharts/types/state/brushSlice.d.ts",
- "../../../node_modules/recharts/types/state/rootPropsSlice.d.ts",
- "../../../node_modules/recharts/types/state/polarAxisSlice.d.ts",
- "../../../node_modules/recharts/types/state/polarOptionsSlice.d.ts",
- "../../../node_modules/recharts/types/cartesian/Line.d.ts",
- "../../../node_modules/recharts/types/util/Constants.d.ts",
- "../../../node_modules/recharts/types/util/ScatterUtils.d.ts",
- "../../../node_modules/recharts/types/shape/Symbols.d.ts",
- "../../../node_modules/recharts/types/cartesian/Scatter.d.ts",
- "../../../node_modules/recharts/types/cartesian/ErrorBar.d.ts",
- "../../../node_modules/recharts/types/state/errorBarSlice.d.ts",
- "../../../node_modules/recharts/types/state/zIndexSlice.d.ts",
- "../../../node_modules/recharts/types/state/eventSettingsSlice.d.ts",
- "../../../node_modules/recharts/types/state/renderedTicksSlice.d.ts",
- "../../../node_modules/recharts/types/state/store.d.ts",
- "../../../node_modules/recharts/types/cartesian/getTicks.d.ts",
- "../../../node_modules/recharts/types/cartesian/CartesianGrid.d.ts",
- "../../../node_modules/recharts/types/state/selectors/combiners/combineDisplayedStackedData.d.ts",
- "../../../node_modules/recharts/types/state/selectors/selectTooltipAxisType.d.ts",
- "../../../node_modules/recharts/types/types.d.ts",
- "../../../node_modules/recharts/types/hooks.d.ts",
- "../../../node_modules/recharts/types/state/selectors/axisSelectors.d.ts",
- "../../../node_modules/recharts/types/component/Dots.d.ts",
- "../../../node_modules/recharts/types/util/typedDataKey.d.ts",
- "../../../node_modules/recharts/types/util/types.d.ts",
- "../../../node_modules/recharts/types/container/Surface.d.ts",
- "../../../node_modules/recharts/types/container/Layer.d.ts",
- "../../../node_modules/recharts/types/component/Cursor.d.ts",
- "../../../node_modules/recharts/types/component/Tooltip.d.ts",
- "../../../node_modules/recharts/types/component/ResponsiveContainer.d.ts",
- "../../../node_modules/recharts/types/component/Cell.d.ts",
- "../../../node_modules/recharts/types/component/Customized.d.ts",
- "../../../node_modules/recharts/types/shape/Sector.d.ts",
- "../../../node_modules/recharts/types/shape/Polygon.d.ts",
- "../../../node_modules/recharts/types/shape/Cross.d.ts",
- "../../../node_modules/recharts/types/polar/PolarGrid.d.ts",
- "../../../node_modules/recharts/types/polar/defaultPolarRadiusAxisProps.d.ts",
- "../../../node_modules/recharts/types/polar/PolarRadiusAxis.d.ts",
- "../../../node_modules/recharts/types/polar/defaultPolarAngleAxisProps.d.ts",
- "../../../node_modules/recharts/types/polar/PolarAngleAxis.d.ts",
- "../../../node_modules/recharts/types/context/tooltipContext.d.ts",
- "../../../node_modules/recharts/types/polar/Pie.d.ts",
- "../../../node_modules/recharts/types/polar/Radar.d.ts",
- "../../../node_modules/recharts/types/util/RadialBarUtils.d.ts",
- "../../../node_modules/recharts/types/polar/RadialBar.d.ts",
- "../../../node_modules/recharts/types/cartesian/Brush.d.ts",
- "../../../node_modules/recharts/types/cartesian/ReferenceDot.d.ts",
- "../../../node_modules/recharts/types/util/excludeEventProps.d.ts",
- "../../../node_modules/recharts/types/util/svgPropertiesAndEvents.d.ts",
- "../../../node_modules/recharts/types/cartesian/ReferenceArea.d.ts",
- "../../../node_modules/recharts/types/cartesian/BarStack.d.ts",
- "../../../node_modules/recharts/types/cartesian/XAxis.d.ts",
- "../../../node_modules/recharts/types/cartesian/YAxis.d.ts",
- "../../../node_modules/recharts/types/cartesian/ZAxis.d.ts",
- "../../../node_modules/recharts/types/chart/LineChart.d.ts",
- "../../../node_modules/recharts/types/chart/BarChart.d.ts",
- "../../../node_modules/recharts/types/chart/PieChart.d.ts",
- "../../../node_modules/recharts/types/chart/Treemap.d.ts",
- "../../../node_modules/recharts/types/chart/Sankey.d.ts",
- "../../../node_modules/recharts/types/chart/RadarChart.d.ts",
- "../../../node_modules/recharts/types/chart/ScatterChart.d.ts",
- "../../../node_modules/recharts/types/chart/AreaChart.d.ts",
- "../../../node_modules/recharts/types/chart/RadialBarChart.d.ts",
- "../../../node_modules/recharts/types/chart/ComposedChart.d.ts",
- "../../../node_modules/recharts/types/chart/SunburstChart.d.ts",
- "../../../node_modules/recharts/types/shape/Trapezoid.d.ts",
- "../../../node_modules/recharts/types/cartesian/Funnel.d.ts",
- "../../../node_modules/recharts/types/chart/FunnelChart.d.ts",
- "../../../node_modules/recharts/types/util/Global.d.ts",
- "../../../node_modules/recharts/types/zIndex/DefaultZIndexes.d.ts",
- "../../../node_modules/decimal.js-light/decimal.d.ts",
- "../../../node_modules/recharts/types/util/scale/getNiceTickValues.d.ts",
- "../../../node_modules/recharts/types/context/chartLayoutContext.d.ts",
- "../../../node_modules/recharts/types/util/getRelativeCoordinate.d.ts",
- "../../../node_modules/recharts/types/util/createCartesianCharts.d.ts",
- "../../../node_modules/recharts/types/util/createPolarCharts.d.ts",
- "../../../node_modules/recharts/types/index.d.ts",
- "../src/chart.tsx",
- "../src/checkbox.tsx",
- "../src/collapsible.tsx",
- "../../../node_modules/@base-ui/react/esm/utils/reason-parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/utils/reasons.d.ts",
- "../../../node_modules/@base-ui/react/esm/utils/createBaseUIEventDetails.d.ts",
- "../../../node_modules/@base-ui/react/esm/types/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/utils/types.d.ts",
- "../../../node_modules/@base-ui/react/esm/accordion/root/AccordionRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/utils/useTransitionStatus.d.ts",
- "../../../node_modules/@base-ui/react/esm/collapsible/root/CollapsibleRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/collapsible/root/useCollapsibleRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/accordion/item/AccordionItem.d.ts",
- "../../../node_modules/@base-ui/react/esm/accordion/header/AccordionHeader.d.ts",
- "../../../node_modules/@base-ui/react/esm/accordion/trigger/AccordionTrigger.d.ts",
- "../../../node_modules/@base-ui/react/esm/accordion/panel/AccordionPanel.d.ts",
- "../../../node_modules/@base-ui/react/esm/accordion/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/accordion/index.d.ts",
- "../../../node_modules/@base-ui/utils/esm/store/createSelector.d.ts",
- "../../../node_modules/@base-ui/utils/esm/fastHooks.d.ts",
- "../../../node_modules/@base-ui/utils/esm/store/Store.d.ts",
- "../../../node_modules/@base-ui/utils/esm/store/useStore.d.ts",
- "../../../node_modules/@base-ui/utils/esm/store/ReactStore.d.ts",
- "../../../node_modules/@base-ui/utils/esm/store/StoreInspector.d.ts",
- "../../../node_modules/@base-ui/utils/esm/store/index.d.ts",
- "../../../node_modules/@base-ui/utils/esm/useEnhancedClickHandler.d.ts",
- "../../../node_modules/@floating-ui/utils/dist/floating-ui.utils.d.mts",
- "../../../node_modules/@floating-ui/core/dist/floating-ui.core.d.mts",
- "../../../node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.d.mts",
- "../../../node_modules/@floating-ui/dom/dist/floating-ui.dom.d.mts",
- "../../../node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.d.mts",
- "../../../node_modules/@base-ui/react/esm/floating-ui-react/utils/constants.d.ts",
- "../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useInteractions.d.ts",
- "../../../node_modules/@base-ui/react/esm/floating-ui-react/components/FloatingTreeStore.d.ts",
- "../../../node_modules/@base-ui/react/esm/floating-ui-react/components/FloatingRootStore.d.ts",
- "../../../node_modules/@base-ui/react/esm/floating-ui-react/components/FloatingFocusManager.d.ts",
- "../../../node_modules/@base-ui/react/esm/utils/getStateAttributesProps.d.ts",
- "../../../node_modules/@base-ui/react/esm/utils/useRenderElement.d.ts",
- "../../../node_modules/@base-ui/react/esm/floating-ui-react/components/FloatingPortal.d.ts",
- "../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useClientPoint.d.ts",
- "../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useDismiss.d.ts",
- "../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useFocus.d.ts",
- "../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useHoverShared.d.ts",
- "../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useHover.d.ts",
- "../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useHoverFloatingInteraction.d.ts",
- "../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useHoverReferenceInteraction.d.ts",
- "../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useListNavigation.d.ts",
- "../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useRole.d.ts",
- "../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useTypeahead.d.ts",
- "../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useFloatingRootContext.d.ts",
- "../../../node_modules/@base-ui/react/esm/floating-ui-react/safePolygon.d.ts",
- "../../../node_modules/@base-ui/react/esm/floating-ui-react/components/FloatingTree.d.ts",
- "../../../node_modules/@base-ui/react/esm/floating-ui-react/types.d.ts",
- "../../../node_modules/@base-ui/react/esm/floating-ui-react/components/FloatingDelayGroup.d.ts",
- "../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useClick.d.ts",
- "../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useFloating.d.ts",
- "../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useSyncedFloatingRootContext.d.ts",
- "../../../node_modules/@base-ui/react/esm/floating-ui-react/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/utils/popups/popupTriggerMap.d.ts",
- "../../../node_modules/@base-ui/react/esm/utils/popups/store.d.ts",
- "../../../node_modules/@base-ui/react/esm/utils/popups/popupStoreUtils.d.ts",
- "../../../node_modules/@base-ui/react/esm/utils/popups/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/dialog/root/DialogRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/dialog/store/DialogStore.d.ts",
- "../../../node_modules/@base-ui/react/esm/dialog/store/DialogHandle.d.ts",
- "../../../node_modules/@base-ui/react/esm/alert-dialog/root/AlertDialogRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/dialog/backdrop/DialogBackdrop.d.ts",
- "../../../node_modules/@base-ui/react/esm/dialog/close/DialogClose.d.ts",
- "../../../node_modules/@base-ui/react/esm/dialog/description/DialogDescription.d.ts",
- "../../../node_modules/@base-ui/react/esm/dialog/popup/DialogPopup.d.ts",
- "../../../node_modules/@base-ui/react/esm/dialog/portal/DialogPortal.d.ts",
- "../../../node_modules/@base-ui/react/esm/dialog/title/DialogTitle.d.ts",
- "../../../node_modules/@base-ui/react/esm/dialog/trigger/DialogTrigger.d.ts",
- "../../../node_modules/@base-ui/react/esm/dialog/viewport/DialogViewport.d.ts",
- "../../../node_modules/@base-ui/react/esm/alert-dialog/handle.d.ts",
- "../../../node_modules/@base-ui/react/esm/alert-dialog/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/alert-dialog/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/utils/resolveValueLabel.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/root/AriaCombobox.d.ts",
- "../../../node_modules/@base-ui/react/esm/autocomplete/root/AutocompleteRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/autocomplete/value/AutocompleteValue.d.ts",
- "../../../node_modules/@base-ui/react/esm/form/FormContext.d.ts",
- "../../../node_modules/@base-ui/react/esm/form/Form.d.ts",
- "../../../node_modules/@base-ui/react/esm/form/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/field/root/FieldRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/utils/useAnchorPositioning.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/trigger/ComboboxTrigger.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/input/ComboboxInput.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/input-group/ComboboxInputGroup.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/icon/ComboboxIcon.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/clear/ComboboxClear.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/list/ComboboxList.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/status/ComboboxStatus.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/portal/ComboboxPortal.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/backdrop/ComboboxBackdrop.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/positioner/ComboboxPositioner.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/popup/ComboboxPopup.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/arrow/ComboboxArrow.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/group/ComboboxGroup.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/group-label/ComboboxGroupLabel.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/item/ComboboxItem.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/row/ComboboxRow.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/collection/ComboboxCollection.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/empty/ComboboxEmpty.d.ts",
- "../../../node_modules/@base-ui/react/esm/separator/Separator.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/root/utils/useFilter.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/root/utils/useFilteredItems.d.ts",
- "../../../node_modules/@base-ui/react/esm/autocomplete/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/autocomplete/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/avatar/root/AvatarRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/avatar/image/useImageLoadingStatus.d.ts",
- "../../../node_modules/@base-ui/react/esm/avatar/image/AvatarImage.d.ts",
- "../../../node_modules/@base-ui/react/esm/avatar/fallback/AvatarFallback.d.ts",
- "../../../node_modules/@base-ui/react/esm/avatar/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/avatar/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/button/Button.d.ts",
- "../../../node_modules/@base-ui/react/esm/button/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/checkbox/root/CheckboxRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/checkbox/indicator/CheckboxIndicator.d.ts",
- "../../../node_modules/@base-ui/react/esm/checkbox/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/checkbox/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/checkbox-group/CheckboxGroup.d.ts",
- "../../../node_modules/@base-ui/react/esm/checkbox-group/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/collapsible/trigger/CollapsibleTrigger.d.ts",
- "../../../node_modules/@base-ui/react/esm/collapsible/panel/CollapsiblePanel.d.ts",
- "../../../node_modules/@base-ui/react/esm/collapsible/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/collapsible/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/root/ComboboxRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/label/ComboboxLabel.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/value/ComboboxValue.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/item-indicator/ComboboxItemIndicator.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/chips/ComboboxChips.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/chip/ComboboxChip.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/chip-remove/ComboboxChipRemove.d.ts",
- "../../../node_modules/@base-ui/react/esm/separator/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/combobox/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/menu/arrow/MenuArrow.d.ts",
- "../../../node_modules/@base-ui/react/esm/menu/backdrop/MenuBackdrop.d.ts",
- "../../../node_modules/@base-ui/react/esm/menu/store/MenuStore.d.ts",
- "../../../node_modules/@base-ui/react/esm/menu/root/MenuRootContext.d.ts",
- "../../../node_modules/@base-ui/react/esm/menubar/MenubarContext.d.ts",
- "../../../node_modules/@base-ui/react/esm/context-menu/root/ContextMenuRootContext.d.ts",
- "../../../node_modules/@base-ui/react/esm/menu/store/MenuHandle.d.ts",
- "../../../node_modules/@base-ui/react/esm/menu/root/MenuRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/menu/checkbox-item/MenuCheckboxItem.d.ts",
- "../../../node_modules/@base-ui/react/esm/menu/checkbox-item-indicator/MenuCheckboxItemIndicator.d.ts",
- "../../../node_modules/@base-ui/react/esm/menu/group/MenuGroup.d.ts",
- "../../../node_modules/@base-ui/react/esm/menu/group-label/MenuGroupLabel.d.ts",
- "../../../node_modules/@base-ui/react/esm/menu/item/MenuItem.d.ts",
- "../../../node_modules/@base-ui/react/esm/menu/link-item/MenuLinkItem.d.ts",
- "../../../node_modules/@base-ui/react/esm/menu/popup/MenuPopup.d.ts",
- "../../../node_modules/@base-ui/react/esm/menu/portal/MenuPortal.d.ts",
- "../../../node_modules/@base-ui/react/esm/menu/positioner/MenuPositioner.d.ts",
- "../../../node_modules/@base-ui/react/esm/menu/radio-group/MenuRadioGroup.d.ts",
- "../../../node_modules/@base-ui/react/esm/menu/radio-item/MenuRadioItem.d.ts",
- "../../../node_modules/@base-ui/react/esm/menu/radio-item-indicator/MenuRadioItemIndicator.d.ts",
- "../../../node_modules/@base-ui/react/esm/menu/submenu-root/MenuSubmenuRootContext.d.ts",
- "../../../node_modules/@base-ui/react/esm/menu/submenu-root/MenuSubmenuRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/menu/trigger/MenuTrigger.d.ts",
- "../../../node_modules/@base-ui/react/esm/menu/viewport/MenuViewport.d.ts",
- "../../../node_modules/@base-ui/react/esm/menu/submenu-trigger/MenuSubmenuTrigger.d.ts",
- "../../../node_modules/@base-ui/react/esm/menu/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/menu/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/context-menu/root/ContextMenuRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/context-menu/trigger/ContextMenuTrigger.d.ts",
- "../../../node_modules/@base-ui/react/esm/context-menu/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/context-menu/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/csp-provider/CSPProvider.d.ts",
- "../../../node_modules/@base-ui/react/esm/csp-provider/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/csp-provider/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/dialog/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/dialog/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/direction-provider/DirectionContext.d.ts",
- "../../../node_modules/@base-ui/react/esm/direction-provider/DirectionProvider.d.ts",
- "../../../node_modules/@base-ui/react/esm/direction-provider/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/direction-provider/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/drawer/backdrop/DrawerBackdrop.d.ts",
- "../../../node_modules/@base-ui/react/esm/drawer/close/DrawerClose.d.ts",
- "../../../node_modules/@base-ui/react/esm/drawer/content/DrawerContent.d.ts",
- "../../../node_modules/@base-ui/react/esm/drawer/description/DrawerDescription.d.ts",
- "../../../node_modules/@base-ui/react/esm/drawer/indent/DrawerIndent.d.ts",
- "../../../node_modules/@base-ui/react/esm/drawer/indent-background/DrawerIndentBackground.d.ts",
- "../../../node_modules/@base-ui/react/esm/utils/useSwipeDismiss.d.ts",
- "../../../node_modules/@base-ui/react/esm/drawer/root/DrawerRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/drawer/root/DrawerRootContext.d.ts",
- "../../../node_modules/@base-ui/react/esm/drawer/popup/DrawerPopup.d.ts",
- "../../../node_modules/@base-ui/react/esm/drawer/portal/DrawerPortal.d.ts",
- "../../../node_modules/@base-ui/react/esm/drawer/provider/DrawerProvider.d.ts",
- "../../../node_modules/@base-ui/react/esm/drawer/swipe-area/DrawerSwipeArea.d.ts",
- "../../../node_modules/@base-ui/react/esm/drawer/title/DrawerTitle.d.ts",
- "../../../node_modules/@base-ui/react/esm/drawer/trigger/DrawerTrigger.d.ts",
- "../../../node_modules/@base-ui/react/esm/drawer/viewport/DrawerViewport.d.ts",
- "../../../node_modules/@base-ui/react/esm/drawer/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/drawer/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/field/label/FieldLabel.d.ts",
- "../../../node_modules/@base-ui/react/esm/field/error/FieldError.d.ts",
- "../../../node_modules/@base-ui/react/esm/field/description/FieldDescription.d.ts",
- "../../../node_modules/@base-ui/react/esm/field/control/FieldControl.d.ts",
- "../../../node_modules/@base-ui/react/esm/field/validity/FieldValidity.d.ts",
- "../../../node_modules/@base-ui/react/esm/field/item/FieldItem.d.ts",
- "../../../node_modules/@base-ui/react/esm/field/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/field/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/fieldset/root/FieldsetRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/fieldset/legend/FieldsetLegend.d.ts",
- "../../../node_modules/@base-ui/react/esm/fieldset/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/fieldset/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/input/Input.d.ts",
- "../../../node_modules/@base-ui/react/esm/input/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/menubar/Menubar.d.ts",
- "../../../node_modules/@base-ui/react/esm/menubar/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/merge-props/mergeProps.d.ts",
- "../../../node_modules/@base-ui/react/esm/merge-props/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/meter/root/MeterRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/meter/track/MeterTrack.d.ts",
- "../../../node_modules/@base-ui/react/esm/meter/indicator/MeterIndicator.d.ts",
- "../../../node_modules/@base-ui/react/esm/meter/value/MeterValue.d.ts",
- "../../../node_modules/@base-ui/react/esm/meter/label/MeterLabel.d.ts",
- "../../../node_modules/@base-ui/react/esm/meter/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/meter/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/navigation-menu/root/NavigationMenuRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/navigation-menu/list/NavigationMenuList.d.ts",
- "../../../node_modules/@base-ui/react/esm/navigation-menu/item/NavigationMenuItem.d.ts",
- "../../../node_modules/@base-ui/react/esm/navigation-menu/content/NavigationMenuContent.d.ts",
- "../../../node_modules/@base-ui/react/esm/navigation-menu/trigger/NavigationMenuTrigger.d.ts",
- "../../../node_modules/@base-ui/react/esm/navigation-menu/portal/NavigationMenuPortal.d.ts",
- "../../../node_modules/@base-ui/react/esm/navigation-menu/positioner/NavigationMenuPositioner.d.ts",
- "../../../node_modules/@base-ui/react/esm/navigation-menu/viewport/NavigationMenuViewport.d.ts",
- "../../../node_modules/@base-ui/react/esm/navigation-menu/backdrop/NavigationMenuBackdrop.d.ts",
- "../../../node_modules/@base-ui/react/esm/navigation-menu/popup/NavigationMenuPopup.d.ts",
- "../../../node_modules/@base-ui/react/esm/navigation-menu/arrow/NavigationMenuArrow.d.ts",
- "../../../node_modules/@base-ui/react/esm/navigation-menu/link/NavigationMenuLink.d.ts",
- "../../../node_modules/@base-ui/react/esm/navigation-menu/icon/NavigationMenuIcon.d.ts",
- "../../../node_modules/@base-ui/react/esm/navigation-menu/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/navigation-menu/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/number-field/utils/types.d.ts",
- "../../../node_modules/@base-ui/react/esm/number-field/root/NumberFieldRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/number-field/group/NumberFieldGroup.d.ts",
- "../../../node_modules/@base-ui/react/esm/number-field/increment/NumberFieldIncrement.d.ts",
- "../../../node_modules/@base-ui/react/esm/number-field/decrement/NumberFieldDecrement.d.ts",
- "../../../node_modules/@base-ui/react/esm/number-field/input/NumberFieldInput.d.ts",
- "../../../node_modules/@base-ui/react/esm/number-field/scrub-area/NumberFieldScrubArea.d.ts",
- "../../../node_modules/@base-ui/react/esm/number-field/scrub-area-cursor/NumberFieldScrubAreaCursor.d.ts",
- "../../../node_modules/@base-ui/react/esm/number-field/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/number-field/index.d.ts",
- "../../../node_modules/@base-ui/utils/esm/useTimeout.d.ts",
- "../../../node_modules/@base-ui/react/esm/popover/store/PopoverStore.d.ts",
- "../../../node_modules/@base-ui/react/esm/popover/store/PopoverHandle.d.ts",
- "../../../node_modules/@base-ui/react/esm/popover/root/PopoverRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/popover/trigger/PopoverTrigger.d.ts",
- "../../../node_modules/@base-ui/react/esm/popover/portal/PopoverPortal.d.ts",
- "../../../node_modules/@base-ui/react/esm/popover/positioner/PopoverPositioner.d.ts",
- "../../../node_modules/@base-ui/react/esm/popover/popup/PopoverPopup.d.ts",
- "../../../node_modules/@base-ui/react/esm/popover/arrow/PopoverArrow.d.ts",
- "../../../node_modules/@base-ui/react/esm/popover/backdrop/PopoverBackdrop.d.ts",
- "../../../node_modules/@base-ui/react/esm/popover/title/PopoverTitle.d.ts",
- "../../../node_modules/@base-ui/react/esm/popover/description/PopoverDescription.d.ts",
- "../../../node_modules/@base-ui/react/esm/popover/close/PopoverClose.d.ts",
- "../../../node_modules/@base-ui/react/esm/popover/viewport/PopoverViewport.d.ts",
- "../../../node_modules/@base-ui/react/esm/popover/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/popover/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/preview-card/store/PreviewCardStore.d.ts",
- "../../../node_modules/@base-ui/react/esm/preview-card/store/PreviewCardHandle.d.ts",
- "../../../node_modules/@base-ui/react/esm/preview-card/root/PreviewCardRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/utils/FloatingPortalLite.d.ts",
- "../../../node_modules/@base-ui/react/esm/preview-card/portal/PreviewCardPortal.d.ts",
- "../../../node_modules/@base-ui/react/esm/preview-card/trigger/PreviewCardTrigger.d.ts",
- "../../../node_modules/@base-ui/react/esm/preview-card/positioner/PreviewCardPositioner.d.ts",
- "../../../node_modules/@base-ui/react/esm/preview-card/popup/PreviewCardPopup.d.ts",
- "../../../node_modules/@base-ui/react/esm/preview-card/arrow/PreviewCardArrow.d.ts",
- "../../../node_modules/@base-ui/react/esm/preview-card/backdrop/PreviewCardBackdrop.d.ts",
- "../../../node_modules/@base-ui/react/esm/preview-card/viewport/PreviewCardViewport.d.ts",
- "../../../node_modules/@base-ui/react/esm/preview-card/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/preview-card/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/progress/root/ProgressRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/progress/track/ProgressTrack.d.ts",
- "../../../node_modules/@base-ui/react/esm/progress/indicator/ProgressIndicator.d.ts",
- "../../../node_modules/@base-ui/react/esm/progress/value/ProgressValue.d.ts",
- "../../../node_modules/@base-ui/react/esm/progress/label/ProgressLabel.d.ts",
- "../../../node_modules/@base-ui/react/esm/progress/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/progress/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/radio/root/RadioRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/radio/indicator/RadioIndicator.d.ts",
- "../../../node_modules/@base-ui/react/esm/radio/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/radio/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/radio-group/RadioGroup.d.ts",
- "../../../node_modules/@base-ui/react/esm/radio-group/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/scroll-area/root/ScrollAreaRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/scroll-area/viewport/ScrollAreaViewport.d.ts",
- "../../../node_modules/@base-ui/react/esm/scroll-area/scrollbar/ScrollAreaScrollbar.d.ts",
- "../../../node_modules/@base-ui/react/esm/scroll-area/content/ScrollAreaContent.d.ts",
- "../../../node_modules/@base-ui/react/esm/scroll-area/thumb/ScrollAreaThumb.d.ts",
- "../../../node_modules/@base-ui/react/esm/scroll-area/corner/ScrollAreaCorner.d.ts",
- "../../../node_modules/@base-ui/react/esm/scroll-area/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/scroll-area/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/select/root/SelectRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/select/label/SelectLabel.d.ts",
- "../../../node_modules/@base-ui/react/esm/select/trigger/SelectTrigger.d.ts",
- "../../../node_modules/@base-ui/react/esm/select/value/SelectValue.d.ts",
- "../../../node_modules/@base-ui/react/esm/select/icon/SelectIcon.d.ts",
- "../../../node_modules/@base-ui/react/esm/select/portal/SelectPortal.d.ts",
- "../../../node_modules/@base-ui/react/esm/select/backdrop/SelectBackdrop.d.ts",
- "../../../node_modules/@base-ui/react/esm/select/positioner/SelectPositioner.d.ts",
- "../../../node_modules/@base-ui/react/esm/select/popup/SelectPopup.d.ts",
- "../../../node_modules/@base-ui/react/esm/select/list/SelectList.d.ts",
- "../../../node_modules/@base-ui/react/esm/select/item/SelectItem.d.ts",
- "../../../node_modules/@base-ui/react/esm/select/item-indicator/SelectItemIndicator.d.ts",
- "../../../node_modules/@base-ui/react/esm/select/item-text/SelectItemText.d.ts",
- "../../../node_modules/@base-ui/react/esm/select/arrow/SelectArrow.d.ts",
- "../../../node_modules/@base-ui/react/esm/select/scroll-down-arrow/SelectScrollDownArrow.d.ts",
- "../../../node_modules/@base-ui/react/esm/select/scroll-up-arrow/SelectScrollUpArrow.d.ts",
- "../../../node_modules/@base-ui/react/esm/select/group/SelectGroup.d.ts",
- "../../../node_modules/@base-ui/react/esm/select/group-label/SelectGroupLabel.d.ts",
- "../../../node_modules/@base-ui/react/esm/select/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/select/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/slider/root/SliderRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/slider/label/SliderLabel.d.ts",
- "../../../node_modules/@base-ui/react/esm/slider/value/SliderValue.d.ts",
- "../../../node_modules/@base-ui/react/esm/slider/control/SliderControl.d.ts",
- "../../../node_modules/@base-ui/react/esm/slider/track/SliderTrack.d.ts",
- "../../../node_modules/@base-ui/react/esm/labelable-provider/LabelableContext.d.ts",
- "../../../node_modules/@base-ui/react/esm/slider/thumb/SliderThumb.d.ts",
- "../../../node_modules/@base-ui/react/esm/slider/indicator/SliderIndicator.d.ts",
- "../../../node_modules/@base-ui/react/esm/slider/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/slider/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/switch/root/SwitchRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/switch/thumb/SwitchThumb.d.ts",
- "../../../node_modules/@base-ui/react/esm/switch/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/switch/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/tabs/tab/TabsTab.d.ts",
- "../../../node_modules/@base-ui/react/esm/tabs/root/TabsRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/tabs/indicator/TabsIndicator.d.ts",
- "../../../node_modules/@base-ui/react/esm/tabs/panel/TabsPanel.d.ts",
- "../../../node_modules/@base-ui/react/esm/tabs/list/TabsList.d.ts",
- "../../../node_modules/@base-ui/react/esm/tabs/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/tabs/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/toast/positioner/ToastPositioner.d.ts",
- "../../../node_modules/@base-ui/react/esm/toast/useToastManager.d.ts",
- "../../../node_modules/@base-ui/react/esm/toast/createToastManager.d.ts",
- "../../../node_modules/@base-ui/react/esm/toast/provider/ToastProvider.d.ts",
- "../../../node_modules/@base-ui/react/esm/toast/viewport/ToastViewport.d.ts",
- "../../../node_modules/@base-ui/react/esm/toast/root/ToastRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/toast/content/ToastContent.d.ts",
- "../../../node_modules/@base-ui/react/esm/toast/description/ToastDescription.d.ts",
- "../../../node_modules/@base-ui/react/esm/toast/title/ToastTitle.d.ts",
- "../../../node_modules/@base-ui/react/esm/toast/close/ToastClose.d.ts",
- "../../../node_modules/@base-ui/react/esm/toast/action/ToastAction.d.ts",
- "../../../node_modules/@base-ui/react/esm/toast/portal/ToastPortal.d.ts",
- "../../../node_modules/@base-ui/react/esm/toast/arrow/ToastArrow.d.ts",
- "../../../node_modules/@base-ui/react/esm/toast/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/toast/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/toggle/Toggle.d.ts",
- "../../../node_modules/@base-ui/react/esm/toggle/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/toggle-group/ToggleGroup.d.ts",
- "../../../node_modules/@base-ui/react/esm/toggle-group/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/toolbar/separator/ToolbarSeparator.d.ts",
- "../../../node_modules/@base-ui/react/esm/toolbar/root/ToolbarRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/toolbar/group/ToolbarGroup.d.ts",
- "../../../node_modules/@base-ui/react/esm/toolbar/button/ToolbarButton.d.ts",
- "../../../node_modules/@base-ui/react/esm/toolbar/link/ToolbarLink.d.ts",
- "../../../node_modules/@base-ui/react/esm/toolbar/input/ToolbarInput.d.ts",
- "../../../node_modules/@base-ui/react/esm/toolbar/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/toolbar/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/tooltip/store/TooltipStore.d.ts",
- "../../../node_modules/@base-ui/react/esm/tooltip/store/TooltipHandle.d.ts",
- "../../../node_modules/@base-ui/react/esm/tooltip/root/TooltipRoot.d.ts",
- "../../../node_modules/@base-ui/react/esm/tooltip/trigger/TooltipTrigger.d.ts",
- "../../../node_modules/@base-ui/react/esm/tooltip/portal/TooltipPortal.d.ts",
- "../../../node_modules/@base-ui/react/esm/tooltip/positioner/TooltipPositioner.d.ts",
- "../../../node_modules/@base-ui/react/esm/tooltip/popup/TooltipPopup.d.ts",
- "../../../node_modules/@base-ui/react/esm/tooltip/arrow/TooltipArrow.d.ts",
- "../../../node_modules/@base-ui/react/esm/tooltip/provider/TooltipProvider.d.ts",
- "../../../node_modules/@base-ui/react/esm/tooltip/viewport/TooltipViewport.d.ts",
- "../../../node_modules/@base-ui/react/esm/tooltip/index.parts.d.ts",
- "../../../node_modules/@base-ui/react/esm/tooltip/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/use-render/useRender.d.ts",
- "../../../node_modules/@base-ui/react/esm/use-render/index.d.ts",
- "../../../node_modules/@base-ui/react/esm/index.d.ts",
- "../src/combobox.tsx",
- "../../../node_modules/cmdk/dist/index.d.ts",
- "../src/command.tsx",
- "../src/context-menu.tsx",
- "../src/dialog.tsx",
- "../../../node_modules/vaul/dist/index.d.mts",
- "../src/drawer.tsx",
- "../src/dropdown-menu.tsx",
- "../src/empty.tsx",
- "../src/field.tsx",
- "../../../node_modules/react-hook-form/dist/constants.d.ts",
- "../../../node_modules/react-hook-form/dist/utils/createSubject.d.ts",
- "../../../node_modules/react-hook-form/dist/types/events.d.ts",
- "../../../node_modules/react-hook-form/dist/types/path/common.d.ts",
- "../../../node_modules/react-hook-form/dist/types/path/eager.d.ts",
- "../../../node_modules/react-hook-form/dist/types/path/index.d.ts",
- "../../../node_modules/react-hook-form/dist/types/fieldArray.d.ts",
- "../../../node_modules/react-hook-form/dist/types/resolvers.d.ts",
- "../../../node_modules/react-hook-form/dist/types/form.d.ts",
- "../../../node_modules/react-hook-form/dist/types/utils.d.ts",
- "../../../node_modules/react-hook-form/dist/types/fields.d.ts",
- "../../../node_modules/react-hook-form/dist/types/errors.d.ts",
- "../../../node_modules/react-hook-form/dist/types/validator.d.ts",
- "../../../node_modules/react-hook-form/dist/types/controller.d.ts",
- "../../../node_modules/react-hook-form/dist/types/index.d.ts",
- "../../../node_modules/react-hook-form/dist/controller.d.ts",
- "../../../node_modules/react-hook-form/dist/form.d.ts",
- "../../../node_modules/react-hook-form/dist/logic/appendErrors.d.ts",
- "../../../node_modules/react-hook-form/dist/logic/createFormControl.d.ts",
- "../../../node_modules/react-hook-form/dist/logic/index.d.ts",
- "../../../node_modules/react-hook-form/dist/useController.d.ts",
- "../../../node_modules/react-hook-form/dist/useFieldArray.d.ts",
- "../../../node_modules/react-hook-form/dist/useForm.d.ts",
- "../../../node_modules/react-hook-form/dist/useFormContext.d.ts",
- "../../../node_modules/react-hook-form/dist/useFormState.d.ts",
- "../../../node_modules/react-hook-form/dist/useWatch.d.ts",
- "../../../node_modules/react-hook-form/dist/utils/get.d.ts",
- "../../../node_modules/react-hook-form/dist/utils/set.d.ts",
- "../../../node_modules/react-hook-form/dist/utils/index.d.ts",
- "../../../node_modules/react-hook-form/dist/watch.d.ts",
- "../../../node_modules/react-hook-form/dist/index.d.ts",
- "../src/form.tsx",
- "../src/hover-card.tsx",
- "../../../node_modules/react-image-crop/dist/index.d.ts",
- "../src/image-crop.tsx",
- "../src/input.tsx",
- "../src/input-group.tsx",
- "../../../node_modules/input-otp/dist/index.d.ts",
- "../src/input-otp.tsx",
- "../src/item.tsx",
- "../src/kbd.tsx",
- "../src/label.tsx",
- "../src/native-select.tsx",
- "../src/navigation-menu.tsx",
- "../src/pagination.tsx",
- "../src/popover.tsx",
- "../src/progress.tsx",
- "../src/radio-group.tsx",
- "../../../node_modules/react-resizable-panels/dist/react-resizable-panels.d.ts",
- "../src/resizable.tsx",
- "../src/scroll-area.tsx",
- "../src/select.tsx",
- "../src/separator.tsx",
- "../src/sheet.tsx",
- "../src/sidebar.tsx",
- "../src/skeleton.tsx",
- "../src/slider.tsx",
- "../src/spinner.tsx",
- "../src/status-message.tsx",
- "../../../node_modules/@types/react-dom/index.d.ts",
- "../src/submit-button.tsx",
- "../src/switch.tsx",
- "../src/table.tsx",
- "../src/tabs.tsx",
- "../src/textarea.tsx",
- "../../../node_modules/next-themes/dist/index.d.ts",
- "../src/theme.tsx",
- "../../../node_modules/sonner/dist/index.d.mts",
- "../src/sonner.tsx",
- "../src/toggle.tsx",
- "../src/toggle-group.tsx",
- "../src/tooltip.tsx",
- "../src/hooks/use-mobile.ts",
- "../src/hooks/use-on-click-outside.tsx",
- "../src/hooks/index.tsx",
- "../src/index.tsx",
- "../src/accordion.tsx",
- "../src/menubar.tsx",
- "../../../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/@types/node/globals.d.ts",
- "../../../node_modules/@types/node/web-globals/abortcontroller.d.ts",
- "../../../node_modules/@types/node/web-globals/domexception.d.ts",
- "../../../node_modules/@types/node/web-globals/events.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/web-globals/fetch.d.ts",
- "../../../node_modules/@types/node/web-globals/navigator.d.ts",
- "../../../node_modules/@types/node/web-globals/storage.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/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/inspector.generated.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/cors/index.d.ts",
- "../../../node_modules/@types/d3-array/index.d.ts",
- "../../../node_modules/@types/d3-color/index.d.ts",
- "../../../node_modules/@types/d3-ease/index.d.ts",
- "../../../node_modules/@types/d3-interpolate/index.d.ts",
- "../../../node_modules/@types/d3-timer/index.d.ts",
- "../../../node_modules/@types/estree/index.d.ts",
- "../../../node_modules/@types/json-schema/index.d.ts",
- "../../../node_modules/@types/eslint/use-at-your-own-risk.d.ts",
- "../../../node_modules/@types/eslint/index.d.ts",
- "../../../node_modules/@eslint/core/dist/cjs/types.d.cts",
- "../../../node_modules/eslint/lib/types/use-at-your-own-risk.d.ts",
- "../../../node_modules/eslint/lib/types/index.d.ts",
- "../../../node_modules/@types/eslint-scope/index.d.ts",
- "../../../node_modules/@types/glob/index.d.ts",
- "../../../node_modules/@types/graceful-fs/index.d.ts",
- "../../../node_modules/@types/hammerjs/index.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/Subscription.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/types.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/Subscriber.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/Operator.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/iif.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/throwError.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/Observable.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/Subject.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/ConnectableObservable.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/operators/groupBy.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/symbol/observable.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/BehaviorSubject.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/ReplaySubject.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/AsyncSubject.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/Scheduler.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/scheduler/Action.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/scheduler/AsyncScheduler.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/scheduler/AsyncAction.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/scheduler/AsapScheduler.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/scheduler/asap.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/scheduler/async.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/scheduler/QueueScheduler.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/scheduler/queue.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/scheduler/AnimationFrameScheduler.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/scheduler/animationFrame.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/scheduler/VirtualTimeScheduler.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/Notification.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/util/pipe.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/util/noop.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/util/identity.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/util/isObservable.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/util/ArgumentOutOfRangeError.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/util/EmptyError.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/util/ObjectUnsubscribedError.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/util/UnsubscriptionError.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/util/TimeoutError.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/bindCallback.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/bindNodeCallback.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/InnerSubscriber.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/OuterSubscriber.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/combineLatest.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/concat.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/defer.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/empty.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/forkJoin.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/from.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/fromEvent.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/fromEventPattern.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/generate.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/interval.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/merge.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/never.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/of.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/onErrorResumeNext.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/pairs.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/partition.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/race.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/range.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/timer.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/using.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/observable/zip.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/scheduled/scheduled.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/internal/config.d.ts",
- "../../../node_modules/@types/inquirer/node_modules/rxjs/index.d.ts",
- "../../../node_modules/@types/through/index.d.ts",
- "../../../node_modules/@types/inquirer/lib/objects/choice.d.ts",
- "../../../node_modules/@types/inquirer/lib/objects/separator.d.ts",
- "../../../node_modules/@types/inquirer/lib/objects/choices.d.ts",
- "../../../node_modules/@types/inquirer/lib/utils/screen-manager.d.ts",
- "../../../node_modules/@types/inquirer/lib/prompts/base.d.ts",
- "../../../node_modules/@types/inquirer/lib/utils/paginator.d.ts",
- "../../../node_modules/@types/inquirer/lib/prompts/checkbox.d.ts",
- "../../../node_modules/@types/inquirer/lib/prompts/confirm.d.ts",
- "../../../node_modules/@types/inquirer/lib/prompts/editor.d.ts",
- "../../../node_modules/@types/inquirer/lib/prompts/expand.d.ts",
- "../../../node_modules/@types/inquirer/lib/prompts/input.d.ts",
- "../../../node_modules/@types/inquirer/lib/prompts/list.d.ts",
- "../../../node_modules/@types/inquirer/lib/prompts/number.d.ts",
- "../../../node_modules/@types/inquirer/lib/prompts/password.d.ts",
- "../../../node_modules/@types/inquirer/lib/prompts/rawlist.d.ts",
- "../../../node_modules/@types/inquirer/lib/ui/baseUI.d.ts",
- "../../../node_modules/@types/inquirer/lib/ui/bottom-bar.d.ts",
- "../../../node_modules/@types/inquirer/lib/ui/prompt.d.ts",
- "../../../node_modules/@types/inquirer/lib/utils/events.d.ts",
- "../../../node_modules/@types/inquirer/lib/utils/readline.d.ts",
- "../../../node_modules/@types/inquirer/lib/utils/utils.d.ts",
- "../../../node_modules/@types/inquirer/index.d.ts",
- "../../../node_modules/@types/istanbul-lib-coverage/index.d.ts",
- "../../../node_modules/@types/istanbul-lib-report/index.d.ts",
- "../../../node_modules/@types/istanbul-reports/index.d.ts",
- "../../../node_modules/@types/json5/index.d.ts",
- "../../../node_modules/@types/mysql/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/@types/shimmer/index.d.ts",
- "../../../node_modules/@types/stack-utils/index.d.ts",
- "../../../node_modules/@types/tedious/index.d.ts",
- "../../../node_modules/@types/tinycolor2/index.d.ts",
- "../../../node_modules/@types/use-sync-external-store/index.d.ts",
- "../../../node_modules/@types/yargs-parser/index.d.ts",
- "../../../node_modules/@types/yargs/index.d.ts"
- ],
- "fileIdsList": [
- [1200, 1211, 1260, 1277, 1278],
- [1211, 1260, 1277, 1278],
- [62, 741, 746, 1211, 1260, 1277, 1278],
- [742, 746, 747, 748, 749, 750, 1211, 1260, 1277, 1278],
- [742, 746, 747, 748, 749, 1211, 1260, 1277, 1278],
- [62, 738, 739, 741, 742, 745, 1211, 1260, 1277, 1278],
- [62, 741, 742, 743, 746, 1211, 1260, 1277, 1278],
- [62, 738, 739, 741, 1211, 1260, 1277, 1278],
- [798, 1211, 1260, 1277, 1278],
- [799, 809, 1211, 1260, 1277, 1278],
- [
- 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 1211, 1260, 1277,
- 1278
- ],
- [62, 76, 739, 796, 798, 1211, 1260, 1277, 1278],
- [
- 813, 814, 820, 821, 822, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834,
- 836, 837, 839, 841, 1211, 1260, 1277, 1278
- ],
- [
- 813, 814, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832,
- 833, 834, 835, 836, 837, 838, 839, 840, 1211, 1260, 1277, 1278
- ],
- [62, 812, 1211, 1260, 1277, 1278],
- [62, 1211, 1260, 1277, 1278],
- [62, 741, 843, 1211, 1260, 1277, 1278],
- [62, 741, 743, 843, 844, 1211, 1260, 1277, 1278],
- [843, 845, 846, 847, 1211, 1260, 1277, 1278],
- [843, 845, 846, 1211, 1260, 1277, 1278],
- [62, 741, 1211, 1260, 1277, 1278],
- [849, 1211, 1260, 1277, 1278],
- [62, 738, 739, 741, 818, 1211, 1260, 1277, 1278],
- [855, 1211, 1260, 1277, 1278],
- [851, 852, 853, 1211, 1260, 1277, 1278],
- [851, 852, 1211, 1260, 1277, 1278],
- [62, 741, 743, 851, 1211, 1260, 1277, 1278],
- [744, 857, 858, 859, 1211, 1260, 1277, 1278],
- [744, 857, 858, 1211, 1260, 1277, 1278],
- [62, 741, 743, 744, 1211, 1260, 1277, 1278],
- [62, 738, 739, 741, 745, 1211, 1260, 1277, 1278],
- [62, 743, 744, 1211, 1260, 1277, 1278],
- [62, 741, 744, 1211, 1260, 1277, 1278],
- [62, 741, 819, 1211, 1260, 1277, 1278],
- [62, 741, 743, 1211, 1260, 1277, 1278],
- [
- 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834,
- 835, 836, 837, 839, 861, 862, 863, 864, 865, 866, 867, 869, 1211, 1260,
- 1277, 1278
- ],
- [
- 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834,
- 835, 836, 837, 839, 840, 861, 862, 863, 864, 865, 866, 867, 868, 1211,
- 1260, 1277, 1278
- ],
- [62, 741, 818, 819, 1211, 1260, 1277, 1278],
- [62, 741, 818, 1211, 1260, 1277, 1278],
- [62, 741, 743, 759, 819, 1211, 1260, 1277, 1278],
- [62, 791, 1211, 1260, 1277, 1278],
- [62, 738, 739, 811, 1211, 1260, 1277, 1278],
- [
- 871, 872, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 892,
- 895, 898, 899, 900, 1211, 1260, 1277, 1278
- ],
- [
- 838, 871, 872, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890,
- 892, 895, 898, 899, 1211, 1260, 1277, 1278
- ],
- [76, 740, 878, 897, 1211, 1260, 1277, 1278],
- [62, 898, 1211, 1260, 1277, 1278],
- [62, 76, 1211, 1260, 1277, 1278],
- [902, 903, 1211, 1260, 1277, 1278],
- [902, 1211, 1260, 1277, 1278],
- [796, 800, 801, 802, 803, 804, 805, 806, 807, 905, 1211, 1260, 1277, 1278],
- [796, 798, 800, 801, 802, 803, 804, 805, 806, 807, 1211, 1260, 1277, 1278],
- [62, 741, 743, 759, 1211, 1260, 1277, 1278],
- [62, 76, 738, 739, 795, 798, 1211, 1260, 1277, 1278],
- [797, 1211, 1260, 1277, 1278],
- [62, 743, 758, 759, 768, 791, 795, 796, 1111, 1211, 1260, 1277, 1278],
- [62, 741, 798, 1211, 1260, 1277, 1278],
- [62, 907, 1211, 1260, 1277, 1278],
- [908, 909, 1211, 1260, 1277, 1278],
- [907, 908, 1211, 1260, 1277, 1278],
- [
- 911, 912, 913, 914, 915, 916, 918, 920, 921, 922, 923, 924, 925, 926, 927,
- 1211, 1260, 1277, 1278
- ],
- [
- 798, 911, 912, 913, 914, 915, 916, 918, 920, 921, 922, 923, 924, 925, 926,
- 1211, 1260, 1277, 1278
- ],
- [62, 741, 743, 759, 919, 1211, 1260, 1277, 1278],
- [62, 76, 738, 739, 795, 798, 919, 1211, 1260, 1277, 1278],
- [62, 917, 918, 1211, 1260, 1277, 1278],
- [62, 741, 917, 919, 1211, 1260, 1277, 1278],
- [62, 741, 743, 818, 1211, 1260, 1277, 1278],
- [818, 929, 930, 931, 932, 933, 934, 935, 1211, 1260, 1277, 1278],
- [818, 929, 930, 931, 932, 933, 934, 1211, 1260, 1277, 1278],
- [62, 741, 817, 1211, 1260, 1277, 1278],
- [62, 743, 818, 1211, 1260, 1277, 1278],
- [937, 938, 939, 1211, 1260, 1277, 1278],
- [937, 938, 1211, 1260, 1277, 1278],
- [62, 786, 1211, 1260, 1277, 1278],
- [62, 759, 767, 786, 1211, 1260, 1277, 1278],
- [62, 741, 771, 1211, 1260, 1277, 1278],
- [62, 739, 758, 786, 795, 1211, 1260, 1277, 1278],
- [62, 767, 786, 1211, 1260, 1277, 1278],
- [786, 1211, 1260, 1277, 1278],
- [738, 786, 1211, 1260, 1277, 1278],
- [767, 786, 1211, 1260, 1277, 1278],
- [739, 768, 786, 1211, 1260, 1277, 1278],
- [776, 786, 1211, 1260, 1277, 1278],
- [62, 741, 767, 776, 786, 1211, 1260, 1277, 1278],
- [62, 765, 786, 1211, 1260, 1277, 1278],
- [740, 758, 768, 795, 1211, 1260, 1277, 1278],
- [
- 764, 766, 767, 769, 772, 773, 774, 775, 777, 778, 779, 780, 781, 782, 783,
- 784, 785, 786, 787, 788, 789, 790, 1211, 1260, 1277, 1278
- ],
- [776, 1211, 1260, 1277, 1278],
- [
- 62, 739, 764, 766, 767, 768, 769, 772, 773, 774, 775, 776, 777, 778, 779,
- 780, 781, 782, 783, 784, 785, 787, 791, 1211, 1260, 1277, 1278
- ],
- [62, 738, 739, 741, 815, 1211, 1260, 1277, 1278],
- [62, 816, 818, 1211, 1260, 1277, 1278],
- [816, 1211, 1260, 1277, 1278],
- [
- 740, 751, 810, 817, 842, 848, 850, 854, 856, 860, 868, 870, 897, 901, 904,
- 906, 910, 928, 936, 940, 942, 944, 946, 953, 968, 978, 994, 1007, 1014,
- 1018, 1020, 1028, 1048, 1058, 1062, 1069, 1084, 1086, 1088, 1096, 1108,
- 1110, 1211, 1260, 1277, 1278
- ],
- [62, 741, 936, 1211, 1260, 1277, 1278],
- [941, 1211, 1260, 1277, 1278],
- [62, 741, 878, 1211, 1260, 1277, 1278],
- [
- 871, 872, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890,
- 892, 893, 894, 895, 896, 1211, 1260, 1277, 1278
- ],
- [
- 838, 871, 872, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888,
- 889, 890, 892, 893, 894, 895, 1211, 1260, 1277, 1278
- ],
- [62, 76, 738, 739, 795, 873, 874, 875, 876, 877, 1211, 1260, 1277, 1278],
- [62, 873, 878, 1211, 1260, 1277, 1278],
- [873, 1211, 1260, 1277, 1278],
- [62, 741, 743, 758, 767, 768, 791, 795, 878, 897, 1211, 1260, 1277, 1278],
- [76, 878, 891, 1211, 1260, 1277, 1278],
- [62, 873, 1211, 1260, 1277, 1278],
- [62, 741, 877, 1211, 1260, 1277, 1278],
- [62, 878, 1211, 1260, 1277, 1278],
- [943, 1211, 1260, 1277, 1278],
- [945, 1211, 1260, 1277, 1278],
- [947, 948, 949, 950, 951, 952, 1211, 1260, 1277, 1278],
- [947, 948, 949, 950, 951, 1211, 1260, 1277, 1278],
- [62, 741, 947, 1211, 1260, 1277, 1278],
- [
- 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967,
- 1211, 1260, 1277, 1278
- ],
- [
- 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 1211,
- 1260, 1277, 1278
- ],
- [62, 741, 743, 819, 1211, 1260, 1277, 1278],
- [62, 741, 970, 1211, 1260, 1277, 1278],
- [970, 971, 972, 973, 974, 975, 976, 977, 1211, 1260, 1277, 1278],
- [970, 971, 972, 973, 974, 975, 976, 1211, 1260, 1277, 1278],
- [62, 738, 739, 741, 818, 969, 1211, 1260, 1277, 1278],
- [
- 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 1211, 1260,
- 1277, 1278
- ],
- [
- 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 1211, 1260,
- 1277, 1278
- ],
- [62, 76, 738, 739, 795, 981, 1211, 1260, 1277, 1278],
- [980, 1211, 1260, 1277, 1278],
- [
- 62, 743, 758, 759, 768, 791, 795, 979, 982, 994, 1111, 1211, 1260, 1277,
- 1278
- ],
- [62, 741, 981, 1211, 1260, 1277, 1278],
- [997, 999, 1000, 1001, 1002, 1003, 1004, 1006, 1211, 1260, 1277, 1278],
- [996, 997, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1211, 1260, 1277, 1278],
- [62, 998, 1211, 1260, 1277, 1278],
- [62, 76, 738, 739, 795, 996, 1211, 1260, 1277, 1278],
- [995, 1211, 1260, 1277, 1278],
- [62, 743, 758, 768, 791, 795, 997, 1111, 1211, 1260, 1277, 1278],
- [62, 741, 996, 1211, 1260, 1277, 1278],
- [1008, 1009, 1010, 1011, 1012, 1013, 1211, 1260, 1277, 1278],
- [1008, 1009, 1010, 1011, 1012, 1211, 1260, 1277, 1278],
- [62, 741, 1008, 1211, 1260, 1277, 1278],
- [1019, 1211, 1260, 1277, 1278],
- [1015, 1016, 1017, 1211, 1260, 1277, 1278],
- [1015, 1016, 1211, 1260, 1277, 1278],
- [62, 741, 1021, 1211, 1260, 1277, 1278],
- [1021, 1022, 1023, 1024, 1025, 1026, 1027, 1211, 1260, 1277, 1278],
- [1021, 1022, 1023, 1024, 1025, 1026, 1211, 1260, 1277, 1278],
- [
- 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040,
- 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1211, 1260, 1277, 1278
- ],
- [
- 838, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039,
- 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1211, 1260, 1277, 1278
- ],
- [838, 1211, 1260, 1277, 1278],
- [62, 741, 1049, 1211, 1260, 1277, 1278],
- [1049, 1050, 1051, 1052, 1053, 1055, 1056, 1057, 1211, 1260, 1277, 1278],
- [1049, 1050, 1051, 1052, 1053, 1055, 1056, 1211, 1260, 1277, 1278],
- [62, 741, 1049, 1054, 1211, 1260, 1277, 1278],
- [1059, 1060, 1061, 1211, 1260, 1277, 1278],
- [1059, 1060, 1211, 1260, 1277, 1278],
- [62, 738, 740, 741, 818, 1211, 1260, 1277, 1278],
- [62, 741, 1059, 1211, 1260, 1277, 1278],
- [1063, 1064, 1065, 1066, 1067, 1068, 1211, 1260, 1277, 1278],
- [1063, 1064, 1065, 1066, 1067, 1211, 1260, 1277, 1278],
- [62, 741, 1063, 1064, 1211, 1260, 1277, 1278],
- [62, 741, 1064, 1211, 1260, 1277, 1278],
- [62, 741, 743, 1063, 1064, 1211, 1260, 1277, 1278],
- [62, 738, 739, 741, 1063, 1211, 1260, 1277, 1278],
- [1071, 1211, 1260, 1277, 1278],
- [
- 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081,
- 1082, 1083, 1211, 1260, 1277, 1278
- ],
- [
- 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081,
- 1082, 1211, 1260, 1277, 1278
- ],
- [62, 741, 819, 1071, 1211, 1260, 1277, 1278],
- [62, 1072, 1211, 1260, 1277, 1278],
- [62, 741, 743, 1071, 1211, 1260, 1277, 1278],
- [62, 1070, 1211, 1260, 1277, 1278],
- [1087, 1211, 1260, 1277, 1278],
- [1085, 1211, 1260, 1277, 1278],
- [62, 741, 1090, 1211, 1260, 1277, 1278],
- [1089, 1090, 1091, 1092, 1093, 1094, 1095, 1211, 1260, 1277, 1278],
- [741, 1089, 1090, 1091, 1092, 1093, 1094, 1211, 1260, 1277, 1278],
- [62, 741, 868, 1211, 1260, 1277, 1278],
- [1099, 1100, 1101, 1102, 1103, 1104, 1105, 1107, 1211, 1260, 1277, 1278],
- [
- 1098, 1099, 1100, 1101, 1102, 1103, 1104, 1105, 1106, 1211, 1260, 1277,
- 1278
- ],
- [62, 76, 738, 739, 795, 1098, 1211, 1260, 1277, 1278],
- [1097, 1211, 1260, 1277, 1278],
- [62, 743, 758, 768, 791, 795, 1099, 1108, 1111, 1211, 1260, 1277, 1278],
- [62, 741, 1098, 1211, 1260, 1277, 1278],
- [62, 739, 1211, 1260, 1277, 1278],
- [741, 1109, 1211, 1260, 1277, 1278],
- [62, 741, 770, 1211, 1260, 1277, 1278],
- [738, 1211, 1260, 1277, 1278],
- [792, 793, 794, 1211, 1260, 1277, 1278],
- [62, 743, 758, 793, 1211, 1260, 1277, 1278],
- [741, 743, 768, 791, 792, 1211, 1260, 1277, 1278],
- [737, 1211, 1260, 1277, 1278],
- [62, 740, 1211, 1260, 1277, 1278],
- [62, 760, 791, 1211, 1260, 1277, 1278],
- [754, 1211, 1260, 1277, 1278],
- [62, 76, 754, 1211, 1260, 1277, 1278],
- [609, 1211, 1260, 1277, 1278],
- [752, 754, 755, 756, 757, 1211, 1260, 1277, 1278],
- [753, 754, 1211, 1260, 1277, 1278],
- [124, 1211, 1260, 1277, 1278],
- [125, 1211, 1260, 1277, 1278],
- [124, 125, 126, 127, 128, 129, 130, 1211, 1260, 1277, 1278],
- [1211, 1260, 1277, 1278, 1319],
- [760, 1211, 1260, 1277, 1278],
- [761, 762, 1211, 1260, 1277, 1278],
- [62, 763, 1211, 1260, 1277, 1278],
- [62, 65, 66, 67, 1211, 1260, 1277, 1278],
- [62, 65, 72, 1211, 1260, 1277, 1278],
- [62, 66, 1211, 1260, 1277, 1278],
- [62, 65, 66, 1211, 1260, 1277, 1278],
- [62, 65, 66, 76, 1211, 1260, 1277, 1278],
- [62, 65, 66, 82, 1211, 1260, 1277, 1278],
- [62, 65, 66, 69, 70, 71, 1211, 1260, 1277, 1278],
- [62, 65, 66, 76, 86, 1211, 1260, 1277, 1278],
- [62, 65, 66, 69, 71, 80, 1211, 1260, 1277, 1278],
- [62, 65, 66, 69, 70, 71, 80, 81, 1211, 1260, 1277, 1278],
- [62, 65, 66, 76, 81, 82, 1211, 1260, 1277, 1278],
- [62, 65, 66, 69, 90, 1211, 1260, 1277, 1278],
- [62, 66, 81, 1211, 1260, 1277, 1278],
- [62, 65, 66, 69, 70, 71, 80, 1211, 1260, 1277, 1278],
- [62, 65, 66, 78, 79, 1211, 1260, 1277, 1278],
- [62, 65, 66, 81, 1211, 1260, 1277, 1278],
- [62, 65, 66, 69, 1211, 1260, 1277, 1278],
- [62, 65, 66, 81, 105, 1211, 1260, 1277, 1278],
- [62, 65, 66, 81, 99, 106, 1211, 1260, 1277, 1278],
- [607, 608, 609, 610, 611, 1211, 1260, 1277, 1278],
- [1200, 1201, 1202, 1203, 1204, 1211, 1260, 1277, 1278],
- [1200, 1202, 1211, 1260, 1277, 1278],
- [1211, 1260, 1274, 1277, 1278, 1310],
- [1211, 1260, 1277, 1278, 1314],
- [597, 1211, 1260, 1277, 1278],
- [621, 1211, 1260, 1277, 1278],
- [1211, 1260, 1277, 1278, 1318, 1324],
- [1211, 1260, 1277, 1278, 1318, 1319, 1320],
- [1211, 1260, 1277, 1278, 1321],
- [1211, 1260, 1271, 1272, 1277, 1278, 1310],
- [1211, 1260, 1272, 1277, 1278, 1310],
- [
- 1211, 1260, 1277, 1278, 1287, 1392, 1393, 1394, 1395, 1396, 1397, 1398,
- 1399, 1400, 1401, 1402, 1403, 1404, 1405, 1406, 1407, 1408, 1410, 1411,
- 1412, 1413, 1414
- ],
- [1211, 1260, 1277, 1278, 1415],
- [1211, 1260, 1277, 1278, 1394, 1395, 1415],
- [1211, 1260, 1277, 1278, 1287, 1392, 1397, 1415],
- [1211, 1260, 1277, 1278, 1287, 1398, 1399, 1415],
- [1211, 1260, 1277, 1278, 1287, 1398, 1415],
- [1211, 1260, 1277, 1278, 1287, 1392, 1398, 1415],
- [1211, 1260, 1277, 1278, 1287, 1404, 1415],
- [1211, 1260, 1277, 1278, 1287, 1415],
- [1211, 1260, 1277, 1278, 1393, 1409, 1415],
- [1211, 1260, 1277, 1278, 1392, 1409, 1415],
- [1211, 1260, 1277, 1278, 1287, 1392],
- [1211, 1260, 1277, 1278, 1397],
- [1211, 1260, 1277, 1278, 1287],
- [1211, 1260, 1277, 1278, 1392, 1415],
- [
- 1211, 1260, 1277, 1278, 1329, 1330, 1331, 1332, 1333, 1334, 1335, 1336,
- 1337, 1338, 1339, 1340, 1341, 1342, 1343, 1348, 1349, 1351, 1353, 1354,
- 1355, 1356, 1357, 1358, 1359, 1360, 1361, 1362, 1363, 1364, 1365, 1366,
- 1369, 1370, 1371, 1372, 1373, 1374, 1375, 1376, 1377, 1378, 1379, 1380,
- 1381, 1382, 1383, 1384, 1385, 1386, 1387, 1388, 1389, 1390, 1391
- ],
- [1211, 1260, 1277, 1278, 1329, 1331, 1336],
- [1211, 1260, 1277, 1278, 1331, 1368],
- [1211, 1260, 1277, 1278, 1330, 1335],
- [1211, 1260, 1277, 1278, 1329, 1330, 1331, 1332, 1333, 1334],
- [1211, 1260, 1277, 1278, 1330, 1331],
- [1211, 1260, 1277, 1278, 1331, 1367],
- [1211, 1260, 1277, 1278, 1329, 1330, 1331, 1336],
- [1211, 1260, 1277, 1278, 1329, 1330, 1344],
- [1211, 1260, 1277, 1278, 1329, 1330, 1331, 1332, 1335],
- [1211, 1260, 1277, 1278, 1329, 1330],
- [1211, 1260, 1277, 1278, 1330],
- [1211, 1260, 1277, 1278, 1329, 1331, 1335, 1336],
- [1211, 1260, 1277, 1278, 1330, 1331, 1332, 1335, 1368],
- [1211, 1260, 1277, 1278, 1335],
- [1211, 1260, 1277, 1278, 1335, 1375],
- [1211, 1260, 1277, 1278, 1329, 1330, 1331, 1335],
- [1211, 1260, 1277, 1278, 1330, 1331, 1332, 1335],
- [1211, 1260, 1277, 1278, 1329, 1330, 1331, 1335, 1336],
- [1211, 1260, 1277, 1278, 1392],
- [1211, 1260, 1277, 1278, 1329, 1330, 1343],
- [1211, 1260, 1277, 1278, 1345, 1346],
- [1211, 1260, 1277, 1278, 1329, 1330, 1344, 1345],
- [1211, 1260, 1277, 1278, 1329, 1330, 1343, 1344, 1346],
- [1211, 1260, 1277, 1278, 1345],
- [1211, 1260, 1277, 1278, 1329, 1330, 1345, 1346],
- [1211, 1260, 1277, 1278, 1352],
- [1211, 1260, 1277, 1278, 1347],
- [1211, 1260, 1277, 1278, 1350],
- [1211, 1260, 1277, 1278, 1329, 1335],
- [1211, 1260, 1277, 1278, 1416],
- [1211, 1260, 1277, 1278, 1417],
- [1211, 1260, 1271, 1277, 1278, 1292, 1300, 1310],
- [1211, 1257, 1258, 1260, 1277, 1278],
- [1211, 1259, 1260, 1277, 1278],
- [1260, 1277, 1278],
- [1211, 1260, 1265, 1277, 1278, 1295],
- [1211, 1260, 1261, 1266, 1271, 1277, 1278, 1280, 1292, 1303],
- [1211, 1260, 1261, 1262, 1271, 1277, 1278, 1280],
- [1206, 1207, 1208, 1211, 1260, 1277, 1278],
- [1211, 1260, 1263, 1277, 1278, 1304],
- [1211, 1260, 1264, 1265, 1272, 1277, 1278, 1281],
- [1211, 1260, 1265, 1277, 1278, 1292, 1300],
- [1211, 1260, 1266, 1268, 1271, 1277, 1278, 1280],
- [1211, 1259, 1260, 1267, 1277, 1278],
- [1211, 1260, 1268, 1269, 1277, 1278],
- [1211, 1260, 1270, 1271, 1277, 1278],
- [1211, 1259, 1260, 1271, 1277, 1278],
- [1211, 1260, 1271, 1272, 1273, 1277, 1278, 1292, 1303],
- [1211, 1260, 1271, 1272, 1273, 1277, 1278, 1287, 1292, 1295],
- [1211, 1253, 1260, 1268, 1271, 1274, 1277, 1278, 1280, 1292, 1303],
- [1211, 1260, 1271, 1272, 1274, 1275, 1277, 1278, 1280, 1292, 1300, 1303],
- [1211, 1260, 1274, 1276, 1277, 1278, 1292, 1300, 1303],
- [
- 1209, 1210, 1211, 1212, 1213, 1214, 1215, 1254, 1255, 1256, 1257, 1258,
- 1259, 1260, 1261, 1262, 1263, 1264, 1265, 1266, 1267, 1268, 1269, 1270,
- 1271, 1272, 1273, 1274, 1275, 1276, 1277, 1278, 1279, 1280, 1281, 1282,
- 1283, 1284, 1285, 1286, 1287, 1288, 1289, 1290, 1291, 1292, 1293, 1294,
- 1295, 1296, 1297, 1298, 1299, 1300, 1301, 1302, 1303, 1304, 1305, 1306,
- 1307, 1308, 1309
- ],
- [1211, 1260, 1271, 1277, 1278],
- [1211, 1260, 1277, 1278, 1279, 1303],
- [1211, 1260, 1268, 1271, 1277, 1278, 1280, 1292],
- [1211, 1260, 1277, 1278, 1281],
- [1211, 1260, 1277, 1278, 1282],
- [1211, 1259, 1260, 1277, 1278, 1283],
- [
- 1211, 1257, 1258, 1259, 1260, 1261, 1262, 1263, 1264, 1265, 1266, 1267,
- 1268, 1269, 1270, 1271, 1272, 1273, 1274, 1275, 1276, 1277, 1278, 1279,
- 1280, 1281, 1282, 1283, 1284, 1285, 1286, 1287, 1288, 1289, 1290, 1291,
- 1292, 1293, 1294, 1295, 1296, 1297, 1298, 1299, 1300, 1301, 1302, 1303,
- 1304, 1305, 1306, 1307, 1308, 1309
- ],
- [1211, 1260, 1277, 1278, 1285],
- [1211, 1260, 1277, 1278, 1286],
- [1211, 1260, 1271, 1277, 1278, 1287, 1288],
- [1211, 1260, 1277, 1278, 1287, 1289, 1304, 1306],
- [1211, 1260, 1272, 1277, 1278],
- [1211, 1260, 1271, 1277, 1278, 1292, 1293, 1295],
- [1211, 1260, 1277, 1278, 1294, 1295],
- [1211, 1260, 1277, 1278, 1292, 1293],
- [1211, 1260, 1277, 1278, 1295],
- [1211, 1260, 1277, 1278, 1296],
- [1211, 1257, 1260, 1277, 1278, 1292, 1297, 1303],
- [1211, 1260, 1271, 1277, 1278, 1298, 1299],
- [1211, 1260, 1277, 1278, 1298, 1299],
- [1211, 1260, 1265, 1277, 1278, 1280, 1292, 1300],
- [1211, 1260, 1277, 1278, 1301],
- [1211, 1260, 1277, 1278, 1280, 1302],
- [1211, 1260, 1274, 1277, 1278, 1286, 1303],
- [1211, 1260, 1265, 1277, 1278, 1304],
- [1211, 1260, 1277, 1278, 1292, 1305],
- [1211, 1260, 1277, 1278, 1279, 1306],
- [1211, 1260, 1277, 1278, 1307],
- [1211, 1253, 1260, 1277, 1278],
- [
- 1211, 1253, 1260, 1271, 1273, 1277, 1278, 1283, 1292, 1295, 1303, 1305,
- 1306, 1308
- ],
- [1211, 1260, 1277, 1278, 1292, 1309],
- [1211, 1260, 1277, 1278, 1428],
- [1211, 1260, 1277, 1278, 1427],
- [
- 1211, 1260, 1271, 1277, 1278, 1292, 1300, 1310, 1421, 1422, 1425, 1426,
- 1427
- ],
- [60, 61, 1211, 1260, 1277, 1278],
- [1211, 1260, 1271, 1277, 1278, 1300, 1310],
- [1211, 1260, 1277, 1278, 1292, 1310],
- [1211, 1260, 1277, 1278, 1435],
- [110, 111, 1211, 1260, 1277, 1278],
- [110, 1211, 1260, 1277, 1278],
- [62, 72, 1211, 1260, 1277, 1278],
- [135, 1211, 1260, 1277, 1278],
- [133, 135, 1211, 1260, 1277, 1278],
- [133, 1211, 1260, 1277, 1278],
- [135, 199, 200, 1211, 1260, 1277, 1278],
- [135, 202, 1211, 1260, 1277, 1278],
- [135, 203, 1211, 1260, 1277, 1278],
- [220, 1211, 1260, 1277, 1278],
- [
- 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149,
- 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164,
- 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179,
- 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194,
- 195, 196, 197, 198, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211,
- 212, 213, 214, 215, 216, 217, 218, 219, 221, 222, 223, 224, 225, 226, 227,
- 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242,
- 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257,
- 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272,
- 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287,
- 288, 289, 290, 291, 292, 293, 294, 295, 297, 298, 299, 300, 301, 302, 303,
- 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 321, 322,
- 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337,
- 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352,
- 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367,
- 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382,
- 383, 384, 385, 386, 387, 388, 1211, 1260, 1277, 1278
- ],
- [135, 296, 1211, 1260, 1277, 1278],
- [
- 133, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403,
- 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418,
- 419, 420, 421, 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, 461, 462, 463,
- 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478,
- 479, 480, 481, 482, 483, 484, 1211, 1260, 1277, 1278
- ],
- [135, 200, 320, 1211, 1260, 1277, 1278],
- [133, 317, 318, 1211, 1260, 1277, 1278],
- [135, 317, 1211, 1260, 1277, 1278],
- [319, 1211, 1260, 1277, 1278],
- [132, 133, 134, 1211, 1260, 1277, 1278],
- [593, 1211, 1260, 1277, 1278],
- [594, 1211, 1260, 1277, 1278],
- [567, 587, 1211, 1260, 1277, 1278],
- [561, 1211, 1260, 1277, 1278],
- [
- 562, 566, 567, 568, 569, 570, 572, 574, 575, 580, 581, 590, 1211, 1260,
- 1277, 1278
- ],
- [562, 567, 1211, 1260, 1277, 1278],
- [570, 587, 589, 592, 1211, 1260, 1277, 1278],
- [
- 561, 562, 563, 564, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577,
- 578, 579, 580, 581, 582, 583, 584, 585, 586, 591, 592, 1211, 1260, 1277,
- 1278
- ],
- [590, 1211, 1260, 1277, 1278],
- [560, 562, 563, 565, 573, 582, 585, 586, 591, 1211, 1260, 1277, 1278],
- [567, 592, 1211, 1260, 1277, 1278],
- [588, 590, 592, 1211, 1260, 1277, 1278],
- [561, 562, 567, 570, 590, 1211, 1260, 1277, 1278],
- [574, 1211, 1260, 1277, 1278],
- [564, 572, 574, 575, 1211, 1260, 1277, 1278],
- [564, 1211, 1260, 1277, 1278],
- [564, 574, 1211, 1260, 1277, 1278],
- [568, 569, 570, 574, 575, 580, 1211, 1260, 1277, 1278],
- [570, 571, 575, 579, 581, 590, 1211, 1260, 1277, 1278],
- [562, 574, 583, 1211, 1260, 1277, 1278],
- [563, 564, 565, 1211, 1260, 1277, 1278],
- [570, 590, 1211, 1260, 1277, 1278],
- [570, 1211, 1260, 1277, 1278],
- [561, 562, 1211, 1260, 1277, 1278],
- [562, 1211, 1260, 1277, 1278],
- [566, 1211, 1260, 1277, 1278],
- [570, 575, 587, 588, 589, 590, 592, 1211, 1260, 1277, 1278],
- [1211, 1260, 1277, 1278, 1318, 1322, 1323],
- [1211, 1260, 1277, 1278, 1324],
- [1211, 1260, 1277, 1278, 1310, 1422, 1423, 1424],
- [1211, 1260, 1277, 1278, 1310],
- [1211, 1260, 1277, 1278, 1292, 1310, 1422],
- [
- 64, 67, 68, 71, 72, 73, 74, 75, 77, 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, 1211, 1260, 1277, 1278
- ],
- [62, 510, 1211, 1260, 1277, 1278],
- [543, 1211, 1260, 1277, 1278],
- [504, 1211, 1260, 1277, 1278],
- [544, 1211, 1260, 1277, 1278],
- [389, 485, 541, 542, 1211, 1260, 1277, 1278],
- [504, 505, 543, 544, 1211, 1260, 1277, 1278],
- [62, 510, 545, 1211, 1260, 1277, 1278],
- [62, 505, 1211, 1260, 1277, 1278],
- [62, 545, 1211, 1260, 1277, 1278],
- [62, 513, 1211, 1260, 1277, 1278],
- [
- 486, 487, 488, 489, 490, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520,
- 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 1211, 1260, 1277,
- 1278
- ],
- [533, 534, 535, 536, 537, 538, 539, 1211, 1260, 1277, 1278],
- [510, 1211, 1260, 1277, 1278],
- [547, 1211, 1260, 1277, 1278],
- [
- 131, 502, 503, 508, 510, 532, 540, 545, 546, 548, 556, 1211, 1260, 1277,
- 1278
- ],
- [
- 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 1211, 1260, 1277,
- 1278
- ],
- [510, 543, 1211, 1260, 1277, 1278],
- [489, 490, 502, 503, 506, 508, 541, 1211, 1260, 1277, 1278],
- [506, 507, 509, 541, 1211, 1260, 1277, 1278],
- [62, 503, 541, 543, 1211, 1260, 1277, 1278],
- [506, 541, 1211, 1260, 1277, 1278],
- [62, 502, 503, 532, 540, 1211, 1260, 1277, 1278],
- [62, 505, 506, 507, 541, 544, 1211, 1260, 1277, 1278],
- [549, 550, 551, 552, 553, 554, 555, 1211, 1260, 1277, 1278],
- [62, 1136, 1211, 1260, 1277, 1278],
- [
- 1136, 1137, 1138, 1141, 1142, 1143, 1144, 1145, 1146, 1147, 1150, 1151,
- 1211, 1260, 1277, 1278
- ],
- [1136, 1211, 1260, 1277, 1278],
- [1139, 1140, 1211, 1260, 1277, 1278],
- [62, 1134, 1136, 1211, 1260, 1277, 1278],
- [1131, 1132, 1134, 1211, 1260, 1277, 1278],
- [1127, 1130, 1132, 1134, 1211, 1260, 1277, 1278],
- [1131, 1134, 1211, 1260, 1277, 1278],
- [
- 62, 1122, 1123, 1124, 1127, 1128, 1129, 1131, 1132, 1133, 1134, 1211,
- 1260, 1277, 1278
- ],
- [
- 1124, 1127, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1211, 1260,
- 1277, 1278
- ],
- [1131, 1211, 1260, 1277, 1278],
- [1125, 1131, 1132, 1211, 1260, 1277, 1278],
- [1125, 1126, 1211, 1260, 1277, 1278],
- [1130, 1132, 1133, 1211, 1260, 1277, 1278],
- [1130, 1211, 1260, 1277, 1278],
- [1122, 1127, 1132, 1133, 1211, 1260, 1277, 1278],
- [1148, 1149, 1211, 1260, 1277, 1278],
- [
- 62, 602, 613, 618, 624, 625, 632, 634, 635, 637, 678, 681, 1211, 1260,
- 1277, 1278
- ],
- [
- 62, 602, 613, 618, 623, 625, 634, 638, 639, 641, 642, 678, 681, 1211,
- 1260, 1277, 1278
- ],
- [62, 634, 639, 683, 1211, 1260, 1277, 1278],
- [62, 617, 681, 1211, 1260, 1277, 1278],
- [62, 601, 602, 604, 613, 681, 1211, 1260, 1277, 1278],
- [62, 602, 613, 634, 672, 681, 1211, 1260, 1277, 1278],
- [62, 602, 640, 661, 665, 681, 1211, 1260, 1277, 1278],
- [62, 625, 648, 649, 681, 722, 1211, 1260, 1277, 1278],
- [62, 602, 613, 618, 624, 625, 678, 681, 1211, 1260, 1277, 1278],
- [62, 602, 604, 639, 653, 705, 1211, 1260, 1277, 1278],
- [62, 600, 602, 604, 653, 1211, 1260, 1277, 1278],
- [62, 602, 604, 633, 653, 654, 681, 1211, 1260, 1277, 1278],
- [
- 62, 602, 613, 616, 620, 624, 625, 649, 663, 664, 678, 681, 1211, 1260,
- 1277, 1278
- ],
- [62, 606, 613, 681, 1211, 1260, 1277, 1278],
- [62, 606, 613, 678, 681, 1211, 1260, 1277, 1278],
- [601, 681, 1211, 1260, 1277, 1278],
- [613, 681, 1211, 1260, 1277, 1278],
- [62, 681, 1211, 1260, 1277, 1278],
- [62, 639, 649, 681, 1211, 1260, 1277, 1278],
- [62, 601, 649, 681, 1211, 1260, 1277, 1278],
- [62, 649, 681, 1211, 1260, 1277, 1278],
- [62, 614, 1211, 1260, 1277, 1278],
- [62, 602, 649, 681, 1211, 1260, 1277, 1278],
- [62, 600, 602, 681, 1211, 1260, 1277, 1278],
- [62, 601, 602, 603, 681, 1211, 1260, 1277, 1278],
- [62, 601, 602, 604, 681, 733, 1211, 1260, 1277, 1278],
- [62, 626, 627, 628, 1211, 1260, 1277, 1278],
- [62, 613, 615, 616, 627, 649, 681, 684, 1211, 1260, 1277, 1278],
- [671, 681, 1211, 1260, 1277, 1278],
- [613, 614, 633, 676, 678, 681, 1211, 1260, 1277, 1278],
- [
- 600, 601, 602, 604, 605, 606, 613, 614, 616, 624, 625, 626, 629, 633, 636,
- 639, 640, 649, 653, 655, 661, 663, 664, 665, 666, 673, 676, 677, 678, 681,
- 682, 683, 685, 686, 687, 688, 689, 690, 691, 692, 694, 696, 698, 699, 700,
- 701, 702, 703, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717,
- 718, 719, 720, 721, 722, 723, 724, 725, 726, 728, 729, 730, 731, 732,
- 1211, 1260, 1277, 1278
- ],
- [62, 602, 618, 625, 644, 646, 681, 697, 1211, 1260, 1277, 1278],
- [62, 602, 606, 613, 654, 681, 695, 1211, 1260, 1277, 1278],
- [62, 602, 613, 1211, 1260, 1277, 1278],
- [62, 602, 606, 613, 654, 681, 693, 1211, 1260, 1277, 1278],
- [62, 602, 625, 633, 645, 654, 681, 1211, 1260, 1277, 1278],
- [
- 62, 602, 613, 618, 623, 625, 634, 678, 681, 689, 697, 700, 1211, 1260,
- 1277, 1278
- ],
- [62, 623, 681, 1211, 1260, 1277, 1278],
- [62, 638, 681, 1211, 1260, 1277, 1278],
- [607, 612, 681, 1211, 1260, 1277, 1278],
- [605, 606, 607, 612, 678, 681, 1211, 1260, 1277, 1278],
- [607, 612, 617, 1211, 1260, 1277, 1278],
- [607, 612, 648, 666, 681, 1211, 1260, 1277, 1278],
- [
- 607, 612, 613, 618, 619, 620, 637, 642, 643, 646, 647, 681, 1211, 1260,
- 1277, 1278
- ],
- [607, 612, 626, 629, 681, 1211, 1260, 1277, 1278],
- [607, 612, 649, 681, 1211, 1260, 1277, 1278],
- [607, 612, 613, 1211, 1260, 1277, 1278],
- [607, 612, 1211, 1260, 1277, 1278],
- [607, 612, 613, 652, 653, 655, 1211, 1260, 1277, 1278],
- [607, 612, 613, 652, 681, 1211, 1260, 1277, 1278],
- [607, 612, 614, 636, 681, 1211, 1260, 1277, 1278],
- [632, 648, 671, 681, 1211, 1260, 1277, 1278],
- [
- 613, 618, 631, 632, 633, 648, 656, 659, 667, 671, 673, 674, 675, 677, 681,
- 1211, 1260, 1277, 1278
- ],
- [613, 618, 631, 632, 1211, 1260, 1277, 1278],
- [671, 1211, 1260, 1277, 1278],
- [
- 612, 613, 618, 630, 648, 649, 650, 651, 656, 657, 658, 659, 660, 667, 668,
- 669, 670, 1211, 1260, 1277, 1278
- ],
- [607, 612, 613, 615, 616, 648, 681, 1211, 1260, 1277, 1278],
- [618, 631, 636, 648, 681, 1211, 1260, 1277, 1278],
- [631, 641, 648, 1211, 1260, 1277, 1278],
- [618, 648, 681, 1211, 1260, 1277, 1278],
- [62, 616, 644, 645, 648, 681, 1211, 1260, 1277, 1278],
- [648, 1211, 1260, 1277, 1278],
- [631, 648, 1211, 1260, 1277, 1278],
- [616, 618, 648, 681, 1211, 1260, 1277, 1278],
- [634, 648, 681, 1211, 1260, 1277, 1278],
- [649, 681, 1211, 1260, 1277, 1278],
- [62, 639, 640, 681, 1211, 1260, 1277, 1278],
- [616, 623, 630, 632, 633, 649, 678, 681, 1211, 1260, 1277, 1278],
- [62, 701, 1211, 1260, 1277, 1278],
- [62, 648, 662, 665, 681, 1211, 1260, 1277, 1278],
- [62, 636, 640, 661, 665, 681, 708, 709, 710, 723, 1211, 1260, 1277, 1278],
- [62, 681, 694, 696, 698, 699, 701, 1211, 1260, 1277, 1278],
- [681, 1211, 1260, 1277, 1278],
- [606, 681, 1211, 1260, 1277, 1278],
- [613, 681, 727, 1211, 1260, 1277, 1278],
- [623, 631, 634, 648, 1211, 1260, 1277, 1278],
- [62, 644, 704, 1211, 1260, 1277, 1278],
- [
- 62, 599, 600, 601, 604, 605, 606, 613, 614, 615, 618, 636, 644, 678, 679,
- 680, 733, 1211, 1260, 1277, 1278
- ],
- [607, 1211, 1260, 1277, 1278],
- [1211, 1225, 1229, 1260, 1277, 1278, 1303],
- [1211, 1225, 1260, 1277, 1278, 1292, 1303],
- [1211, 1220, 1260, 1277, 1278],
- [1211, 1222, 1225, 1260, 1277, 1278, 1300, 1303],
- [1211, 1260, 1277, 1278, 1280, 1300],
- [1211, 1220, 1260, 1277, 1278, 1310],
- [1211, 1222, 1225, 1260, 1277, 1278, 1280, 1303],
- [1211, 1217, 1218, 1221, 1224, 1260, 1271, 1277, 1278, 1292, 1303],
- [1211, 1225, 1232, 1260, 1277, 1278],
- [1211, 1217, 1223, 1260, 1277, 1278],
- [1211, 1225, 1246, 1247, 1260, 1277, 1278],
- [1211, 1221, 1225, 1260, 1277, 1278, 1295, 1303, 1310],
- [1211, 1246, 1260, 1277, 1278, 1310],
- [1211, 1219, 1220, 1260, 1277, 1278, 1310],
- [1211, 1225, 1260, 1277, 1278],
- [
- 1211, 1219, 1220, 1221, 1222, 1223, 1224, 1225, 1226, 1227, 1229, 1230,
- 1231, 1232, 1233, 1234, 1235, 1236, 1237, 1238, 1239, 1240, 1241, 1242,
- 1243, 1244, 1245, 1247, 1248, 1249, 1250, 1251, 1252, 1260, 1277, 1278
- ],
- [1211, 1225, 1240, 1260, 1277, 1278],
- [1211, 1225, 1232, 1233, 1260, 1277, 1278],
- [1211, 1223, 1225, 1233, 1234, 1260, 1277, 1278],
- [1211, 1224, 1260, 1277, 1278],
- [1211, 1217, 1220, 1225, 1260, 1277, 1278],
- [1211, 1225, 1229, 1233, 1234, 1260, 1277, 1278],
- [1211, 1229, 1260, 1277, 1278],
- [1211, 1223, 1225, 1228, 1260, 1277, 1278, 1303],
- [1211, 1217, 1222, 1225, 1232, 1260, 1277, 1278],
- [1211, 1260, 1277, 1278, 1292],
- [1211, 1220, 1225, 1246, 1260, 1277, 1278, 1308, 1310],
- [598, 1211, 1260, 1277, 1278],
- [622, 1211, 1260, 1277, 1278],
- [62, 63, 109, 1197, 1211, 1260, 1277, 1278],
- [62, 109, 1197, 1211, 1260, 1277, 1278],
- [62, 112, 1197, 1211, 1260, 1277, 1278],
- [109, 1211, 1260, 1277, 1278],
- [62, 109, 112, 1197, 1211, 1260, 1277, 1278],
- [62, 63, 75, 1197, 1211, 1260, 1277, 1278],
- [62, 95, 1197, 1211, 1260, 1277, 1278],
- [109, 112, 1197, 1211, 1260, 1277, 1278],
- [62, 63, 557, 1197, 1211, 1260, 1277, 1278],
- [62, 1197, 1211, 1260, 1277, 1278],
- [62, 63, 595, 1197, 1211, 1260, 1277, 1278],
- [62, 733, 1197, 1211, 1260, 1277, 1278],
- [62, 63, 1111, 1197, 1211, 1260, 1277, 1278],
- [62, 63, 1113, 1197, 1211, 1260, 1277, 1278],
- [62, 1117, 1197, 1211, 1260, 1277, 1278],
- [112, 1197, 1211, 1260, 1277, 1278],
- [62, 86, 101, 1152, 1197, 1211, 1260, 1277, 1278],
- [1194, 1195, 1211, 1260, 1277, 1278],
- [62, 63, 1211, 1260, 1277, 1278],
- [62, 63, 109, 1155, 1197, 1211, 1260, 1277, 1278],
- [
- 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 558, 559, 596,
- 734, 735, 736, 1112, 1114, 1115, 1116, 1118, 1119, 1120, 1121, 1153, 1154,
- 1156, 1157, 1158, 1160, 1161, 1162, 1163, 1164, 1165, 1166, 1167, 1168,
- 1169, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1182,
- 1183, 1184, 1185, 1186, 1188, 1190, 1191, 1192, 1193, 1196, 1198, 1211,
- 1260, 1277, 1278
- ],
- [62, 63, 1159, 1197, 1211, 1260, 1277, 1278],
- [1197, 1211, 1260, 1277, 1278],
- [62, 63, 1197, 1211, 1260, 1277, 1278],
- [62, 63, 109, 112, 1197, 1211, 1260, 1277, 1278],
- [63, 1170, 1197, 1211, 1260, 1277, 1278],
- [62, 99, 1197, 1211, 1260, 1277, 1278],
- [63, 1187, 1189, 1211, 1260, 1277, 1278],
- [63, 1197, 1211, 1260, 1277, 1278],
- [62, 63, 1181, 1197, 1211, 1260, 1277, 1278],
- [62, 63, 1187, 1197, 1211, 1260, 1277, 1278]
- ],
- "fileInfos": [
- {
- "version": "c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "170d4db14678c68178ee8a3d5a990d5afb759ecb6ec44dbd885c50f6da6204f6",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "9dd1cf136b687969888de067d0384593097f32e9a378b187d150d9405151c6cb",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "db7da89b083e353471f3911adb59288c2d4bda401b25433943e8128d654e0afc",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "024829c0b317972acf4f871bf701525f81896ad74015f1a52d46ae6036205cb9",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "a9373d52584b48809ffd61d74f5b3dfd127da846e3c4ee3c415560386df3994b",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "0943a6e4e026d0de8a4969ee975a7283e0627bf41aa4635d8502f6f24365ac9b",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "1461efc4aefd3e999244f238f59c9b9753a7e3dfede923ebe2b4a11d6e13a0d0",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "7ec047b73f621c526468517fea779fec2007dd05baa880989def59126c98ef79",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "8dd450de6d756cee0761f277c6dc58b0b5a66b8c274b980949318b8cad26d712",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "904d6ad970b6bd825449480488a73d9b98432357ab38cf8d31ffd651ae376ff5",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "dfcf16e716338e9fe8cf790ac7756f61c85b83b699861df970661e97bf482692",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "31c30cc54e8c3da37c8e2e40e5658471f65915df22d348990d1601901e8c9ff3",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "36d8011f1437aecf0e6e88677d933e4fb3403557f086f4ac00c5a4cb6d028ac2",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "8085954ba165e611c6230596078063627f3656fed3fb68ad1e36a414c4d7599a",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "42c169fb8c2d42f4f668c624a9a11e719d5d07dacbebb63cbcf7ef365b0a75b3",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "2c57db2bf2dbd9e8ef4853be7257d62a1cb72845f7b976bb4ee827d362675f96",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "6b5f886fe41e2e767168e491fe6048398ed6439d44e006d9f51cc31265f08978",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "56a87e37f91f5625eb7d5f8394904f3f1e2a90fb08f347161dc94f1ae586bdd0",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "6b863463764ae572b9ada405bf77aac37b5e5089a3ab420d0862e4471051393b",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "68b6a7501a56babd7bcd840e0d638ee7ec582f1e70b3c36ebf32e5e5836913c8",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "89783bd45ab35df55203b522f8271500189c3526976af533a599a86caaf31362",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "6da2e0928bdab05861abc4e4abebea0c7cf0b67e25374ba35a94df2269563dd8",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "e7b00bec016013bcde74268d837a8b57173951add2b23c8fd12ffe57f204d88f",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "26e6c521a290630ea31f0205a46a87cab35faac96e2b30606f37bae7bcda4f9d",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "71acd198e19fa38447a3cbc5c33f2f5a719d933fccf314aaff0e8b0593271324",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "044047026c70439867589d8596ffe417b56158a1f054034f590166dd793b676b",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "89ad9a4e8044299f356f38879a1c2176bc60c997519b442c92cc5a70b731a360",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "fd4f58cd6b5fc8ce8af0d04bfef5142f15c4bafaac9a9899c6daa056f10bb517",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "2a00cea77767cb26393ee6f972fd32941249a0d65b246bfcb20a780a2b919a21",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "440cb5b34e06fabe3dcb13a3f77b98d771bf696857c8e97ce170b4f345f8a26b",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "5bc7f0946c94e23765bd1b8f62dc3ab65d7716285ca7cf45609f57777ddb436f",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "7d5a5e603a68faea3d978630a84cacad7668f11e14164c4dd10224fa1e210f56",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "2535fc1a5fe64892783ff8f61321b181c24f824e688a4a05ae738da33466605b",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "cbfd5ef0c8fdb4983202252b5f5758a579f4500edc3b9ad413da60cffb5c3564",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "9f7a3c434912fd3feb87af4aabdf0d1b614152ecb5e7b2aa1fff3429879cdd51",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "99d1a601593495371e798da1850b52877bf63d0678f15722d5f048e404f002e4",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "1179ef8174e0e4a09d35576199df04803b1db17c0fb35b9326442884bc0b0cce",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "9c580c6eae94f8c9a38373566e59d5c3282dc194aa266b23a50686fe10560159",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "cc3738ba01d9af5ba1206a313896837ff8779791afcd9869e582783550f17f38",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "a80ec72f5e178862476deaeed532c305bdfcd3627014ae7ac2901356d794fc93",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "4a5aa16151dbec524bb043a5cbce2c3fec75957d175475c115a953aca53999a9",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "7a14bf21ae8a29d64c42173c08f026928daf418bed1b97b37ac4bb2aa197b89b",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "c5013d60cbff572255ccc87c314c39e198c8cc6c5aa7855db7a21b79e06a510f",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "69ec8d900cfec3d40e50490fedbbea5c1b49d32c38adbc236e73a3b8978c0b11",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "7fd629484ba6772b686885b443914655089246f75a13dd685845d0abae337671",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "13dcccb62e8537329ac0448f088ab16fe5b0bbed71e56906d28d202072759804",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "233267a4a036c64aee95f66a0d31e3e0ef048cccc57dd66f9cf87582b38691e4",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "ccb9fbe369885d02cf6c2b2948fb5060451565d37b04356bbe753807f98e0682",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "c57b441e0c0a9cbdfa7d850dae1f8a387d6f81cbffbc3cd0465d530084c2417d",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "2fbe402f0ee5aa8ab55367f88030f79d46211c0a0f342becaa9f648bf8534e9d",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "b94258ef37e67474ac5522e9c519489a55dcb3d4a8f645e335fc68ea2215fe88",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "8b15d05f236e8537d3ecbe4422ce46bf0de4e4cd40b2f909c91c5818af4ff17a",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "d05c276c74c39e8174c67c88ec0d8be0b84fb7586805a67e90360968ccf0c762",
- "signature": false
- },
- {
- "version": "87d8d57d40a725aaa5f2057ca981e767c3ad9b41d9792d256e2dc54b4a8cd55b",
- "signature": false
- },
- {
- "version": "e9ab4ae23fed53e9ebc280b4e259a146e45edf94cb756ed0c2a450b88e1b6d8b",
- "signature": false
- },
- {
- "version": "2085bd915049ac9b8707b5ef59c79415f16ed216d911091e5e7fa8d6232614b4",
- "signature": false
- },
- {
- "version": "e4f00cedf79b8936fac6a65f47a522e62f1bc554e8c394a7e4a7787c4e1c2795",
- "signature": false
- },
- {
- "version": "836b4bb372b90e69e7d6b7c06e9f208641eb420d3cccb0462a8fe074e5fc11b3",
- "signature": false
- },
- {
- "version": "d8c67f22851ba2e68727c6305d7f7feef0cc1357a6183fd869a32ea7e10e3c1b",
- "signature": false
- },
- {
- "version": "6827fb8916a7d00d6ef8cf3cd461a1732dcd1652a8c6976c0fafdc8c0fd90f96",
- "signature": false
- },
- {
- "version": "c2386f38554cb204f78ca398b2ccee13134766aaa731a06358b240450690fa9b",
- "signature": false
- },
- {
- "version": "c3c7774ddf4f4a32ab260abe7001da57e0644d47ed7e6431466625c8c50e7ef9",
- "signature": false
- },
- {
- "version": "57ae71d27ee71b7d1f2c6d867ddafbbfbaa629ad75565e63a508dbaa3ef9f859",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "60924ca0c60f0674f208bfa1eaaa54e6973ced7650df7c7a81ae069730ef665a",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "e3181c7595a89dd03ba9a20eb5065fa37e0b0a514261bed774f6ae2241634470",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "c42d5cbf94816659c01f7c2298d0370247f1a981f8ca6370301b7a03b3ced950",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "18c18ab0341fd5fdfefb5d992c365be1696bfe000c7081c964582b315e33f8f2",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "dafbd4199902d904e3d4a233b5faf5dc4c98847fcd8c0ddd7617b2aed50e90d8",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "9fc866f9783d12d0412ed8d68af5e4c9e44f0072d442b0c33c3bda0a5c8cae15",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "5fc13d24a2d0328eac00c4e73cc052a987fbced2151bc0d3b7eb8f3ba4d0f4e2",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "2cef84bf00cbdb452fdc5d8ecfe7b8c0aa3fa788bdc4ad8961e2e636530dbb60",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "24104650185414f379d5cc35c0e2c19f06684a73de5b472bae79e0d855771ecf",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "799003c0ab928582fca04977f47b8d85b43a8de610f4eef0ad2d069fbb9f9399",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "b13dd41c344a23e085f81b2f5cd96792e6b35ae814f32b25e39d9841844ad240",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "17d8b4e6416e48b6e23b73d05fd2fde407e2af8fddbe9da2a98ede14949c3489",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "6d17b2b41f874ab4369b8e04bdbe660163ea5c8239785c850f767370604959e3",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "04b4c044c8fe6af77b6c196a16c41e0f7d76b285d036d79dcaa6d92e24b4982b",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "30bdeead5293c1ddfaea4097d3e9dd5a6b0bc59a1e07ff4714ea1bbe7c5b2318",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "e7df226dcc1b0ce76b32f160556f3d1550124c894aae2d5f73cefaaf28df7779",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "f2b7eef5c46c61e6e72fba9afd7cc612a08c0c48ed44c3c5518559d8508146a2",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "00f0ba57e829398d10168b7db1e16217f87933e61bd8612b53a894bd7d6371da",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "126b20947d9fa74a88bb4e9281462bda05e529f90e22d08ee9f116a224291e84",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "40d9e43acee39702745eb5c641993978ac40f227475eacc99a83ba893ad995db",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "8a66b69b21c8de9cb88b4b6d12f655d5b7636e692a014c5aa1bd81745c8c51d5",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "ebbb846bdd5a78fdacff59ae04cea7a097912aeb1a2b34f8d88f4ebb84643069",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "7321adb29ffd637acb33ee67ea035f1a97d0aa0b14173291cc2fd58e93296e04",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "320816f1a4211188f07a782bdb6c1a44555b3e716ce13018f528ad7387108d5f",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "b2cc8a474b7657f4a03c67baf6bff75e26635fd4b5850675e8cad524a09ddd0c",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "0d081e9dc251063cc69611041c17d25847e8bdbe18164baaa89b7f1f1633c0ab",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "a64c25d8f4ec16339db49867ea2324e77060782993432a875d6e5e8608b0de1e",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "0739310b6b777f3e2baaf908c0fbc622c71160e6310eb93e0d820d86a52e2e23",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "37b32e4eadd8cd3c263e7ac1681c58b2ac54f3f77bb34c5e4326cc78516d55a9",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "9b7a8974e028c4ed6f7f9abb969e3eb224c069fd7f226e26fcc3a5b0e2a1eba8",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "e8100b569926a5592146ed68a0418109d625a045a94ed878a8c5152b1379237c",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "594201c616c318b7f3149a912abd8d6bdf338d765b7bcbde86bca2e66b144606",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "03e380975e047c5c6ded532cf8589e6cc85abb7be3629e1e4b0c9e703f2fd36f",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "fae14b53b7f52a8eb3274c67c11f261a58530969885599efe3df0277b48909e1",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "c41206757c428186f2e0d1fd373915c823504c249336bdc9a9c9bbdf9da95fef",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "e961f853b7b0111c42b763a6aa46fc70d06a697db3d8ed69b38f7ba0ae42a62b",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "3db90f79e36bcb60b3f8de1bc60321026800979c150e5615047d598c787a64b7",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "639b6fb3afbb8f6067c1564af2bd284c3e883f0f1556d59bd5eb87cdbbdd8486",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "49795f5478cb607fd5965aa337135a8e7fd1c58bc40c0b6db726adf186dd403f",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "7d8890e6e2e4e215959e71d5b5bd49482cf7a23be68d48ea446601a4c99bd511",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "d56f72c4bb518de5702b8b6ae3d3c3045c99e0fd48b3d3b54c653693a8378017",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "4c9ac40163e4265b5750510d6d2933fb7b39023eed69f7b7c68b540ad960826e",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "8dfab17cf48e7be6e023c438a9cdf6d15a9b4d2fa976c26e223ba40c53eb8da8",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "38bdf7ccacfd8e418de3a7b1e3cecc29b5625f90abc2fa4ac7843a290f3bf555",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "9819e46a914735211fbc04b8dc6ba65152c62e3a329ca0601a46ba6e05b2c897",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "50f0dc9a42931fb5d65cdd64ba0f7b378aedd36e0cfca988aa4109aad5e714cb",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "894f23066f9fafccc6e2dd006ed5bd85f3b913de90f17cf1fe15a2eb677fd603",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "abdf39173867e6c2d6045f120a316de451bbb6351a6929546b8470ddf2e4b3b9",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "aa2cb4053f948fbd606228195bbe44d78733861b6f7204558bbee603202ee440",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "6911b41bfe9942ac59c2da1bbcbe5c3c1f4e510bf65cae89ed00f434cc588860",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "7b81bc4d4e2c764e85d869a8dd9fe3652b34b45c065482ac94ffaacc642b2507",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "895df4edb46ccdcbce2ec982f5eed292cf7ea3f7168f1efea738ee346feab273",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "8692bb1a4799eda7b2e3288a6646519d4cebb9a0bddf800085fc1bd8076997a0",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "239c9e98547fe99711b01a0293f8a1a776fc10330094aa261f3970aaba957c82",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "34833ec50360a32efdc12780ae624e9a710dd1fd7013b58c540abf856b54285a",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "647538e4007dcc351a8882067310a0835b5bb8559d1cfa5f378e929bceb2e64d",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "992d6b1abcc9b6092e5a574d51d441238566b6461ade5de53cb9718e4f27da46",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "938702305649bf1050bd79f3803cf5cc2904596fc1edd4e3b91033184eae5c54",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "1e931d3c367d4b96fe043e792196d9c2cf74f672ff9c0b894be54e000280a79d",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "05bec322ea9f6eb9efcd6458bb47087e55bd688afdd232b78379eb5d526816ed",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "4c449a874c2d2e5e5bc508e6aa98f3140218e78c585597a21a508a647acd780a",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "dae15e326140a633d7693e92b1af63274f7295ea94fb7c322d5cbe3f5e48be88",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "c2b0a869713bca307e58d81d1d1f4b99ebfc7ec8b8f17e80dde40739aa8a2bc6",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "6e4b4ff6c7c54fa9c6022e88f2f3e675eac3c6923143eb8b9139150f09074049",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "69559172a9a97bbe34a32bff8c24ef1d8c8063feb5f16a6d3407833b7ee504cf",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "86b94a2a3edcb78d9bfcdb3b382547d47cb017e71abe770c9ee8721e9c84857f",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "e3fafafda82853c45c0afc075fea1eaf0df373a06daf6e6c7f382f9f61b2deb3",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "a4ba4b31de9e9140bc49c0addddbfaf96b943a7956a46d45f894822e12bf5560",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "d8a7926fc75f2ed887f17bae732ee31a4064b8a95a406c87e430c58578ee1f67",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "9886ffbb134b0a0059fd82219eba2a75f8af341d98bc6331b6ef8a921e10ec68",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "c2ead057b70d0ae7b87a771461a6222ebdb187ba6f300c974768b0ae5966d10e",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "46687d985aed8485ab2c71085f82fafb11e69e82e8552cf5d3849c00e64a00a5",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "999ca66d4b5e2790b656e0a7ce42267737577fc7a52b891e97644ec418eff7ec",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "ec948ee7e92d0888f92d4a490fdd0afb27fbf6d7aabebe2347a3e8ac82c36db9",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "03ef2386c683707ce741a1c30cb126e8c51a908aa0acc01c3471fafb9baaacd5",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "66a372e03c41d2d5e920df5282dadcec2acae4c629cb51cab850825d2a144cea",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "ddf9b157bd4c06c2e4646c9f034f36267a0fbd028bd4738214709de7ea7c548b",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "3e795aac9be23d4ad9781c00b153e7603be580602e40e5228e2dafe8a8e3aba1",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "98c461ec5953dfb1b5d5bca5fee0833c8a932383b9e651ca6548e55f1e2c71c3",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "5c42107b46cb1d36b6f1dee268df125e930b81f9b47b5fa0b7a5f2a42d556c10",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "7e32f1251d1e986e9dd98b6ff25f62c06445301b94aeebdf1f4296dbd2b8652f",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "2f7e328dda700dcb2b72db0f58c652ae926913de27391bd11505fc5e9aae6c33",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "3de7190e4d37da0c316db53a8a60096dbcd06d1a50677ccf11d182fa26882080",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "a9d6f87e59b32b02c861aade3f4477d7277c30d43939462b93f48644fa548c58",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "2bce8fd2d16a9432110bbe0ba1e663fd02f7d8b8968cd10178ea7bc306c4a5df",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "798bedbf45a8f1e55594e6879cd46023e8767757ecce1d3feaa78d16ad728703",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "62723d5ac66f7ed6885a3931dd5cfa017797e73000d590492988a944832e8bc2",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "03db8e7df7514bf17fc729c87fff56ca99567b9aa50821f544587a666537c233",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "9b1f311ba4409968b68bf20b5d892dbd3c5b1d65c673d5841c7dbde351bc0d0b",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "2d1e8b5431502739fe335ceec0aaded030b0f918e758a5d76f61effa0965b189",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "e725839b8f884dab141b42e9d7ff5659212f6e1d7b4054caa23bc719a4629071",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "4fa38a0b8ae02507f966675d0a7d230ed67c92ab8b5736d99a16c5fbe2b42036",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "50ec1e8c23bad160ddedf8debeebc722becbddda127b8fdce06c23eacd3fe689",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "9a0aea3a113064fd607f41375ade308c035911d3c8af5ae9db89593b5ca9f1f9",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "8d643903b58a0bf739ce4e6a8b0e5fb3fbdfaacbae50581b90803934b27d5b89",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "19de2915ccebc0a1482c2337b34cb178d446def2493bf775c4018a4ea355adb8",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "9be8fc03c8b5392cd17d40fd61063d73f08d0ee3457ecf075dcb3768ae1427bd",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "a2d89a8dc5a993514ca79585039eea083a56822b1d9b9d9d85b14232e4782cbe",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "f526f20cae73f17e8f38905de4c3765287575c9c4d9ecacee41cfda8c887da5b",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "d9ec0978b7023612b9b83a71fee8972e290d02f8ff894e95cdd732cd0213b070",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "7ab10c473a058ec8ac4790b05cae6f3a86c56be9b0c0a897771d428a2a48a9f9",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "451d7a93f8249d2e1453b495b13805e58f47784ef2131061821b0e456a9fd0e1",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "21c56fe515d227ed4943f275a8b242d884046001722a4ba81f342a08dbe74ae2",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "d8311f0c39381aa1825081c921efde36e618c5cf46258c351633342a11601208",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "6b50c3bcc92dc417047740810596fcb2df2502aa3f280c9e7827e87896da168a",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "18a6b318d1e7b31e5749a52be0cf9bbce1b275f63190ef32e2c79db0579328ca",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "6a2d0af2c27b993aa85414f3759898502aa198301bc58b0d410948fe908b07b0",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "2da11b6f5c374300e5e66a6b01c3c78ec21b5d3fec0748a28cc28e00be73e006",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "0729691b39c24d222f0b854776b00530877217bfc30aac1dc7fa2f4b1795c536",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "ca45bb5c98c474d669f0e47615e4a5ae65d90a2e78531fda7862ee43e687a059",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "c1c058b91d5b9a24c95a51aea814b0ad4185f411c38ac1d5eef0bf3cebec17dc",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "3ab0ed4060b8e5b5e594138aab3e7f0262d68ad671d6678bcda51568d4fc4ccc",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "e2bf1faba4ff10a6020c41df276411f641d3fdce5c6bae1db0ec84a0bf042106",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "80b0a8fe14d47a71e23d7c3d4dcee9584d4282ef1d843b70cab1a42a4ea1588c",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "a0f02a73f6e3de48168d14abe33bf5970fdacdb52d7c574e908e75ad571e78f7",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "c728002a759d8ec6bccb10eed56184e86aeff0a762c1555b62b5d0fa9d1f7d64",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "586f94e07a295f3d02f847f9e0e47dbf14c16e04ccc172b011b3f4774a28aaea",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "cfe1a0f4ed2df36a2c65ea6bc235dbb8cf6e6c25feb6629989f1fa51210b32e7",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "8ba69c9bf6de79c177329451ffde48ddab7ec495410b86972ded226552f664df",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "15111cbe020f8802ad1d150524f974a5251f53d2fe10eb55675f9df1e82dbb62",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "782dc153c56a99c9ed07b2f6f497d8ad2747764966876dbfef32f3e27ce11421",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "cc2db30c3d8bb7feb53a9c9ff9b0b859dd5e04c83d678680930b5594b2bf99cb",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "46909b8c85a6fd52e0807d18045da0991e3bdc7373435794a6ba425bc23cc6be",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "e4e511ff63bb6bd69a2a51e472c6044298bca2c27835a34a20827bc3ef9b7d13",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "2c86f279d7db3c024de0f21cd9c8c2c972972f842357016bfbbd86955723b223",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "112c895cff9554cf754f928477c7d58a21191c8089bffbf6905c87fe2dc6054f",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "8cfc293b33082003cacbf7856b8b5e2d6dd3bde46abbd575b0c935dc83af4844",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "d2c5c53f85ce0474b3a876d76c4fc44ff7bb766b14ed1bf495f9abac181d7f5f",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "3c523f27926905fcbe20b8301a0cc2da317f3f9aea2273f8fc8d9ae88b524819",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "9ca0d706f6b039cc52552323aeccb4db72e600b67ddc7a54cebc095fc6f35539",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "a64909a9f75081342ddd061f8c6b49decf0d28051bc78e698d347bdcb9746577",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "7d8d55ae58766d0d52033eae73084c4db6a93c4630a3e17f419dd8a0b2a4dcd8",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "b8b5c8ba972d9ffff313b3c8a3321e7c14523fc58173862187e8d1cb814168ac",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "9c42c0fa76ee36cf9cc7cc34b1389fbb4bd49033ec124b93674ec635fabf7ffe",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "6184c8da9d8107e3e67c0b99dedb5d2dfe5ccf6dfea55c2a71d4037caf8ca196",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "4030ceea7bf41449c1b86478b786e3b7eadd13dfe5a4f8f5fe2eb359260e08b3",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "7bf516ec5dfc60e97a5bde32a6b73d772bd9de24a2e0ec91d83138d39ac83d04",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "e6a6fb3e6525f84edf42ba92e261240d4efead3093aca3d6eb1799d5942ba393",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "45df74648934f97d26800262e9b2af2f77ef7191d4a5c2eb1df0062f55e77891",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "3fe361e4e567f32a53af1f2c67ad62d958e3d264e974b0a8763d174102fe3b29",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "28b520acee4bc6911bfe458d1ad3ebc455fa23678463f59946ad97a327c9ab2b",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "121b39b1a9ad5d23ed1076b0db2fe326025150ef476dccb8bf87778fcc4f6dd7",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "f791f92a060b52aa043dde44eb60307938f18d4c7ac13df1b52c82a1e658953f",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "df09443e7743fd6adc7eb108e760084bacdf5914403b7aac5fbd4dc4e24e0c2c",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "eeb4ff4aa06956083eaa2aad59070361c20254b865d986bc997ee345dbd44cbb",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "ed84d5043444d51e1e5908f664addc4472c227b9da8401f13daa565f23624b6e",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "146bf888b703d8baa825f3f2fb1b7b31bda5dff803e15973d9636cdda33f4af3",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "b4ec8b7a8d23bdf7e1c31e43e5beac3209deb7571d2ccf2a9572865bf242da7c",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "3fba0d61d172091638e56fba651aa1f8a8500aac02147d29bd5a9cc0bc8f9ec2",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "a5a57deb0351b03041e0a1448d3a0cc5558c48e0ed9b79b69c99163cdca64ad8",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "9bcecf0cbc2bfc17e33199864c19549905309a0f9ecc37871146107aac6e05ae",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "d6a211db4b4a821e93c978add57e484f2a003142a6aef9dbfa1fe990c66f337b",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "bd4d10bd44ce3f630dd9ce44f102422cb2814ead5711955aa537a52c8d2cae14",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "08e4c39ab1e52eea1e528ee597170480405716bae92ebe7a7c529f490afff1e0",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "625bb2bc3867557ea7912bd4581288a9fca4f3423b8dffa1d9ed57fafc8610e3",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "d1992164ecc334257e0bef56b1fd7e3e1cea649c70c64ffc39999bb480c0ecdf",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "a53ff2c4037481eb357e33b85e0d78e8236e285b6428b93aa286ceea1db2f5dc",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "4fe608d524954b6857d78857efce623852fcb0c155f010710656f9db86e973a5",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "b53b62a9838d3f57b70cc456093662302abb9962e5555f5def046172a4fe0d4e",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "9866369eb72b6e77be2a92589c9df9be1232a1a66e96736170819e8a1297b61f",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "43abfbdf4e297868d780b8f4cfdd8b781b90ecd9f588b05e845192146a86df34",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "582419791241fb851403ae4a08d0712a63d4c94787524a7419c2bc8e0eb1b031",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "18437eeb932fe48590b15f404090db0ab3b32d58f831d5ffc157f63b04885ee5",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "0c5eaedf622d7a8150f5c2ec1f79ac3d51eea1966b0b3e61bfdea35e8ca213a7",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "fac39fc7a9367c0246de3543a6ee866a0cf2e4c3a8f64641461c9f2dac0d8aae",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "3b9f559d0200134f3c196168630997caedeadc6733523c8b6076a09615d5dec8",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "932af64286d9723da5ef7b77a0c4229829ce8e085e6bcc5f874cb0b83e8310d4",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "adeb9278f11f5561157feee565171c72fd48f5fe34ed06f71abf24e561fcaa1e",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "2269fef79b4900fc6b08c840260622ca33524771ff24fda5b9101ad98ea551f3",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "73d47498a1b73d5392d40fb42a3e7b009ae900c8423f4088c4faa663cc508886",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "7efc34cdc4da0968c3ba687bc780d5cacde561915577d8d1c1e46c7ac931d023",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "3c20a3bb0c50c819419f44aa55acc58476dad4754a16884cef06012d02b0722f",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "4569abf6bc7d51a455503670f3f1c0e9b4f8632a3b030e0794c61bfbba2d13be",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "98b2297b4dc1404078a54b61758d8643e4c1d7830af724f3ed2445d77a7a2d57",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "952ba89d75f1b589e07070fea2d8174332e3028752e76fd46e1c16cc51e6e2af",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "b6c9a2deefb6a57ff68d2a38d33c34407b9939487fc9ee9f32ba3ecf2987a88a",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "f6b371377bab3018dac2bca63e27502ecbd5d06f708ad7e312658d3b5315d948",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "31947dd8f1c8eeb7841e1f139a493a73bd520f90e59a6415375d0d8e6a031f01",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "95cd83b807e10b1af408e62caf5fea98562221e8ddca9d7ccc053d482283ddda",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "19287d6b76288c2814f1633bdd68d2b76748757ffd355e73e41151644e4773d6",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "fc4e6ec7dade5f9d422b153c5d8f6ad074bd9cc4e280415b7dc58fb5c52b5df1",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "3aea973106e1184db82d8880f0ca134388b6cbc420f7309d1c8947b842886349",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "765e278c464923da94dda7c2b281ece92f58981642421ae097862effe2bd30fa",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "de260bed7f7d25593f59e859bd7c7f8c6e6bb87e8686a0fcafa3774cb5ca02d8",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "b5c341ce978f5777fbe05bc86f65e9906a492fa6b327bda3c6aae900c22e76c6",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "686ddbfaf88f06b02c6324005042f85317187866ca0f8f4c9584dd9479653344",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "7f789c0c1db29dd3aab6e159d1ba82894a046bf8df595ac48385931ae6ad83e0",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "8eb3057d4fe9b59b2492921b73a795a2455ebe94ccb3d01027a7866612ead137",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "1e43c5d7aee1c5ec20611e28b5417f5840c75d048de9d7f1800d6808499236f8",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "d42610a5a2bee4b71769968a24878885c9910cd049569daa2d2ee94208b3a7a5",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "f6ed95506a6ed2d40ed5425747529befaa4c35fcbbc1e0d793813f6d725690fa",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "a6fcc1cd6583939506c906dff1276e7ebdc38fbe12d3e108ba38ad231bd18d97",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "ed13354f0d96fb6d5878655b1fead51722b54875e91d5e53ef16de5b71a0e278",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "1193b4872c1fb65769d8b164ca48124c7ebacc33eae03abf52087c2b29e8c46c",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "af682dfabe85688289b420d939020a10eb61f0120e393d53c127f1968b3e9f66",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "0dca04006bf13f72240c6a6a502df9c0b49c41c3cab2be75e81e9b592dcd4ea8",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "79d6ac4a2a229047259116688f9cd62fda25422dee3ad304f77d7e9af53a41ef",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "64534c17173990dc4c3d9388d16675a059aac407031cfce8f7fdffa4ee2de988",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "ba46d160a192639f3ca9e5b640b870b1263f24ac77b6895ab42960937b42dcbb",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "5e5ddd6fc5b590190dde881974ab969455e7fad61012e32423415ae3d085b037",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "1c16fd00c42b60b96fe0fa62113a953af58ddf0d93b0a49cb4919cf5644616f0",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "eb240c0e6b412c57f7d9a9f1c6cd933642a929837c807b179a818f6e8d3a4e44",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "4a7bde5a1155107fc7d9483b8830099f1a6072b6afda5b78d91eb5d6549b3956",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "3c1baaffa9a24cc7ef9eea6b64742394498e0616b127ca630aca0e11e3298006",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "87ca1c31a326c898fa3feb99ec10750d775e1c84dbb7c4b37252bcf3742c7b21",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "d7bd26af1f5457f037225602035c2d7e876b80d02663ab4ca644099ad3a55888",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "2ad0a6b93e84a56b64f92f36a07de7ebcb910822f9a72ad22df5f5d642aff6f3",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "523d1775135260f53f672264937ee0f3dc42a92a39de8bee6c48c7ea60b50b5a",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "e441b9eebbc1284e5d995d99b53ed520b76a87cab512286651c4612d86cd408e",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "76f853ee21425c339a79d28e0859d74f2e53dee2e4919edafff6883dd7b7a80f",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "00cf042cd6ba1915648c8d6d2aa00e63bbbc300ea54d28ed087185f0f662e080",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "f57e6707d035ab89a03797d34faef37deefd3dd90aa17d90de2f33dce46a2c56",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "cc8b559b2cf9380ca72922c64576a43f000275c72042b2af2415ce0fb88d7077",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "1a337ca294c428ba8f2eb01e887b28d080ee4a4307ae87e02e468b1d26af4a74",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "5a15362fc2e72765a908c0d4dd89e3ab3b763e8bc8c23f19234a709ecfd202fe",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "2dffdfe62ac8af0943853234519616db6fd8958fc7ff631149fd8364e663f361",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "5dbdb2b2229b5547d8177c34705272da5a10b8d0033c49efbc9f6efba5e617f2",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "6fc0498cd8823d139004baff830343c9a0d210c687b2402c1384fb40f0aa461c",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "8492306a4864a1dc6fc7e0cc0de0ae9279cbd37f3aae3e9dc1065afcdc83dddc",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "c011b378127497d6337a93f020a05f726db2c30d55dc56d20e6a5090f05919a6",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "f4556979e95a274687ae206bbab2bb9a71c3ad923b92df241d9ab88c184b3f40",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "50e82bb6e238db008b5beba16d733b77e8b2a933c9152d1019cf8096845171a4",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "d6011f8b8bbf5163ef1e73588e64a53e8bf1f13533c375ec53e631aad95f1375",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "693cd7936ac7acfa026d4bcb5801fce71cec49835ba45c67af1ef90dbfd30af7",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "195e2cf684ecddfc1f6420564535d7c469f9611ce7a380d6e191811f84556cd2",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "1dc6b6e7b2a7f2962f31c77f4713f3a5a132bbe14c00db75d557568fe82e4311",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "add93b1180e9aaac2dae4ef3b16f7655893e2ecbe62bd9e48366c305f0063d89",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "594bd896fe37c970aafb7a376ebeec4c0d636b62a5f611e2e27d30fb839ad8a5",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "b1c6a6faf60542ba4b4271db045d7faea56e143b326ef507d2797815250f3afc",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "8c8b165beb794260f462679329b131419e9f5f35212de11c4d53e6d4d9cbedf6",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "ee5a4cf57d49fcf977249ab73c690a59995997c4672bb73fcaaf2eed65dbd1b2",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "f9f36051f138ab1c40b76b230c2a12b3ce6e1271179f4508da06a959f8bee4c1",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "9dc2011a3573d271a45c12656326530c0930f92539accbec3531d65131a14a14",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "091521ce3ede6747f784ae6f68ad2ea86bbda76b59d2bf678bcad2f9d141f629",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "202c2be951f53bafe943fb2c8d1245e35ed0e4dfed89f48c9a948e4d186dd6d4",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "c618aead1d799dbf4f5b28df5a6b9ce13d72722000a0ec3fe90a8115b1ea9226",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "9b0bf59708549c3e77fddd36530b95b55419414f88bbe5893f7bc8b534617973",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "7e216f67c4886f1bde564fb4eebdd6b185f262fe85ad1d6128cad9b229b10354",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "cd51e60b96b4d43698df74a665aa7a16604488193de86aa60ec0c44d9f114951",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "b63341fb6c7ba6f2aeabd9fc46b43e6cc2d2b9eec06534cfd583d9709f310ec2",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "be2af50c81b15bcfe54ad60f53eb1c72dae681c72d0a9dce1967825e1b5830a3",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "be5366845dfb9726f05005331b9b9645f237f1ddc594c0def851208e8b7d297b",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "5ddd536aaeadd4bf0f020492b3788ed209a7050ce27abec4e01c7563ff65da81",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "e243b24da119c1ef0d79af2a45217e50682b139cb48e7607efd66cc01bd9dcda",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "5b1398c8257fd180d0bf62e999fe0a89751c641e87089a83b24392efda720476",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "1588b1359f8507a16dbef67cd2759965fc2e8d305e5b3eb71be5aa9506277dff",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "4c99f2524eee1ec81356e2b4f67047a4b7efaf145f1c4eb530cd358c36784423",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "b30c6b9f6f30c35d6ef84daed1c3781e367f4360171b90598c02468b0db2fc3d",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "79c0d32274ccfd45fae74ac61d17a2be27aea74c70806d22c43fc625b7e9f12a",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "1b7e3958f668063c9d24ac75279f3e610755b0f49b1c02bb3b1c232deb958f54",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "779d4022c3d0a4df070f94858a33d9ebf54af3664754536c4ce9fd37c6f4a8db",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "e662f063d46aa8c088edffdf1d96cb13d9a2cbf06bc38dc6fc62b4d125fb7b49",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "d1d612df1e41c90d9678b07740d13d4f8e6acec2f17390d4ff4be5c889a6d37d",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "c95933fe140918892d569186f17b70ef6b1162f851a0f13f6a89e8f4d599c5a1",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "1d8d30677f87c13c2786980a80750ac1e281bdb65aa013ea193766fe9f0edd74",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "4661673cbc984b8a6ee5e14875a71ed529b64e7f8e347e12c0db4cecc25ad67d",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "7f980a414274f0f23658baa9a16e21d828535f9eac538e2eab2bb965325841db",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "20fb747a339d3c1d4a032a31881d0c65695f8167575e01f222df98791a65da9b",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "dd4e7ebd3f205a11becf1157422f98db675a626243d2fbd123b8b93efe5fb505",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "43ec6b74c8d31e88bb6947bb256ad78e5c6c435cbbbad991c3ff39315b1a3dba",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "b27242dd3af2a5548d0c7231db7da63d6373636d6c4e72d9b616adaa2acef7e1",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "e0ee7ba0571b83c53a3d6ec761cf391e7128d8f8f590f8832c28661b73c21b68",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "072bfd97fc61c894ef260723f43a416d49ebd8b703696f647c8322671c598873",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "e70875232f5d5528f1650dd6f5c94a5bed344ecf04bdbb998f7f78a3c1317d02",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "8e495129cb6cd8008de6f4ff8ce34fe1302a9e0dcff8d13714bd5593be3f7898",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "0345bc0b1067588c4ea4c48e34425d3284498c629bc6788ebc481c59949c9037",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "e30f5b5d77c891bc16bd65a2e46cd5384ea57ab3d216c377f482f535db48fc8f",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "f113afe92ee919df8fc29bca91cab6b2ffbdd12e4ac441d2bb56121eb5e7dbe3",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "49d567cc002efb337f437675717c04f207033f7067825b42bb59c9c269313d83",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "1d248f707d02dc76555298a934fba0f337f5028bb1163ce59cd7afb831c9070f",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "5d8debffc9e7b842dc0f17b111673fe0fc0cca65e67655a2b543db2150743385",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "5fccbedc3eb3b23bc6a3a1e44ceb110a1f1a70fa8e76941dce3ae25752caa7a9",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "f4031b95f3bab2b40e1616bd973880fb2f1a97c730bac5491d28d6484fac9560",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "dbe75b3c5ed547812656e7945628f023c4cd0bc1879db0db3f43a57fb8ec0e2b",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "b754718a546a1939399a6d2a99f9022d8a515f2db646bab09f7d2b5bff3cbb82",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "2eef10fb18ed0b4be450accf7a6d5bcce7b7f98e02cac4e6e793b7ad04fc0d79",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "c46f471e172c3be12c0d85d24876fedcc0c334b0dab48060cdb1f0f605f09fed",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "7d6ddeead1d208588586c58c26e4a23f0a826b7a143fb93de62ed094d0056a33",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "7c5782291ff6e7f2a3593295681b9a411c126e3736b83b37848032834832e6b9",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "3a3f09df6258a657dd909d06d4067ee360cd2dccc5f5d41533ae397944a11828",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "ea54615be964503fec7bce04336111a6fa455d3e8d93d44da37b02c863b93eb8",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "2a83694bc3541791b64b0e57766228ea23d92834df5bf0b0fcb93c5bb418069c",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "b5913641d6830e7de0c02366c08b1d26063b5758132d8464c938e78a45355979",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "46c095d39c1887979d9494a824eda7857ec13fb5c20a6d4f7d02c2975309bf45",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "f6e02ca076dc8e624aa38038e3488ebd0091e2faea419082ed764187ba8a6500",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "4d49e8a78aba1d4e0ad32289bf8727ae53bc2def9285dff56151a91e7d770c3e",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "63315cf08117cc728eab8f3eec8801a91d2cd86f91d0ae895d7fd928ab54596d",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "a14a6f3a5636bcaebfe9ec2ccfa9b07dc94deb1f6c30358e9d8ea800a1190d5e",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "21206e7e81876dabf2a7af7aa403f343af1c205bdcf7eff24d9d7f4eee6214c4",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "cd0a9f0ffec2486cad86b7ef1e4da42953ffeb0eb9f79f536e16ff933ec28698",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "f609a6ec6f1ab04dba769e14d6b55411262fd4627a099e333aa8876ea125b822",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "6d8052bb814be030c64cb22ca0e041fe036ad3fc8d66208170f4e90d0167d354",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "851f72a5d3e8a2bf7eeb84a3544da82628f74515c92bdf23c4a40af26dcc1d16",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "59692a7938aab65ea812a8339bbc63c160d64097fe5a457906ea734d6f36bcd4",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "8cb3b95e610c44a9986a7eab94d7b8f8462e5de457d5d10a0b9c6dd16bde563b",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "f571713abd9a676da6237fe1e624d2c6b88c0ca271c9f1acc1b4d8efeea60b66",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "16c5d3637d1517a3d17ed5ebcfbb0524f8a9997a7b60f6100f7c5309b3bb5ac8",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "ca1ec669726352c8e9d897f24899abf27ad15018a6b6bcf9168d5cd1242058ab",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "bffb1b39484facf6d0c5d5feefe6c0736d06b73540b9ce0cf0f12da2edfd8e1d",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "f1663c030754f6171b8bb429096c7d2743282de7733bccd6f67f84a4c588d96e",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "dd09693285e58504057413c3adc84943f52b07d2d2fd455917f50fa2a63c9d69",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "d94c94593d03d44a03810a85186ae6d61ebeb3a17a9b210a995d85f4b584f23d",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "c7c3bf625a8cb5a04b1c0a2fbe8066ecdbb1f383d574ca3ffdabe7571589a935",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "7a2f39a4467b819e873cd672c184f45f548511b18f6a408fe4e826136d0193bb",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "f8a0ae0d3d4993616196619da15da60a6ec5a7dfaf294fe877d274385eb07433",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "2cca80de38c80ef6c26deb4e403ca1ff4efbe3cf12451e26adae5e165421b58d",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "0070d3e17aa5ad697538bf865faaff94c41f064db9304b2b949eb8bcccb62d34",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "53df93f2db5b7eb8415e98242c1c60f6afcac2db44bce4a8830c8f21eee6b1dd",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "d67bf28dc9e6691d165357424c8729c5443290367344263146d99b2f02a72584",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "932557e93fbdf0c36cc29b9e35950f6875425b3ac917fa0d3c7c2a6b4f550078",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "e3dc7ec1597fb61de7959335fb7f8340c17bebf2feb1852ed8167a552d9a4a25",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "b64e15030511c5049542c2e0300f1fe096f926cf612662884f40227267f5cd9f",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "1932796f09c193783801972a05d8fb1bfef941bb46ac76fbe1abb0b3bfb674fa",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "d9575d5787311ee7d61ad503f5061ebcfaf76b531cfecce3dc12afb72bb2d105",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "5b41d96c9a4c2c2d83f1200949f795c3b6a4d2be432b357ad1ab687e0f0de07c",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "38ec829a548e869de4c5e51671245a909644c8fb8e7953259ebb028d36b4dd06",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "20c2c5e44d37dac953b516620b5dba60c9abd062235cdf2c3bfbf722d877a96b",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "875fe6f7103cf87c1b741a0895fda9240fed6353d5e7941c8c8cbfb686f072b4",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "c0ccccf8fbcf5d95f88ed151d0d8ce3015aa88cf98d4fd5e8f75e5f1534ee7ae",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "1b1f4aba21fd956269ced249b00b0e5bfdbd5ebd9e628a2877ab1a2cf493c919",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "939e3299952dff0869330e3324ba16efe42d2cf25456d7721d7f01a43c1b0b34",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "f0a9b52faec508ba22053dedfa4013a61c0425c8b96598cef3dea9e4a22637c6",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "d5b302f50db61181adc6e209af46ae1f27d7ef3d822de5ea808c9f44d7d219fd",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "19131632ba492c83e8eeadf91a481def0e0b39ffc3f155bc20a7f640e0570335",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "4581c03abea21396c3e1bb119e2fd785a4d91408756209cbeed0de7070f0ab5b",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "ebcd3b99e17329e9d542ef2ccdd64fddab7f39bc958ee99bbdb09056c02d6e64",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "4b148999deb1d95b8aedd1a810473a41d9794655af52b40e4894b51a8a4e6a6d",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "1781cc99a0f3b4f11668bb37cca7b8d71f136911e87269e032f15cf5baa339bf",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "33f1b7fa96117d690035a235b60ecd3cd979fb670f5f77b08206e4d8eb2eb521",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "01429b306b94ff0f1f5548ce5331344e4e0f5872b97a4776bd38fd2035ad4764",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "c1bc4f2136de7044943d784e7a18cb8411c558dbb7be4e4b4876d273cbd952af",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "5470f84a69b94643697f0d7ec2c8a54a4bea78838aaa9170189b9e0a6e75d2cf",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "36aaa44ee26b2508e9a6e93cd567e20ec700940b62595caf962249035e95b5e3",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "f8343562f283b7f701f86ad3732d0c7fd000c20fe5dc47fa4ed0073614202b4d",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "a53c572630a78cd99a25b529069c1e1370f8a5d8586d98e798875f9052ad7ad1",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "4ad3451d066711dde1430c544e30e123f39e23c744341b2dfd3859431c186c53",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "8069cbef9efa7445b2f09957ffbc27b5f8946fdbade4358fb68019e23df4c462",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "cd8b4e7ad04ba9d54eb5b28ac088315c07335b837ee6908765436a78d382b4c3",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "d533d8f8e5c80a30c51f0cbfe067b60b89b620f2321d3a581b5ba9ac8ffd7c3a",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "33f49f22fdda67e1ddbacdcba39e62924793937ea7f71f4948ed36e237555de3",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "710c31d7c30437e2b8795854d1aca43b540cb37cefd5900f09cfcd9e5b8540c4",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "b2c03a0e9628273bc26a1a58112c311ffbc7a0d39938f3878837ab14acf3bc41",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "a93beb0aa992c9b6408e355ea3f850c6f41e20328186a8e064173106375876c2",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "efdcba88fcd5421867898b5c0e8ea6331752492bd3547942dea96c7ebcb65194",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "a98e777e7a6c2c32336a017b011ba1419e327320c3556b9139413e48a8460b9a",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "ea44f7f8e1fe490516803c06636c1b33a6b82314366be1bd6ffa4ba89bc09f86",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "c25f22d78cc7f46226179c33bef0e4b29c54912bde47b62e5fdaf9312f22ffcb",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "d57579cfedc5a60fda79be303080e47dfe0c721185a5d95276523612228fcefc",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "a41630012afe0d4a9ff14707f96a7e26e1154266c008ddbd229e3f614e4d1cf7",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "298a858633dfa361bb8306bbd4cfd74f25ab7cc20631997dd9f57164bc2116d1",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "921782c45e09940feb232d8626a0b8edb881be2956520c42c44141d9b1ddb779",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "06117e4cc7399ce1c2b512aa070043464e0561f956bda39ef8971a2fcbcdbf2e",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "daccf332594b304566c7677c2732fed6e8d356da5faac8c5f09e38c2f607a4ab",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "4386051a0b6b072f35a2fc0695fecbe4a7a8a469a1d28c73be514548e95cd558",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "78e41de491fe25947a7fd8eeef7ebc8f1c28c1849a90705d6e33f34b1a083b90",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "3ccd198e0a693dd293ed22e527c8537c76b8fe188e1ebf20923589c7cfb2c270",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "2ebf2ee015d5c8008428493d4987e2af9815a76e4598025dd8c2f138edc1dcae",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "0dcc8f61382c9fcdafd48acc54b6ffda69ca4bb7e872f8ad12fb011672e8b20c",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "9db563287eb527ead0bcb9eb26fbec32f662f225869101af3cabcb6aee9259cf",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "068489bec523be43f12d8e4c5c337be4ff6a7efb4fe8658283673ae5aae14b85",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "838212d0dc5b97f7c5b5e29a89953de3906f72fce13c5ae3c5ade346f561d226",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "ddc78d29af824ad7587152ea523ed5d60f2bc0148d8741c5dacf9b5b44587b1b",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "019b522e3783e5519966927ceeb570eefcc64aba3f9545828a5fb4ae1fde53c6",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "b34623cc86497a5123de522afba770390009a56eebddba38d2aa5798b70b0a87",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "d2a8cbeb0c0caaf531342062b4b5c227118862879f6a25033e31fad00797b7eb",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "14891c20f15be1d0d42ecbbd63de1c56a4d745e3ea2b4c56775a4d5d36855630",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "e55a1f6b198a39e38a3cea3ffe916aab6fde7965c827db3b8a1cacf144a67cd9",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "f7910ccfe56131e99d52099d24f3585570dc9df9c85dd599a387b4499596dd4d",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "9409ac347c5779f339112000d7627f17ede6e39b0b6900679ce5454d3ad2e3c9",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "22dfe27b0aa1c669ce2891f5c89ece9be18074a867fe5dd8b8eb7c46be295ca1",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "684a5c26ce2bb7956ef6b21e7f2d1c584172cd120709e5764bc8b89bac1a10eb",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "93761e39ce9d3f8dd58c4327e615483f0713428fa1a230883eb812292d47bbe8",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "c66be51e3d121c163a4e140b6b520a92e1a6a8a8862d44337be682e6f5ec290a",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "66e486a9c9a86154dc9780f04325e61741f677713b7e78e515938bf54364fee2",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "d211bc80b6b6e98445df46fe9dd3091944825dd924986a1c15f9c66d7659c495",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "8dd2b72f5e9bf88939d066d965144d07518e180efec3e2b6d06ae5e725d84c7d",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "949cb88e315ab1a098c3aa4a8b02496a32b79c7ef6d189eee381b96471a7f609",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "bc43af2a5fa30a36be4a3ed195ff29ffb8067bf4925aa350ace9d9f18f380cc2",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "36844f94161a10af6586f50b95d40baa244215fea31055f27bcbea42cd30373e",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "8428e71f6d1b63acf55ceb56244aad9cf07678cf9626166e4aded15e3d252f8a",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "11505212ab24aa0f06d719a09add4be866e26f0fc15e96a1a2a8522c0c6a73a8",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "55828c4ddfee3bc66d533123ff52942ae67a2115f7395b2a2e0a22cea3ca64e7",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "c44bb0071cededc08236d57d1131c44339c1add98b029a95584dfe1462533575",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "7a4935af71877da3bbc53938af00e5d4f6d445ef850e1573a240447dcb137b5c",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "4e313033202712168ecc70a6d830964ad05c9c93f81d806d7a25d344f6352565",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "8a1fc69eaf8fc8d447e6f776fbfa0c1b12245d7f35f1dbfb18fbc2d941f5edd8",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "afb9b4c8bd38fb43d38a674de56e6f940698f91114fded0aa119de99c6cd049a",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "1d277860f19b8825d027947fca9928ee1f3bfaa0095e85a97dd7a681b0698dfc",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "6d32122bb1e7c0b38b6f126d166dff1f74c8020f8ba050248d182dcafc835d08",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "cfac5627d337b82d2fbeff5f0f638b48a370a8d72d653327529868a70c5bc0f8",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "8a826bc18afa4c5ed096ceb5d923e2791a5bae802219e588a999f535b1c80492",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "73e94021c55ab908a1b8c53792e03bf7e0d195fee223bdc5567791b2ccbfcdec",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "5f73eb47b37f3a957fe2ac6fe654648d60185908cab930fc01c31832a5cb4b10",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "cb6372a2460010a342ba39e06e1dcfd722e696c9d63b4a71577f9a3c72d09e0a",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "1e289698069f553f36bbf12ee0084c492245004a69409066faceb173d2304ec4",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "f1ca71145e5c3bba4d7f731db295d593c3353e9a618b40c4af0a4e9a814bb290",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "ac12a6010ff501e641f5a8334b8eaf521d0e0739a7e254451b6eea924c3035c7",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "97395d1e03af4928f3496cc3b118c0468b560765ab896ce811acb86f6b902b5c",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "7dcfbd6a9f1ce1ddf3050bd469aa680e5259973b4522694dc6291afe20a2ae28",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "6e545419ad200ae4614f8e14d32b7e67e039c26a872c0f93437b0713f54cde53",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "efc225581aae9bb47d421a1b9f278db0238bc617b257ce6447943e59a2d1621e",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "8833b88e26156b685bc6f3d6a014c2014a878ffbd240a01a8aee8a9091014e9c",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "7a2a42a1ac642a9c28646731bd77d9849cb1a05aa1b7a8e648f19ab7d72dd7dc",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "4d371c53067a3cc1a882ff16432b03291a016f4834875b77169a2d10bb1b023e",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "99b38f72e30976fd1946d7b4efe91aa227ecf0c9180e1dd6502c1d39f37445b4",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "df1bcf0b1c413e2945ce63a67a1c5a7b21dbbec156a97d55e9ea0eed90d2c604",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "6e2011a859fa435b1196da1720be944ed59c668bb42d2f2711b49a506b3e4e90",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "b4bfa90fac90c6e0d0185d2fe22f059fec67587cc34281f62294f9c4615a8082",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "036d363e409ebe316a6366aff5207380846f8f82e100c2e3db4af5fe0ad0c378",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "5ae6642588e4a72e5a62f6111cb750820034a7fbe56b5d8ec2bcb29df806ce52",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "6fca09e1abc83168caf36b751dec4ddda308b5714ec841c3ff0f3dc07b93c1b8",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "2f7268e6ac610c7122b6b416e34415ce42b51c56d080bef41786d2365f06772d",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "9a07957f75128ed0be5fc8a692a14da900878d5d5c21880f7c08f89688354aa4",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "8b6f3ae84eab35c50cf0f1b608c143fe95f1f765df6f753cd5855ae61b3efbe2",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "992491d83ff2d1e7f64a8b9117daee73724af13161f1b03171f0fa3ffe9b4e3e",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "12bcf6af851be8dd5f3e66c152bb77a83829a6a8ba8c5acc267e7b15e11aa9ab",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "e2704efc7423b077d7d9a21ddb42f640af1565e668d5ec85f0c08550eff8b833",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "e0513c71fd562f859a98940633830a7e5bcd7316b990310e8bb68b1d41d676a3",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "712071b9066a2d8f4e11c3b8b3d5ada6253f211a90f06c6e131cff413312e26d",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "5a187a7bc1e7514ef1c3d6eaafa470fc45541674d8fca0f9898238728d62666a",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "0c06897f7ab3830cef0701e0e083b2c684ed783ae820b306aedd501f32e9562d",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "56cc6eae48fd08fa709cf9163d01649f8d24d3fea5806f488d2b1b53d25e1d6c",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "57a925b13947b38c34277d93fb1e85d6f03f47be18ca5293b14082a1bd4a48f5",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "9d9d64c1fa76211dd529b6a24061b8d724e2110ee55d3829131bca47f3fe4838",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "c13042e244bb8cf65586e4131ef7aed9ca33bf1e029a43ed0ebab338b4465553",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "54be9b9c71a17cb2519b841fad294fa9dc6e0796ed86c8ac8dd9d8c0d1c3a631",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "10881be85efd595bef1d74dfa7b9a76a5ab1bfed9fb4a4ca7f73396b72d25b90",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "925e71eaa87021d9a1215b5cf5c5933f85fe2371ddc81c32d1191d7842565302",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "faed0b3f8979bfbfb54babcff9d91bd51fda90931c7716effa686b4f30a09575",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "53c72d68328780f711dbd39de7af674287d57e387ddc5a7d94f0ffd53d8d3564",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "51129924d359cdebdccbf20dbabc98c381b58bfebe2457a7defed57002a61316",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "7270a757071e3bc7b5e7a6175f1ac9a4ddf4de09f3664d80cb8805138f7d365b",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "ea7b5c6a79a6511cdeeedc47610370be1b0e932e93297404ef75c90f05fc1b61",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "ea7a1b1f7a1d44d222d98a01a836f19ac22602324d1c3faf755303adf270f0fb",
- "signature": false
- },
- {
- "version": "183e02d315b3fc619b0dcd0a5762647534473f62a4e9018b76744f3ba55967bc",
- "signature": false
- },
- {
- "version": "e516240bc1e5e9faef055432b900bc0d3c9ca7edce177fdabbc6c53d728cced8",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "5402765feacf44e052068ccb4535a346716fa1318713e3dae1af46e1e85f29a9",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "e16ec5d4796e7a765810efee80373675cedc4aa4814cf7272025a88addf5f0be",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "1f57157fcd45f9300c6efcfc53e2071fbe43396b0a7ed2701fbd1efb5599f07f",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "9f1886f3efddfac35babcada2d454acd4e23164345d11c979966c594af63468b",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "a3541c308f223863526df064933e408eba640c0208c7345769d7dc330ad90407",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "59af208befeb7b3c9ab0cb6c511e4fec54ede11922f2ffb7b497351deaf8aa2e",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "928b16f344f6cddaba565da8238f4cf2ddf12fe03eb426ab46a7560e9b3078fa",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "120bdf62bccef4ea96562a3d30dd60c9d55481662f5cf31c19725f56c0056b34",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "39e0da933908de42ba76ea1a92e4657305ae195804cfaa8760664e80baac2d6a",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "55ce6ca8df9d774d60cef58dd5d716807d5cc8410b8b065c06d3edac13f2e726",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "788a0faf3f28d43ce3793b4147b7539418a887b4a15a00ffb037214ed8f0b7f6",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "a3e66e7b8ccdab967cd4ada0f178151f1c42746eabb589a06958482fd4ed354e",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "bf45a2964a872c9966d06b971d0823daecbd707f97e927f2368ba54bb1b13a90",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "39973a12c57e06face646fb79462aabe8002e5523eec4e86e399228eb34b32c9",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "f01091e9b5028acfb38208113ae051fad8a0b4b8ec1f7137a2a5cf903c47eefc",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "b3e87824c9e7e3a3be7f76246e45c8d603ce83d116733047200b3aa95875445b",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "7e1f7f9ae14e362d41167dc861be6a8d76eca30dde3a9893c42946dc5a5fc686",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "9308ef3b9433063ac753a55c3f36d6d89fa38a8e6c51e05d9d8329c7f1174f24",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "cd3bb1aa24726a0abd67558fde5759fe968c3c6aa3ec7bad272e718851502894",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "1ae0f22c3b8420b5c2fec118f07b7ebd5ae9716339ab3477f63c603fe7a151c8",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "919ff537fff349930acc8ad8b875fd985a17582fb1beb43e2f558c541fd6ecd9",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "4e67811e45bae6c44bd6f13a160e4188d72fd643665f40c2ac3e8a27552d3fd9",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "3d1450fd1576c1073f6f4db9ebae5104e52e2c4599afb68d7d6c3d283bdbaf4f",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "c072af873c33ff11af126c56a846dfada32461b393983a72b6da7bff373e0002",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "de66e997ea5376d4aeb16d77b86f01c7b7d6d72fbb738241966459d42a4089e0",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "d77ea3b91e4bc44d710b7c9487c2c6158e8e5a3439d25fc578befeb27b03efd7",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "a3d5c695c3d1ebc9b0bd55804afaf2ac7c97328667cbeedf2c0861b933c45d3e",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "270724545d446036f42ddea422ee4d06963db1563ccc5e18b01c76f6e67968ae",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "85441c4f6883f7cfd1c5a211c26e702d33695acbabec8044e7fa6831ed501b45",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "0f268017a6b1891fdeea69c2a11d576646d7fd9cdfc8aac74d003cd7e87e9c5a",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "9ece188c336c80358742a5a0279f2f550175f5a07264349d8e0ce64db9701c0b",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "cf41b0fc7d57643d1a8d21af07b0247db2f2d7e2391c2e55929e9c00fbe6ab9a",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "11e7ddddd9eddaac56a6f23d8699ae7a94c2a55ae8c986fdabc719d3c3e875a1",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "dd129c2d348be7dbf9f15d34661defdfc11ee00628ca6f7161bead46095c6bc3",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "c38d8e7cfc64bbfc14a63346388249c1cfa2cc02166c5f37e5a57da4790ce27f",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "dcbf3ef5c41676b2e5b83abc13d8ab0d88fe9da17d2272f3cca2a2ce18921b25",
- "signature": false
- },
- {
- "version": "56208c500dcb5f42be7e18e8cb578f257a1a89b94b3280c506818fed06391805",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "0c94c2e497e1b9bcfda66aea239d5d36cd980d12a6d9d59e66f4be1fa3da5d5a",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "eb9271b3c585ea9dc7b19b906a921bf93f30f22330408ffec6df6a22057f3296",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "aa4a927d0c7239dff845a64e676c71aeed2bbda89a7fb486baab22eb7688ba1d",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "340a990742a00862049b378aaa482b5bb8323d443c799dded51ce711f4f8eb51",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "89eeeebbc612a079c6e7ebe0bde08e06fbc46cfeaebf6157ea3051ed55967b10",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "4c72f66622e266b542fb097f4d1fe88eb858b88b98414a13ef3dd901109e03a1",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "23a933d83f3a8d595b35f3827c5e68239fb4f6eb44e96389269d183fe7ff09ba",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "2acad3ae616a9fb5a8c3d4d7bb5edb11d1d0102372ee939e7fc64359fec4046e",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "c812eabb7d2e13c8e72e216208448f92341a4094dd107cbb0bdb2cb23d1a83e7",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "f734b58ea162765ff4d4a36f671ee06da898921e985a2064510f4925ec1ed062",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "55c0569d0b70dbc0bb9a811469a1e2a7b8e2bab2d70c013f2e40dfb2d2803d05",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "37f96daaddc2dd96712b2e86f3901f477ac01a5c2539b1bc07fd609d62039ee1",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "9c5c84c449a3d74e417343410ba9f1bd8bfeb32abd16945a1b3d0592ded31bc8",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "a7f09d2aaf994dbfd872eda4f2411d619217b04dbe0916202304e7a3d4b0f5f8",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "a66ebe9a1302d167b34d302dd6719a83697897f3104d255fe02ff65c47c5814e",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "a7f23fecdccf1504dae27c359db676d0a1fbaaeb400b55959078924e4c3a4992",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "bee66a62aa1da254412bb2c3c8c1a0dd12efea0722d35cc6ea7b5fdaa6778fd1",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "05d80364872e31465f8a1eaf2697e4fc418f78aa336f4cea68620a23f1379f6f",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "7345ba3b9eb2182d8cdc4c961b62847c3c9918985179ddefd5ca58a80d8b9e6a",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "81c4a0e6de3d5674ec3a721e04b3eb3244180bda86a22c4185ecac0e3f051cd8",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "39975a01d837394bcac2559639e88ecdc4cfd22433327b46ea6f78eb2c584813",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "7261cabedede09ebfd50e135af40be34f76fb9dbc617e129eaec21b00161ae86",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "ea554794a0d4136c5c6ea8f59ae894c3c0848b17848468a63ed5d3a307e148ae",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "2c378d9368abcd2eba8c29b294d40909845f68557bc0b38117e4f04fc56e5f9c",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "9b048390bcffe88c023a4cd742a720b41d4cd7df83bc9270e6f2339bf38de278",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "c60b14c297cc569c648ddaea70bc1540903b7f4da416edd46687e88a543515a1",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "acfa00e5599216bcb8c9f3095e5fec4aeddfcc65aabe0eac7e8dbc51e33691c9",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "922d8f0f46dbe9fb80def96f7bcd9d5c1a6c0022d71023afa9eb7b45189d61f2",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "90588fb5ef85f4a8a4234e8062eb97bd3c8114dfb86a0c67f62685969222da8b",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "6ce50ada4bc9d2ad69927dce35cead36da337a618de0a2daaaeeafe38c692597",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "13b8d0a9b0493191f15d11a5452e7c523f811583a983852c1c8539ab2cfdae7c",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "8932771f941e3f8f153a950c65707d0611f30f577256aa59d4b92eda1c3d8f32",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "df6251bd4b5fad52759bfe96e8ab8f2ce625d0b6739b825209b263729a9c321e",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "846068dbe466864be6e2cae9993a4e3ac492a5cb05a36d5ce36e98690fde41f4",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "94c8c60f751015c8f38923e0d1ae32dd4780b572660123fa087b0cf9884a68a8",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "db8747c785df161ef65237bac36a7716168e5ebf18976ab16fd2fff69cf9c6ce",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "3085abdf921a6d225ad037c89eb2ba26a4c3b2c262f842dd3061949d1969b784",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "8e8f7b36675be31c4e9538529c30a552538c42ff866ba59fe70f23ba18479c5a",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "f4f7fbf0e5bf2097ddee2c998cca04b063f6f9cdcb255e728c0e85967119f9e5",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "c5b47653a15ec7c0bde956e77e5ca103ddc180d40eb4b311e4a024ef7c668fb0",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "223709d7c096b4e2bb00390775e43481426c370ac8e270de7e4c36d355fc8bc9",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "0528a80462b04f2f2ad8bee604fe9db235db6a359d1208f370a236e23fc0b1e0",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "17fb3716df78592be07500e9a90bd8c9424dd70c6201226886a8e71b9d2af396",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "82ef7d775e89b200380d8a14dc6af6d985a45868478773d98850ea2449f1be56",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "b86720947f763bbb869c2b183f8e58bca9fa089ed8f9c5a1574b2bea18cfbc02",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "fb7e20b94d23d989fa7c7d20fccebef31c1ef2d3d9ca179cadba6516e4e918ad",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "8326f735a1f0d2b4ad20539cda4e0d2e7c5fc0b534e3c0d503d5ed20a5711009",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "8d720cd4ee809af1d81f4ce88f02168568d5fded574d89875afd8fe7afd9549e",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "df87c2628c5567fd71dc0b765c845b0cbfef61e7c2e56961ac527bfb615ea639",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "659a83f1dd901de4198c9c2aa70e4a46a9bd0c41ce8a42ee26f2dbff5e86b1f3",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "1db5c2491eebd894eb9be03408601cddfe1b08357d021aeb86c3fb6c329a7843",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "224f85b48786de61fb0b018fbea89620ebec6289179daa78ed33c0f83014fc75",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "05fbfcb5c5c247a8b8a1d97dd8557c78ead2fff524f0b6380b4ac9d3e35249fb",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "322f70408b4e1f550ecc411869707764d8b28da3608e4422587630b366daf9de",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "acb93abc527fa52eb2adc5602a7c3c0949861f8e4317a187bb5c3372f872eff4",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "c4ef9e9e0fcb14b52c97ce847fb26a446b7d668d9db98a7de915a22c46f44c37",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "0e447b14e81b5b3e5d83cbea58b734850f78fb883f810e46d3dedba1a5124658",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "045f36d3a830b5ae1b7586492e1a2368d0e4b4209fa656f529fd6f6bb9ac7ced",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "929939785efdef0b6781b7d3a7098238ea3af41be010f18d6627fd061b6c9edf",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "fca68ac3b92725dbf3dac3f9fbc80775b66d2a9c642e75595a4a11a2095b3c9a",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "245d13141d7f9ec6edd36b14844b247e0680950c1c3289774d431cbbd47e714e",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "4326dc453ff5bf36ad778e93b7021cdd9abcfc4efe75a5c04032324f404af558",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "27b47fbd2f2d0d3cd44b8c7231c800f8528949cc56f421093e2b829d6976f173",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "0795a213434963328e8b60e65a9d03a88efc138ae171bbcca39d9000c040e7a4",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "fc745bebefc96e2a518a2d559af6850626cada22a75f794fd40a17aae11e2d54",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "2b0fe9ba00d0d593fb475d4204214a0f604ad8a56f22a5f05c378b52205ef36b",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "3d94a259051acf8acd2108cee57ad58fee7f7b278de76a7a5746f0656eecbff6",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "46097d076be332463ea64865c41d232865614cf358a11af75095dd9cef2871cc",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "6e18a70a7c64e6fe578a8f3ecc1dd562cd0bf6843bbf8e65fde37cf63b9a8ea8",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "3f3526aea8d29f0c53f8fb99201c770c87c357b5e87349aca8494bfd0c145c26",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "6ee92d844e5a1c0eb562d110676a3a17f00d2cd2ea2aaaff0a98d7881b9a4041",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "b9dc36d1f7c5c2350feafb55c090127104e59b7d2a20729b286dab00d70e283d",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "45d3f1d53fa99783a5e3c29debb065d6060d0db650a6a1055308a8619bd6b263",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "a14febaf38fd75a88620a0808732cf9841afc403da2dc3de7a6fc9a49d36bdbc",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "6052522a593f094cfee0e99c76312a229cf2d49ac2e75095af83813ec9f4b109",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "a0ceb6ce93981581494bae078b971b17e36b67502a36a056966940377517091d",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "a63ce903dd08c662702e33700a3d28ca66ed21ac0591e1dbf4a0b309ae80e690",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "2b63d2725550866e0f2b56b2394ce001ebf1145cb4b04dc9daa29d73867b878c",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "e885933b92f26fa3204403999eddc61651cd3109faf8bffa4f6b6e558b0ab2fa",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "bd834465d4395ac3d8d55e94bf2a39c1f5e9be719c99340957b3b6a3a85ec66a",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "0b1238c0e3536321ae822c84216614bad2f3a7bd3f1de5c6ec8a85b26d900e6b",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "6e2d2b63c278fd1c8dd54da2328622c964f50afa62978ed1a73ccd85e99a4fc7",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "e151e41c82004cf09b7ea863f591348c9035e0f7a69d4189cbac89cc9611b89d",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "74d62eb5f24ae3e1fa7374380fa6ef354449757293c7434d00b702b1c7f87249",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "b83ffe71adbac91c5596133251e5ec0c9e6664017ee5b776841effe93de8f466",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "61ecf051972c69e7c992bab9cf74c511ecba51b273c4e1590574d97a542bd4ea",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "068f5afbae92a20a5fcd9cfce76f7b90de2c59a952396b5da225b61f95a1d60a",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "bdf5e07a22e661de2c7115e8364b98ef399c24c9fe62035dc1ac945a9dd3372a",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "4e024e2530feda4719448af6bdd0c0c7cfa28d1a4887900f4886bec70cd48fea",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "99c88ea4f93e883d10c04961dbf37c403c4f3c8444948b86effec0bf52176d0e",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "e88f3729fcc3d38d2a1b3cdcbd773d13d72ea3bdf4d0c0c784818e3bfbe7998d",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "f25b1264b694a647593b0a9a044a267098aaf249d646981a7f0503b8bb185352",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "964d0862660f8e46675c83793f42ab2af336f3d6106dee966a4053d5dc433063",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "292ad4203c181f33beb9eb8fe7c6aaae29f62163793278a7ffc2fcc0d0dbed19",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "4e04e6263670ad377f2f6bcd477def099ac3634d760ee8a7cca74a6f39d70a48",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "f1a4ca3688d951daa2d7740da5a0827fa34d4a7709eed7b8225215986ee87108",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "7879a9ca9f953587b6d1471d5b9c7ed0d9852f1a30e9c5b6a7227a7bb7a0894d",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "f8453a3fe0fe49ab718357120bec2b8205e15eb91ff62eada60a4780458fa91e",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "06f186bb9a6408ef8563dbf17d53cbe23e68422518b49b96afac732844ddbaa1",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "525f9c06245b5b43b1237cfd757396fd7fd8090e5d6a4ded758c7ce17a04bf42",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "04bc74b8fa987f140989e9f4d6dc37f04a307417af3e0a3767baa1eef4964e10",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "6a9d3aa58228faa62ec3d9e305f472a24441f22a8d028234577beb592ec295b2",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "683e2d454f64394931d233740b762dabc379e3ce5c4c4ad4747cdbd6d5fd8e8d",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "18594ddc7900f3e477645819bce4d824989ad296e3d70bdcdce13cabc5d97335",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "9376cce4d849f1d6ad2cb0048807c77cfeb78cee6e29b61dcfe74c7ab2980e18",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "2698935791615907eb632186119dfc307363d6a163f26017084009e44ea261f2",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "4edfc4848068bf58016856dfeb27341c15679884575e1a501e2389a1fea5c579",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "0c3d7a094ef401b3c36c8e3d88382a7e7a8b1e4f702769eba861d03db559876b",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "d3c3280f081f28e846239d27c2f77a41417e6a19f39267d20a282fd07ef36b96",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "7e3a4800683a39375bc99f0d53b21328b0a0377ab7cbb732c564ca7ca04d9b37",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "c777b498a93261d6caa5dbd1187090b79f0263a03526c64ea4f844a679e8299e",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "b4677e9d8802a82455a0f03a211b85f5d4b04cfbc89fc9aa691695b8e70df326",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "7cb0d946957daea11f78a31b85de435e00bcd8964eba66d3e8056ba9d14b9c55",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "b3e441cdb9d9e55e6e120052fe8bf2a8b5e5a46287f21d5bc39561594574e1a9",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "0870e8eb0527c044e844a1d83127f020aa7f79048218a62b2875e818355f8cb2",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "6b7446f89f9e5d47835117416e6d7656bac2bf700513d330254ae979260ce99f",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "9750752db342b88df1b860958a20fac9fd6a507f67c5cfb6bd5cfa8759338b1e",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "946de511c5e04659d9dfaf5ef83770122846d26d3ffe30e636d3339482bbf35a",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "fbcc201a8fc377a92714567491e3f81e204750b612d51a1720af452f1a254760",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "6dd704b0ba0131eb9e707aeedc39be6a224b4669544e518217a75eb7f5dd65c2",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "6effa89f483e5c83c0e0063df5f1d8b006d9d0f1de7eed2233886642424dc8fb",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "84a8c844f9562da8994c07b44dd2777178a147e06020c62a7f6e349e695e7149",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "d43130c35762a80da2299f8b59a4321b6e64acfb0b11a36183379b4c7b83314b",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "6bf44b890824799af8e20c0387ffa987e890fac5c5954a3a7352351eefe55d5d",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "892b19153694b7a3c9a69bcedb54e1c8ad3b9fa370076db4d3522838afd2cd60",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "5461fca70947a4d8fa272d3dda4c729317cec825141313352adf33bc94de142a",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "f83afa274e0f11860c6609198ecca220f5df60690923b990ca06cae21771016e",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "af31f37264ea5d5349eec50786ceca75c572ed3be91bdd7cb428fdd8cd14b17c",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "85e4673ec8507aef18afd4a9acfae0294bdfaac29458ede0b8b56f5a63738486",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "40683566071340b03c74d0a4ffa84d49fedb181a691ce04c97e11b231a7deee4",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "81c8ab81daa2286241ad27468d6fc7ad3ecc62da04b18b77ce9b9b437f6b0863",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "f158721f7427976b5510660c8e53389d5033c915496c028558c66caaf3d1db1c",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "8e56db8febfe127a9142435940c9a5a1ad17ddb2b2a6d8e9e8984785a76db1fd",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "6113c2f172a875db117357f0aa35aa7c1b6316516e813977ef98dc3b4b8baf2a",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "f25c9802b1316afbf667dd8fa6db4ed23aa5e7acc076a1054ca45d7bc9c8e811",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "e99285f74c22ad823c0b9fac55316b84144e15eb91830034badd9eb0fafe71bf",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "63959b7be74e01c4fc55ec3c7fc1cc31bcc9953c95d825956f883484e7af7223",
- "signature": false
- },
- {
- "version": "f16272ee586be4ad380e30a943ef44518910519c676a3be5e0208d23afff658c",
- "signature": false
- },
- {
- "version": "72558c21409eca7e4b927e731da5b32a3308de64b6ab45eece203905eb3e8b85",
- "signature": false
- },
- {
- "version": "7459d85c80f2971be954b562724106b13d5a2a57e8bfde51723e94e838f6fcbf",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "c24ab9ac84d65b417a807ada25456697bb2adf1189fa80cb240625dfb3e61c42",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "2f0fa19ebe34e7d2cf7823063555ee4439857c69edb03b6a705b97ce95a69070",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "959ffb2edd511f72c17bb07c9192443bc512f7dd707b0127c513ef3fe13b397f",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "4a950137dbff496fdca742066964f48efdaa748794668dd552419d43a6125603",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "4b15cc0373f1ca84bdb230115a283869f9016d7246b22ee76d2b93af5d2f1004",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "4d857105510df8011cfb5b3769dec55624a1df92e85d399cd03bc82bb89d090c",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "0027415abaae3a127e25fabad82bb581b09d89235c553a1eb847fa14faf69bc9",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "2e10e08e6ab5ebb88025cb0309457f86f59af9e4ae87186df0d096b53802445c",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "21e5c69ad89ff162b5de9fee105994d98d63fa3fe7a5673ba8fe8e366a75d7da",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "cfaf4f60b3290259d7cb24e27644fe868da003713f3f389602e6607ed7a9b1c6",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "61d1912d86dffc312be80f1126bd65f1f6dd2e3ca6b4539eb029a209a77f408f",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "97bc6fd88a4a101f9132ae93bc684a0c195a4ee401eab1492c6248f6bf012375",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "00ec6732d15b24c301e967de238c4a75cf7b8b87d5b0e9924052d0bc97978193",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "eb7f907ec09c730f66cfaef2aee237c86e43eed68bcb794db7f81fcecb01c577",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "59a69685139ba76cc6e0c9a0a596ac5aff1041f3874949c5e89decb555e43cff",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "144a4e5780b800c0553949169f50be285eccbdb0298afd83ef2ae03fef77e2d2",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "66aeb47bf8638d6767f7b4ff684c2d794391c981590073025e98f98e1afed499",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "26748898fec8579096c776866e8e6f07754845b3d08f5ae98c3a59baa9e85c2e",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "6d805abd62920edbd9ed4b20be26d040d01529f3ce53fdab9ca4d0fa9b589f02",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "9cb3e4826879023518628e2d6b3cc936a1dc1c558e3e65c450263886dd060703",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "7009f30d921edd039a57942d50060fd7f856159384075a53e6405a5c03fd603f",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "97b02501eb45f487174d5a0ff89b6a95690d50e9eae242e2162118edd5f2705c",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "2b4276dde46aa2faf0dd86119999c76b81e6488cd6b0d0fcf9fb985769cd11c0",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "38d4cff03e87dc58bfd50ffe5a3fb25e6e6d4136a1282883285baf71d35967c5",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "5ecea63968444d55f7c3cf677cbec9525db9229953b34f06be0386a24b0fffd2",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "6ea9c8bf2ae4d47a0dbc2a1f9ac1e36c639b2ac9225c4d271c2f63a2faf24831",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "a3d603c46b55d51493799241b8a456169d36301cc926ff72c75f5480e7eb25bf",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "ad98c359284db8c984e88949b2c3394e4a35158880767b772491489788a6c5a0",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "5c117cca0b75ed634fe3085142a931df2e2214e26f2bbcb34c592b767f13c1e8",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "773c18e2bcc18598df8f8b2be930eb26b22608edf368e42e9ca3484828ec4122",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "c385a1392fbde5ad2e29d1bda89b5438ba11d99f03108d4465cb3af50a26fdff",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "425a03d68f43164e0214b1c333cd58e777d4186f412b530467c18ef0d2b37a80",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "26cfaec143443411bc7d5363f274f885ced430b8f4bee25a81f7827248848d7b",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "f9a591e5fe0be6728cc84e70325aacafffcf203b051ddef37d65651b43c05056",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "4594572155e436ee22bff36cd0c41990b644797530e1d5ac0ae44d7bd9a9b6d7",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "de8b4c367880fe92a0a740b706f08a46d1cf9e3981d55c2701e82423e81ef0ef",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "4a056a71ffda9ff3f2adec60c0189c906f7e46976a0c6650fa196674ff8c4dff",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "3a3fd6f5ca85ceeb293f2a010125f9455404958122b6dd0ba0b34f7dab74feb5",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "42b58bc8da11e9181ecf4ac498d41c74930c73c8ebef091474d0f8cf971b50ac",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "0458fbed073aeebfe0ce055b9bcc450627f5fc9aaec7634a6b9c44ff10431d8e",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "fc30f37a98ab20a8db1309801095f4f7234f4840f0a9281dc63251e9dd75fad1",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "951e9556f7441d86eef0b6160779e2f97c0d43da6110951b4fff87d493143ac7",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "d2746ea0021f79365dcff95fc255ac529b6ef7f51981fc8e9cff62e65a2087a6",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "9fe94c8f6b36cb41acd30d89567761a52246932dece21e1ce104baa2e84b07ac",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "d0d58671b91fad1b24b87186a81bac181d07a6d61c58dc067f79b38c8c1e2b88",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "c5aa3449a1a90686b5bb9e9c389b88e9a6fd8ed410289fff3c8d9359e4d510aa",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "e96bd939a55117abe6ccbc02839f2f4d9ce3893368fea528ca91c59ebddf496f",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "81f6bf27eedb1ed92466abfcee33795a6b2304691ae01f42e60f8c76894fade7",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "4b05275d33bc4acbc41634e6c38d95da3771c23182ca12c00139b6069c66a15c",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "26a0c2d883e1ed55ba00810d957dedcde5d16d637e33063686e2bc3f58a5c64a",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "b2c697a96a297c1a207d9bc9b3fd4cb92b95bac1c0717c94a364f3590c25fda6",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "bfb900f7de2066a4be644c269285fda8ccca40b065476a27b082173014d00467",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "0817f58fceb66836eb354fb16f1b20093f9bc3d475995b2d20f3621a2e5dd3f0",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "7e2b8299e85423435784cc6244e2d559ea862d226e7b0ec871c6a53f88e5139f",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "8eca47167dadd486582ecd4e41f7fba6ae66cc4a4c5202f1f7acf34129a0dadf",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "5f6aa85935176c45e47cfed4d6af31c2c53fa4a24ccb92ea32ff9c9a915a1908",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "fea899959c19f5d41eb556cfb29e0d6722c470463b27036b23e672aaa4da70f5",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "062c0cf9641ca90ff3ad8edc61c2e06299fe6585fb9a4014a8acdf7f11810d51",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "745db40747b91a21d6b87a140dbf26c995545994c87ad2297a4033d6192113a8",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "5db46b90fabb0e78d84d231fe090aff47e09d2cacb4a38b6b06bc5a2f9c73cb0",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "0eb30dfdea5fb0bc646ece93f7e368e39f63a846c28728eaa3714ae67ebf4a4b",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "533fe789a14f6087b274308c257964da60cce305b42f55f5e9483315e5ac19b6",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "2a1fc3ab59c5d74c4e7bec3880b98c1e11d48276173b314eaccd9b34c4aceaa7",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "112c5c25a4e75f0bd1bcdda0630afddd634d96f74263c0d0c98a14505577c7ba",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "0751c7fbc7fd80df189156cd8b277d1b537e6b711b316db0b6aa35b9c674a6fa",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "d8f7ba1d7a0eb2191ac0b656a4ff4624cc7c615c9f0209760a664aa4f2993ba4",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "62d30429d222ea6faafe408fe136c3a1e9df0cde180b0dba5fa4ebd77c0807ee",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "ea2276e4ce7ceab26d8a340f53554db2ace013d85903d7b5e781ace26c3eee41",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "dbe63b3e06a26a1a3e74b407474745d3a9148775f2bf96588863099d64d1e54c",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "fd41f8da8f9ee3606b5460e3810572ada02d29726e2f0180fcdac1be260a6da7",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "3bbde357e5d8d70cd29460e158586f4ff7c57e12d4ae997ad5368d6431a5e892",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "d2000199162496a4e85e7ddc9ea0ab05286737b6acb6b8390100fac220e8cb77",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "aaebbcd44c28c0e088dda4bd1c94aabc126318a96938dc849c0fc21d5ce0afc7",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "faf9a217d8d237b02ab6d95508d8736ae431bbeb38d98885eb5b8fb6dbe48cec",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "d5633ef9a26db101247322db090e95c7b0eef123503cc53099850d35fcb4fe8b",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "838c1878bc1ec773ca2b72ecc544d0f5b8913711fa8cb2b7f14cef8259743669",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "74b564cd3da8f83d5e472a5b0cc53bf7e276b25576097cb89e6f67caf95b12dc",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "68333289edbcca548c7f8370f9c1dcb71694136a11f418e38691f05bd2c299ce",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "ae3a1d96127f7c759d2b6c466d2f3e96657c830356bde016f89c44075add8da6",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "cce820aba9ba9d1984461c67d0d543d8eba7ea25c6a1be7a47c31cc18907a631",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "6a1e5cea457be906011d1736eea8d0ae82e883cff9fe4a91f3218c5c9cd84e13",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "51b6335f5a8e177306647558a3eefa1f6abe259b283c6462223be3d7d0f33300",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "4674cb63fb87b9ccd97b95106de31583132dac5ab544c414e5902d10db34699a",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "3ffe7d5bb7b38b8133e65f41e7b17d8799479418fdae3e352c891a64d14f65ac",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "474dcc8f8d16e3b9c43fddd9b1930fbed50d26a66dc75cf17a2888ffc654c0bb",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "cbf0390e81de86db9f6979227deaa5cf4f6bc4df00d1b034716a5adf1044e079",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "136bde95f389f316a60b40bbf0f53c2a30474d8941b3554dba2d246f14dd254b",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "be31399eb87d9773cdf0d109ff2af942a6a22c82efdaa3c389102c287c419e8b",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "079a563e723579e9f4b37c0a26e88437fae2716e976273425615c939b821cdff",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "667d3df98d1432158d20452fd0c175b0fffade57db9c7cecdd3922567f23c7e8",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "d16321086fd36596aaf00d9590c2de1812f8204c6f870ac8f0d8fecde70570b5",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "46a2c32879b8082fb031f575977bbdec9f3041167bf8acc9abba34b498e49443",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "2d09c2f8b415e6973baa6b314f9023612c47f76fda13d542c711b08eba4b6f6e",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "f5593ebceb9e3ea81f78c9ea001d8b22e86210a03ba1de9c6d66eaddc667b797",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "2c285a3af1b420020956dc9d315bd73861aa943df786143d0aab6580053d0b77",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "fb732d4dfd6387d8efd99f0757c3a68a1664e9b16a0461e4572bb2cf1b1f978b",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "7804e6d8dd4e50c1ee6b4466eca30dedcff424c04113c23a0083afb5a588b9b8",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "a79f09851a1353dc376b19bedf96bb7191402ec01890308119f6ab8cb33b9726",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "d5897465eb4696de9518faa21172441ee95ce80a0b1d7c8b90dbcf70d3db7e67",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "e8d2d8e7bf7eb324f9e5c9f323384d4066f508f7182a0506dbf7336cf70e1f4e",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "b6bdd50d0e977f5fb48d01ec58387c4ea4ca4061180896d92667a121d8c359ce",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "aaa93af07b03d69f6d7f49380ef42d13b41a2c6169b248c2e07552bb94c08faf",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "b62d96002ec0c8710d0e99aa3175434e1df0f22f5a09291b19e5ec05e8a877e6",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "d93c145cb04df5d21c2d0f66194700d2f1d6f8e04abe7ef723651e915bc6bc4e",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "6e085274a812504f697c8130336ad47a6b249eab56a547a2a34f9b2c294e9a3a",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "5834c68c6e0f55055514834fe00e65ebe8d0ed8f8e127ab071ce2ced36eb0967",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "433839016857a5a785134d2d5e760fdcc9819d241a3ffb5cb76985e666a34a8c",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "fe75ad82fe44452125aba2301647fb1197bd611ecc5857e225d022f9d95469eb",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "23a55ad8067538d0d1cb0b55b1aff47b6a5979b9ef2e46c6e9b0160377a46616",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "66cd137411911fea6db4b352a98279470e386eb3b1cac5db3de1efad678a9015",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "f8d95db2d66d268765d447b554dffdb3f1cd2a22e8da7f6f57dfdcad6a19a1e8",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "bdceae6ab40835cb0a1fa08e0367ec3fc43cfcecb1840d3a90ea75bcfe605ddf",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "e38a172f8912eebc79671e07b81687a304a9d366a47933fde9f97ad79f8ac08a",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "42f60dc9ecd3ef8ae7ef6c883f648243cdc645ea7f539d16eb2ce043f9ca3d27",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "6082ee8fee6b3736c8bcd0a1d9dfff7125a406039020316f9512d88ab21b4206",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "f6ba66f3f6c4409e878f48161529c585b3c0e687c8917dd8f6c6464fc5cd4f8e",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "0366e97d9c966d748ad91b782e8ce843ebb692d93a1d211ef5b84cccbe8f53a8",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "aa74551dc1eea3e902560acc832ac63a78ae05fe5f3b04c6813fe2ec57511456",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "b86777df5a816b1b1a2b12a017a8ef8f14ea2fb1a533d1e18e956ced70ac9d28",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "ce9e6f87c3a69558b58fe849abe2ed9a105cd5195809851d99397395a4442bc0",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "8c85110d99da8adc0da3cc811023d6f7e0f6ee28564d10a26b27c190f34e200c",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "ab95baa99c5dc2a49bd1d1c00d90955088463e675f4eb869008a357b5b02d6fe",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "7980ab0dad3e7e1eb6e9873231d45f3860864c84c48608267864e4774c4bf39d",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "845b523a3ca13e3fbd496a579aaf51875d60e15ee56f4be60a358dfd87699afe",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "53c3302d92c8cf76bc6557a1f762fc2f7ee6156af5bc7a2ef22c591d53cbc4cf",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "32c98d5e98a05f108f4e405c853db481f83c5a1a9cd6c53870501d8248f9afad",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "d7ce891d302b15d9f28cae31eddc6a88be37c290c512fb1247735e7f923b1104",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "147ca4dfd1729f9b34c3c074589cdf518c0b80fd1efa29ef75bdb39507b23153",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "ea8f093cdf681d9487034f80323bdd4168c727eb9d5c985f250e3c4488d64639",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "09b8b299789b2ac464776895e96f64cca0ffa6449a178d775adea0401d9b49fb",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "15abcaa279117eb516a90c09c4b60c53fb29c1242c7f67bb1003e0cce06f7d19",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "df506f8ab6bcab64cd24be5e65bcf12b959d1d00cd9127d73afc59ba4062867c",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "ecb5aeb3771bea2795b5f4c0f79036c061c3a2bfe0b1d5a83d9183a43e38cd9c",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "8a5ff6c3f290223a222cd540136d2bf4880d1c13d94f62503d7029ff74533b41",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "eabb41775a846406c423449b13eca4e43214c0bab2ab00b4e22b01e39d510023",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "015ed10c7e81ea426199e7d9b92978416f420466088487b25577bea09b469a54",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "d5da26af31358a4883edb6112879018b14c7c1fbcc457aa36961b03ee17bedea",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "4e93fb2d2c59bbc1f1a5211b36c447efe4d0af568d682ef1e5eb5f84ca6ccc2e",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "3d13fe973e92e708ad3dbbf1b2385bb799f8e70c8da71a1ac72fcb5521c8a5e9",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "16f3f66b5182e57c554d0e374e29fdc0a899c1321b3f94fa997d19abf9faf931",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "a8d6a3a562196c0a6e193e303ff1b2c6932a6a16a631ce14f2110dcb1667f622",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "556079af6cfdcb562e1a7408e73ac2203ed8fad6cc768d498238b137ac06247d",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "17096b785db48bd6b340542cf9752db28508b637e9721022e9993aa15372367a",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "e177a7a7a17e5d282c4379cc20c3b21f3bcd22abdb88557695eb83c4d51b186b",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "49f41e28b536a2a1722017672ef24a0720b2d0a37f66f1a272c7d8595b3b3a39",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "dfa5ecdeea6492f56d1a1b7905fe3fc24a2ab44a5420ca23fc9133da991015e7",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "ca359d684454111a2118c60f361166ad3595b74fd7b9c8eea5c7de05d9ba13a3",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "c61abe93e13d89322bef06b0d2063ffcca5e0c547722fcea7a57c6f435cd58a4",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "2ab01a0368f65b3b891e25416ae785dca54808f70d8f6204b99589ed4f7f1d2f",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "43b5886036965659dae63950130d2aa6c4728c336fe1ffd09b0832fbeb027b15",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "0e93b1f86d8778076f04fe97295548d6d10b31d29daaa3980568929da4c94b5f",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "2984438b44f77f375cf80075b7c26e84d593aa56490e3703ebe094e34626e183",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "b594999319e34d99ba2048dbdeb0fb2660044d4fd2e26456275f4d6a43f61f65",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "7bae4a3f50a844fcbdc504d717f5f13dd7178ca99f131b230305db6b55e1dbc3",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "214c393513df9438d6956ad5b738efcb1538c301c81d60e0adb9f2113c780265",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "58977c552caa6b5993e10d48a8d97bb7e636516b1526cfbcfd045c144476597d",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "2288fdc58bb7180154bf4e3e20b01f2f0a279a5ff253679baa8d326bbc3c0020",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "dbf382db41bc652896fe67296a9bd1880836cd2ddc16a3811bfd7bb9c2fec1ea",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "f49e8feb6d7473579a5ceb5872598bbc1be3723da653993472720629c72fa0ba",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "14c727434cfe6a078b51a88d005033ad01a76bec36292d7b47369d82e48e1cb0",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "d909cc4d55736652a82d5f76be92980a1cfb14b6beb65137171deb4c7cbb608c",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "0a37887a4d2c6a6ed5e5ddd3619d04165079eda5477340fa56e635510333e8a3",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "53adb1224146150628fd59d35c5a3f3f69629a649052c34ef6ee5186cc911c81",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "f645ed7ab08689c3fc4afec989000af708f562adb32819d1079762c027f225e7",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "b03aa91aef645f9856216a2223a47001a84954caf37b7ffb1d63d1327b4231fe",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "2d982c7dba93b9bcabb045898b00e62dd09919b2b35ee63c42880b22494a7ad8",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "cfcb85724714ed6320c09fddcffed5ac71069125cd5b9957406c920dfd4c16ec",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "7142177cf3158dad7b42726ea15c78512dbad6370117509c8eadefcedae72534",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "9322da0c85b107feebedf3005249cb863f4e03736c4b8ab3edcbfcc29981d13b",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "54a730e06094b37f96436ccc8e736bb65b74d256439bf1663344e3fab16d2246",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "e502cb97a6fa3ea9268d2c2b2bcad7a1c8cfaade589f501a30cbf542e098f4a8",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "19586f37701483574eb9615faa417281f9b417225c0595c2a242031f6c86e267",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "4e8b929462a5c46c53151f6e7519a06e31ea6754a735c942d9ac5d8b535a46fd",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "d2e6d9f45141863efb1ce3846875ca23fca7b731496c45006e4931837c3ff3e4",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "d06ad53b5004aefc1adffde50247af521e0e10d334392fc0cdfa8fa965d7243f",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "8f1eceb25b3591bc9222483317ca1bd13d4be70aff908d9d26fa3c18b7f7ce2b",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "b56026fce41fba17e89346ef0ad03b2f5fcd04c1120176e4eac77a7d72dcd8e9",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "d3aa309128e84a97c160e41f2cd9408e19e43e3a6373b72b37fcec94fd3f2c7d",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "0513d6c3cb14947d45f1471345eab07dfa5b9237124f639c9e0dc056df236584",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "a4a1f24de17edfa0b47c4e939390b38f229d9e42ded4f53639e9df475fe453be",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "366c1b30d171d42458d361430d16dac31854cff2db854abb59ff4a5df3e349c3",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "ab2dc76864097e3d2dc5a0553376474ebf026fc5f25e10adbb5e81b1247b03d7",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "8e68a48d38419d478b823e2f04c8418fc348fb6d4d370b15743cde4d48392506",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "a93626ded4c88421ac4e27150b0e11a514683a25f54d6639347a66652e118c9a",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "5804ffbc65b78751fd510218b90827a7ca677ca34a45b4709a00783b658cbaba",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "5bc28e22162587d3940c3f73668bfd191a65d7381ad7c242901ed7a395e04198",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "31dad812abb967c21c2ba11f6c1ade44ed75a7441c2df7e6fa78f6af0f112eba",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "ff9e2545e5c4e207179f01a1ec905d0fbbfa1d162501679a01cc75591fd5bfe1",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "1c247df73ee92991ea75d19419b5625e37a9da3bef05f015d7097a35c66a1fc0",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "c29921af69f3db7348ed27915972a51cddde446ac029fface772271c085eacbb",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "e4a58769bce747f03a3606f55e84690c2003f754ab4354a27ac6aba30eef01bb",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "78bd82da60d7021316b170afa284acb4a0400d52eb34ed089e38861bd3c53d10",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "1ce699f32fea004f388368e19e9cadb41dd52ecc72c9d6b353c9d9e01abe2cf4",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "597fc3b46d5654c4f8361c36ded591d5f12826dd1df9e7643e8bcf1f0803cbd9",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "b56a743deaeb1ec9be37a9a8e5599e1cccd267267d4fc41c01e0c5371892a70b",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "d8fbed05640e6df144bbc9bc1ce7586d6e020119968f9491c157ab670c97f003",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "ac782435f9434aeda13f2d65fe840eb282bdbe2405549b166b2a89bcdea2396e",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "98ef9c3f5f15c18abcd6fa9f12e93e1bbd608225501151603cce97642dbc961d",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "c80a56a10f1a8e01c4b7f08df6e9260ae076c910402dae8173fa6c7dcacc51fe",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "809cabbaee3df008c5c31e842047b487417eca144d2f4a4b0e04940827a3d062",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "30d726e77d959648e8f6fe104bacdc29ee4e1cfc6e8ea7c952141b3a3482d007",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "7dfcc5f32fd73d26d849530d15ab3459a60d296c13dee963fb2cbc5b78052d0f",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "930c6bd33500b62b1338a60a9a5bc3a2d57267ac49ba66d75917cb1fda319238",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "3612c99dd83ed479d269970994dac77984c951cd7b9a52a291051517cc09e6de",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "32b344c3765dc7c383516f3326c108ca84c33df44ece8ac789fce47d47ba8810",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "88a44d532be7c83da9c55d744c23721edd5c7401e7319207d957cc0afa36a341",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "ae8a68cf0adad59ea1b6e86f51588d809fca647b917bb0f92c155b6023b09e4d",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "606d6d2855288bbd8da341607890f38aae30cd54be6a13246b901db07dc0b041",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "6ae92eaaaef30fae975de604d3af31d5b00eca7f02d89fab589152df926685fd",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "cef2c14946e957c2c4a5d99837c6a9f730390158c08ce313fc7248baeee0cde3",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "f1363ec1f8aafcad89a89c7cfaf805dc709107294c32ffcca1cede004ccfbba0",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "9f074f00a892947b04f99252866ce01cbdad4899eab96d1ea2d090419b9d0383",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "94f793b66dcb1a755800090817a189e5ffa519d524f0223e6b918f9e20df92e8",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "b96130e763eeb5392b6501ffabcec57fe110780ffcaeeef061e7cdeca4d65960",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "4a0be6234a190079827c8909b3ec1949d44434ada4d898450b5fb330cc64551d",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "28bdaf936bc3792e20a906ce59550aa56fbe62ec1a575421202cca5bb347941c",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "52d0e4a995a1328cafd0c0a9441b729136bbdeea7896789c253aece60e4ec2c7",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "68337576317652e5fccf4c687020c06c00728c1bb0dc60a10fd8d78cc15091bc",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "06ef9e335bec6e052d9df473a06a08552d34dca231a5a31a04fe0e05c194e933",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "8fd2aa139269a583dc70ef2f34fbbf57bbfa7490136ddead980ee23a408029f5",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "89dba06f08c33ff2006e6ca98e01284846927a6be23a9aa7be6856a8d7242939",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "8e551cda9ceaeac0ed69fa73b16de6ec53b41a07309b2af1922425132e90ca8f",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "706b3fd6ff575b15077a97851686c5a8d4f563f096050a397c5fb15cd9ce0b78",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "2ca97aeaca4ac5be7b3815c3468c86f512e3c8504ab6ad0599e418d2feef1b5c",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "85a60f3f0491c3c835a7679464349048513bb8e4d61fe865a9b1833229ebc9e9",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "7194c45f80a22684e43fea3a9aeaeb69845361d8039d6f013f50230c78792f21",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "4f81fb228ca91355a6210787a2db9fb9ebeb7b45fda1b577af6b2da1cc40702a",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "57b1def459ec822d42eba31a62d69cc6d0329a88d45331ec987c6ec60d46ed82",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "2ae910ab09cdf74168412a94bdb35966a1f62fe396e478cd20a734c98a360782",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "2b5177892e7b27a3597ecb4769c9e048dff0610ac1a5312202f2ba595f2b09d2",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "dffbd270006e6d1eb7e54019953f568f745fbad1f286e6b6f9700c713dd9d71d",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "3209d42dcb86b35a13c127fc39981a644b61a1fb0e59524038d0f3bd7fe25768",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "a165816fd744d55bb0b17e7851eb07c3e372081f0de12b37ab18b5241bb8777a",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "e8da9d04f0bb044998c238d339d6fce0afbd773827eb0921fa5b11b804740242",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "415295fdda8d3f2630dcba09d2c6ac1ad737e9b5c8e91880514029953eb629dd",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "57a75ba33c112c59a783a2e7595294b86c6ab4a5fcc65a537ff9356a3b23abc2",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "f846b7cc91e29c0ddd12b8d817abc81f4e3ba1c37dceaaacc82a896031a771a1",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "070062b01eed7a9d7c7763eb25d98c6581182edcd39bfe6d84aa64ffb9b980be",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "128cd80e8980123fd5174b2ab5c1295add61e51a5659a1e8d4fcfb82884edbda",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "fa6df0af2818d39dcccafa76a485baf0944292ecaf7acc623acdc5832149f796",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "bf2f4914e8b356a9907f7b347f984d4cb8efd2fd359d443793c52d55d9f2abb6",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "f8d6e2784bb518d523898f614b8c0ae55341968c982d4617f08867b5d11cf354",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "b47f1dc9eccc82752263ec4d70ff7464f0412469102bd22537a5005ec298aa68",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "7b75a17e8586b0d83e4d3732ffe41a10812873a89eafec329b879988537fa83e",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "768989d7bcc666427495223f2e78c1e5b541e16b6542e64abb92d54f0f37b7cb",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "a171b8cb18c8c2e92ed5c39ca1ed713b803722352829b948e3c84cd463b2b617",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "a2c7210b0f2be82aed4cdfc51ca084b3ac017a2d2e9baf5b519732fafb6feff7",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "f10d4445bd7db9939402b239776287476b42d1ac4bc8e6b80a7ab7013b9c9981",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "4df8dc56ba9be273bee231caa239d04fb28293b92c109c32f4fc027f65e5aca8",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "7458750d4c17b31f538c9faa569a75ece0bad5ff89be08b54aa7ebf485ec1dcb",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "2dc42bdd932c6f6c33203ef3adf9a3c3f9c92e55119967c4b8eca75048527ec8",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "a8a30971ee06a579685d25fa7135d8226f1faf0fa6571a3dadeceacb9291f2ed",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "e2aafc728d8f60a248d640eb447028edcf9b80d9d99f50c465b06011d885bd6a",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "3015667b8858f86fee317668c4572b9bddc3b14df96d23383507d618edcdc577",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "f46d9c50782b5c3d0d0a1114188c704288224e91dec2d078fb50180621d58c1d",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "edf1398a29effd40893b4e850271ea22bdeb0d3d6a901eb08ad2516f13b8bd05",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "73421be7cc17957418f22a7be68c4e6b8d818f1597585bb3020aeb6ef7006f9c",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "d80c3265f6b0717428e089d897e503d19debb1f5348dc5d286f3a850e93d5061",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "5bb81a9aa2387411321b9f1f5c021b6303428634bee563c9a8f1cd388b1be443",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "30522d15d4f6aadebfabfa0d23ad5adf467335a6ef7bc8508db50e8dc388b3fa",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "9c160cf18020aec7bd1deac84fb3bda1a03c590ceae2bc5c150ab037dd226886",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "4b966b4f48c930b166a0058b0d8aadcf0b111135b99a6297aaaad1528c42ed97",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "113fd627693c4050016f9da31114c196ed3e55d1a94ea023bd6bc829dca4c550",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "bd90ad1350bb360f83082e98021e7cfbeb6bbc75565b76c70bd2ebf9ba936a23",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "c2ef4463c7d697365ca578709c801077009dd3caef689c5dba0a8521969a95eb",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "15b34f0a2bc3d983723e394aa54333b2f4cd41e391a5e68aa5bb782351e359fe",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "ac5b9f2d5cbd50ec86d5856917c5eb5ab6fc7152fb182598c9b9fc2bf458b8d4",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "1d44832eaee499d791379ab65c32f9b72ed807613b72d7efe0e4dabec955d21b",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "db17327ad596824321aefdfa22cc1d45d9fe3192fc8fefe4ad17dafe93c739c3",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "0819b4f64eb1b87f884d52895505d8e913a3f84e1eb164bdf96ea2b50354e7d6",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "60e6c7ed01a617453bb91682fe4958e698292ec3ab2e8473a3123c3b6daf0676",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "8d426454bc1da7cdd3408c926c58228bce4dcc30c8a962bb0141cc13b1d81018",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "f04c3edcb4544775f079ade30ad601d9e50aef13a19fcc0325bb1d33fadc3f58",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "025c17c748488159fcafcd87b95b08a029ecdbd25000f598804bdd7788b1b6f6",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "4c22848e2508e85af2c9f8e895d5ed64d92e1b02711f45c751e709086e4da919",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "7b928049f4bb3f15bca40fc7d57ff661cdb6c24a7b235fc8fa083f4dc863ede3",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "2693d3e219283d2bb133924f0bdfd8aed628ff62b3857a6de107282a4c145dd9",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "d1a2690ce0378c3d377e7bd07614bb3c7e2bec52dd7f660198475a550dc13cc6",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "46b171ad2ab9b534979ea5086fbe669948fb8e31eeb2b7ad3d45d6a9ded78748",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "2e73ce1cc735fa0c03af07b0dd40b90bfc7bd5cc11d6271a9a965f0403cf69d9",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "753b3efbdc07a3d9993a8fff8295f7b4f95663e308ea85efc7a0c1ffd2ef116f",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "b08d54872af7b7df6fa9533cfe07b2e7aa2f50f5a84f172d292d53c75a54f8cc",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "e9e0b502312db594634de99abc4a0becaa67c69faf5531f66d7495e0bd5f5e0b",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "427bcc746c725d19ef8e041226bf8a60e20acc421e08cc723b0239b599a97482",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "bd012f6cfbb374e40d238c255eacd604243d1bf5bb065e216bd72bbb57aa2182",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "29ea832df7ac71578ed701393fb6e3e158cc643dfd1d3cc80b41a4c289e86524",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "df7600c69bc9611d77639d13248b087203b232e2acba76b3b4cdaa4cbc25d0e4",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "8be849acfdb4ade6d987865b17febdda1b9a6e320e87c746deec0e555121567b",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "cdc0b51f289385c35e0befb4db66c36821431bc4275369d51b2e2d3f3652049d",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "c79752b70dcb13137ee7bf01e6add89298c15e0d773d4c6faf56c1caa5d997bb",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "7e44cb4862e072b762134c46b95bc3e86124439931ae85159e845d0ca2166bb0",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "eb76bb4ca060b378e6bab61d7dd24e2cd7ca61a5c448e1bb327c63baa96ea6c3",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "9376146c27f8e0cace730fbf789648da353877c78e990e173391befa191e70ed",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "c7f6096a62192ee567f7de6cba63e1a19e32e6cf51e11725126446ae6ffa3d31",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "e8682dbf2be4ee767cc14576f3e461a8b8c2b1e59a7f787e89d22d1cb6876377",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "f9791fdca540b14eb2d745e95ce1904716f1f81f7b8955bccc96e4a0501fba00",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "2673620ee9cb5e62777ceeea4e84f0c53a2bea44d74f103ece49bfb7efe95aec",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "525f82081df6786aee16931dbb571de908e7235f3d0e55a774e71eb855cd4ae3",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "87fed3456418e122f03bde7afa0c512c55bfcd2ba6d6305385dd6c5e3c71ff6d",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "2ea4160e3867a56867f27637c7ecc3ab01a1d7534f892493582af82b24bff97f",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "dc9875d80504e711826648ca27882ffc145a136db37031e6f250b31fd357b8f0",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "e73198b060fba5d556b7b411073ac48383a539227522afbe5a3a9156edea2fdf",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "bd40604dce7f9329f800afebad8601fe708f32012c464fcab62c68cbf2fd39d7",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "b95561e98ee78519d7c2e98f86da7a9342b936b0e52cbc42894a517c38682f4b",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "91a9ebdd32734499d34fc812087ff1f59a70d2c6185981f229fcc2679a33b8e8",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "c0ff7336db1bb822f6e38dd91d58ba77f107309f453e8d5ed85d7bccaaa7863e",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "c42858690ca5e76a83277a2234057c126033a927b1419228f98011caf9332e22",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "b8b9141324d97526669e3b9c2914d5707c5fc2d1f4842d76f74c902b7a03549e",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "80b6ab00ab7bd0bfdebe92d387ca33446a7102ec4f5ae67a7aa392311f0647ab",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "3c9e08a6171b77f9409f6fbeee92cc7cec90295165305f4749c15b66984094b7",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "d5f52fef25eebd772b28fe3acd0ef103cb3d338c73fd23dae81235aa3d3216f3",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "a1d51984613f1b5faef052fb04f81743b8209fce70f8d1a1d73f2fb9be6d6912",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "e313dde308495525f7e18a1e3a62d49407e562d389661bff3def7aa6718547b4",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "b6fc849fefcf2d80c9f877a4b609da4e913a1b960adf9b8ee78dcebf2ccb1a18",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "ad93293f86fb21b8941415ebc7785f728d4fe8389f855f185dbc77dba548fe53",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "d582707b4fbb409fd9e62253e66631a521a79e57ec8a79ba205e6364877d3c0f",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "a1d1ddfa2b0d806b2778b931ef3221e5a16cf993005eed4b74b2561d7020864f",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "c71b08b656ec67568f366241678b35569c65fe7df5b1b1d450bee7e9b06f8ff5",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "4866caa6f66072a9029b8081a0b0614ddff5995126486d8b96414a8d2a22285c",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "6d37cb963c5288b5225af7fa9d072c429920718fa87d8352f72b5b80978aaf0b",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "e429692aefa26a42888b1e63959688bc0c75ef34fd3eb7c246f32b8872aeeb31",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "d97cf67eb2772d68fbc0ba44ac3c6d6f4d5ae620d8980084690acd049be0cc28",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "79182cb8300ae458110b9014011f3bce7a1f5983223128b1635f429ca4962b81",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "9bb8a03e0015254999c1e96830242fa3764856fd14958d3b097149f4491b1fa6",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "21655de6cf9d8df920b2dd8aaa5d6b4f88630c5c6f4df66947f4a2c4e59f7c79",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "7db915f07d1dec500718675edd2881ccd140132b7954eecb1bbc4313597ab4b0",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "7981d90e43327e29911a56c198f090dd816c5f2a15335c294c3f010f02b8f01b",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "5819a2787a272ae1b20f1cc8c81d98ddf09b163ad24cd1318719113a61205970",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "7f45ae699788ef0d76c10eaf0ed2fd3843ae12514355842c7ec6d5403925ace1",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "c565deb632ba928f5ca6e1ad8fea0410a7695b6fabbd1132618f0d329cda0f50",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "111346e95c27db969bebdf620d68008685571fb01e07c4f9c722f600f5fdda3e",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "a482905e0aed325e2f3cfd61de96fbf7c11e068e79c65f1974948d8962b85c2e",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "21ba214033e94c069266f184870db915957890ba80ee669cdca6f2c2346644d7",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "8dd2b29d482fb6746cfdcff57c1441d105f41ee91daaf346e1d11fd47650c783",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "4b3035f436869dc5da9815cb51a371a972fe31e2515c5dc594b3d74ddb701bee",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "13e18664181a3e017dcd8d6da49baf9d039092717810b0c7ca28fa50e3c8734f",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "8d2a9a4b17120c5c34ff1016a92b33b90e72f9430d8f58f16504beac3f5eba81",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "580307f6deb46c1f0045f9e74281cc285d2e7e39c96b378e31c251ba09521c9b",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "5b800f6a5c739360992423332074038edd736bc74b5565373448162289e933af",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "b78a24b52dea49fa0b8651db08e733debc94c4289700d1ebc89601972daabcbe",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "e1ce38cfb5b10848859e3c4dfbe9c42521967c4e91042e1f3c40c59c17432dda",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "a6835ba7439febe71eb3106bb4d26584794dc0f4855cd4c2af3ac2c9f5b25377",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "85948b36914a06d93bd22ee8580794b8e8486fcd814c301ffbbdce2371dea86d",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "ec455fb31d11dc3782f7c7bc81bc1ffee91e360b66ee6a55ee8135c896a9b0cd",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "d8f1e5f8e2f59c9ace3deedff9f1d5fd9aea1fd6abea384dde6f9ca132b5fe79",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "7022da6a9c58eee4317bc9ed61af467e92ade72a59f9e3785ab7fe8badcb9a35",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "5692c147dca7d616c0c8f2e8c533515c94457b7232fa255970102aebebaf3fc2",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "e75a927cc44a75ceadbe2e95ed18cf0b9ba904e14d37c1e2bd24b17b9ae7843b",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "a97e0fea0ab50bceccc582e21eab30bdcfb4336df84ba51ac633fc1331ad6e90",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "2ae624226a9bcb73293716bf1054b244938ba91eb3926f4cbc81157e3252513e",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "59ec53aae4cb5a602660390aab1cbddfc30a8ade8827395ee2e3b30e579377a5",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "2dca9b2566990a7508270b19ff7a36bce81d829509214a4ac87564ae2bb386fd",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "cd0c217d59afc04deccdffbe56c75fcfd86170e18252990c7bd8c67725e07132",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "9737c5818211975651a00a350f9dd836dd13c4de1fd8e5557e208bcecf5a6cea",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "2d0a4e661dac6ba0e8b6b8e0672d62e5dafea155223d185d9a9298acf2d14665",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "d6828477d01712f5841330b674ce2f6a76ae298a926f6fdbe67ba7660ec3ace3",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "347290356c13d55723dd8a866f9f1c85c463b2d00463a72ad072a55600fc8616",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "642899659eb387a4ced2f61d5d6a2fd20d792b68a3ee4321c446e014da5bf9e1",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "8fc9c4434476710427388af587998bac7a347cc68329b7da3a57fb11b72d12f3",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "d64fd4bea85624039b7b0441454419bbedd4501b553395a71bcbf8656f8df237",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "016e62f3268bdd7223c7ae9b9dc48acad3703ab46d83551b40c448bf24988426",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "ec3602337c24adb3702d9057f07a2b8751783059303663316736830011d4b474",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "c8a2414eda9226c6c50af454a9ea1536c176e58432e755ba5fcb229f996d9133",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "d14328f8d67ccb14c3cff684f2232433977c7eea206444561fa2f379702408eb",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "6c924e274aa22a4e099fc378a61cadbc90c4fbea075cd1fd577e2a0e9afaf182",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "393d1b40f1541ea9861b860564c623e3a40e3d959147382af1f49eed8b84be43",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "7ffda1567fdd3b535ef60e5b8cbab6bb2d11f8fc998e88060c30e595bf61452f",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "164af37e5cde8d2d830b5a5f2aaa6be547b8004e4e98b33fd6977581f8be4d4a",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "3f677da0a7ddc370dcab43603da691955a7e0479dac12086696355af9741b5ac",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "e0ace1698102560c3b8090c2dd1f63ecd0a2b8601b4cb4b16df8642793fd036f",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "cfb10af0ff7ca1449f9cfe9ab9ea22717f78e7b7d1ca41a88095c584316a4515",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "e038fcb79d0716bd68af2421b6ed71d35f665b9c6f54948688366284e264c1bd",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "9052804c912704d31ad2107e130ceca04774b52abaf25735b0b3bdea8e1494b2",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "9c31f13604ee809712dd2c1e5c78283ec52cdad5b8713f5664c554b8d772e71b",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "ec898f83ef5fcc47bc332c113a77ba89c12f9ced0d27ec15a2a01f7f42067ea6",
- "signature": false
- },
- {
- "version": "bb703864a1bc9ca5ac3589ffd83785f6dc86f7f6c485c97d7ffd53438777cb9e",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "ee487439f7946c510aee90e571a926a0692c4996f563e134b39266ae2aaa6984",
- "signature": false
- },
- {
- "version": "7836a6339a3e3794cec8ded8e146264ce62c9e885139486cdd80a403a121c14b",
- "signature": false
- },
- {
- "version": "545bc2f1778a9388f3ee1ac904f043e18cc2d4cea56b062423a6967bc4ac1694",
- "signature": false
- },
- {
- "version": "e7441be68f390975c6155c805cea8f54cc1b7f3656b6b9440ecbbbd7753499e6",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "4be7765c14449bb7885f7a79e2b6b8b635138d56bb52d9f221f75263417d6428",
- "signature": false
- },
- {
- "version": "ef8c41cd5beef2fed32d6f7e1995d94e3330dd61f892c3042f266f6692df3a40",
- "signature": false
- },
- {
- "version": "36790362365485fc1916026197f00e5a705a7ef6d61f75ed8f4773d9c4003dfb",
- "signature": false
- },
- {
- "version": "a29dba1b765b22b9a8fa48ca9a4b8da3f2f89be3ea7641b1a416b485d3e8d2c3",
- "signature": false
- },
- {
- "version": "91b4ce96f6ad631a0a6920eb0ab928159ff01a439ae0e266ecdc9ea83126a195",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "88efe27bebddb62da9655a9f093e0c27719647e96747f16650489dc9671075d6",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "e348f128032c4807ad9359a1fff29fcbc5f551c81be807bfa86db5a45649b7ba",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "8ee6b07974528da39b7835556e12dd3198c0a13e4a9de321217cd2044f3de22e",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "5a38140438107de65fa204b3705b83529e225e1b01c68c73fb7fa4e88e5ddfa3",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "5f12132800d430adbe59b49c2c0354d85a71ada7d756e34250a655baa8ad4ae5",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "1996d1cd7d585a8359a35878f67abdd73cc35b1f675c9c6b147b202fdd8dfc3f",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "b16e757e4c35434065120a2b3bf13a518fc9e621dc9c2ed668f91635a9dc4e75",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "0b7ba8784d5de5560adeb015ca6d22d8a9d0920dcb16dd627b40010763f26d85",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "0377607549f9d921e43421851de61264443471afb1f0e86b847872e99bbe3ba0",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "4374cefdde5c6e9bad52b0436e887b8325b8f407c12035194ad02c28f1553a3a",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "9b70cad270593f676aecfe4d1611dc766464f0b8138527b0ebbf1ff773578d69",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "b4f85bfb7e831703ac81737361842f1ae4d924b42c5d1af2bff93cca521de4d1",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "5fea76008a2d537ca09d569ffae4e08b991b4a5ff90e9f4783bc983584454ede",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "21575cdeaca6a2c2a0beb8c2ecbc981d9deb95f879f82dc7d6e325fe8737b5ba",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "40ec58f0fadd0b3981b3d383e1c12fa0680115ae9f018387fc2cfc0bbcf23204",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "849b9e7283b7309a4556c9b90bb8e2dfc27751f157798065bbc513dcddb09a8c",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "10e109212c7be8a9f66e988e5d6c2a8900c9d14bf6beadf5fa70d32ada3425cf",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "2b821aeb31e690092f8eae671dd961a9d0fd598ff4883ce0a600c90e9e8fa716",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "26602933b613e4df3868a6c82e14fffa2393a08531cb333ed27b151923462981",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "f57a588d8f6b3ce5c8b494f2dc759a8885eaee18e80a4952df47de45403fedbe",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "34735727b3fe7a0ed0651a0f88d06449163d1989a2b2de7f047473adc7c1c383",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "a5b13abc88ab3186e713c445e59e2f6eee20c6167943517bc2f56985d89b8c55",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "3844b45a774bafe226260cf0772376dce72121ebb801d03902c70a7f11da832b",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "7ae65fe95b18205e241e6695cb2c61c0828d660aca7d08f68781b439a800e6b8",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "c2c8c166199d3a7bd093152437d1f6399d05e458a9ca9364456feecba920cda4",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "369b7270eeeb37982203b2cb18c7302947b89bf5818c1d3d2e95a0418f02b74e",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "94f95d223e2783b0aef4d15d7f6990a6a550fe17d099c501395f690337f7105e",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "039bd8d1e0d151570b66e75ee152877fb0e2f42eca43718632ac195e6884be34",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "a6ce2397f96bdc64269d1ccb6fc8020a7a62f63e068c14cba8be6c3689816228",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "5f200be1d6585239093ed367e7a77a5400c76c80a00309ba9b4fc2bb5add9899",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "48f68dbf86320c00b7ae14419a041dfccf487873862976a5798944e1c151de28",
- "signature": false
- },
- {
- "version": "3634c42485b97e10d69b2ecf2f76bfbb57321ff7c21526f8623b86347a50b799",
- "signature": false
- },
- {
- "version": "0bae91f96a7bd8fbfce9143b6d00f643e551f901d6ab647cae5f499774f27648",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "9c347d2e43cdc3735cf9442911551e693d255309aa5096e749ad81fe93c2e008",
- "signature": false
- },
- {
- "version": "b98729fdca40c90c35ad0a40ff347db5c0978fea906734165cc07f24038e8987",
- "signature": false
- },
- {
- "version": "1351c5de85e852c7d76e61da8c88e45ba4e9702db3e16ca7e8551cd695733038",
- "signature": false
- },
- {
- "version": "b843496b17a2bbd79c83809c73fd9c59fab53d3e361e04e52e2d489524eea764",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "0afc3a1b6895b25242bff25639bcb2f571b58412f0c21ebc6a34f399eea2edd4",
- "signature": false
- },
- {
- "version": "afdf385f625abefb53b45a084801a903f24e5b80463831cff09dbb69c9694489",
- "signature": false
- },
- {
- "version": "a15cb518fd8432bbdeadee6055612deb8526af56b3ad289e837d473402b48296",
- "signature": false
- },
- {
- "version": "564feac3adc5230143f3fb9215e32020d1b4e1d46dc95e32760d5f0523b68445",
- "signature": false
- },
- {
- "version": "0437c634a2ef34f5c6b2f24237767398741915e9d21e709b2997e5064144c08c",
- "signature": false
- },
- {
- "version": "8c79da4eeafe6f8f0a6497bf1c78cacd86089acb24c545652dff13b6954c0d30",
- "signature": false
- },
- {
- "version": "639f94d3cf05fdcd46b57e78a08db2f129a31cded4ce6ace02bffeb591462305",
- "signature": false
- },
- {
- "version": "f69cdafb276ea3ccae23019833be1d0b71a0a7fde91e0342827ff87d564ba570",
- "signature": false
- },
- {
- "version": "dec2aa83e12d469d263687dd4c0c057d92725ab34980fd2b9182bc49924a0bbb",
- "signature": false
- },
- {
- "version": "6a335613be60cfdec5f899cb7c98007efba56dad7ec407bf8632cec4984b42f8",
- "signature": false
- },
- {
- "version": "6e4e0571da6787901793b3424ad6d4f3af17e133756350418ff06fec1fd740ba",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "5831ebdf1208502dd05f90c32f42502bb26e15b6961c5c1597e5560a4519bb4a",
- "signature": false
- },
- {
- "version": "21436d726207cd9b449d396f4247693033aec12e815b8ea95747044c289b1de7",
- "signature": false
- },
- {
- "version": "83cb253963b268cd2ad25217d5a90781e0e7d69167dcc96d2dbf7325e3705852",
- "signature": false
- },
- {
- "version": "0d9c4f9c9d061ca4b7213a2d5794ed23e7f5d160c553a5784b345e9f4f6b4ab5",
- "signature": false
- },
- {
- "version": "993e2b77accc3bac7482b83971c86657d70449a77c5185d2fc990d68b67357e6",
- "signature": false
- },
- {
- "version": "8308eeaa9fa215a082a0bb86da50c2255cf7ddb692d75a2f20312a53a8dae407",
- "signature": false
- },
- {
- "version": "7522c40c341060ead4fa689c369170ca08393d50ab3a1b2d33cca27dbca663c0",
- "signature": false
- },
- {
- "version": "ad50f00600024bd924e8065bbee0af25930a4ee157a499af4976b435522c042c",
- "signature": false
- },
- {
- "version": "36dd4cc1fa7247c28a7e784ecffec7f33ba12c2f1ef9b41f729c251f2f47ecb9",
- "signature": false
- },
- {
- "version": "0ca61e8b1b9e77e107f454e9b56a3acbba83ba2536e20e92613deba351cf1c83",
- "signature": false
- },
- {
- "version": "a0acca63c9e39580f32a10945df231815f0fe554c074da96ba6564010ffbd2d8",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "4374e37ee7783045f80c7d1d1cd1ae197a5ffde2a8be945782ea542f2cdcbc77",
- "signature": false
- },
- {
- "version": "22fbb25b529af8fa3b79cabc63953d516e8b93c2add02a6068fe981d2fcfa674",
- "signature": false
- },
- {
- "version": "2a1c8db0a32be18629a78dc6a9e723cf679ca37401bff5f02acec286638544e4",
- "signature": false
- },
- {
- "version": "4fa856fcdd6a51c36fcd73936440cf6475c371045306cd8320840842cce70c40",
- "signature": false
- },
- {
- "version": "1c26aa5b672d2445ea7e3bab054e8b43646a873e0620ca06ff49d178064ea26f",
- "signature": false
- },
- {
- "version": "6c05d0fcee91437571513c404e62396ee798ff37a2d8bef2104accdc79deb9c0",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "334aaea0825b30a6800492d87b60c626f5c727afbe1a3fbb3a0b0f7fddeaff2e",
- "signature": false
- },
- {
- "version": "6aa2859da46f726a22040725e684ea964d7469a6b26f1c0a6634bb65e79062b0",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "3a36847ae7d8aefdafa8121db60110079cb2c0988f8eea4da52cc51647831455",
- "signature": false
- },
- {
- "version": "16227338bb3238de48a072ad6c3c3b70301aa07cb8e4eb2b1a820f5d92bedacd",
- "signature": false
- },
- {
- "version": "94fe1d4c683b5741eaa80e560cf5639ff256df953dfa0bf422707307c64c617a",
- "signature": false
- },
- {
- "version": "f7252c049fd5c34baf2eee07d0912e1020305e5dbbd4309d11ae48f91a1a06bf",
- "signature": false
- },
- {
- "version": "c964b9c32f581d676ce088c5db4a20c22954484d603e026533c56dfb9b974ca1",
- "signature": false
- },
- {
- "version": "757d67b084ca55224a690b135c7c0c71a49b768d81358b4115103bd38fdbf571",
- "signature": false
- },
- {
- "version": "3d49073fa197347bb741ea058e8ebc4e43876e717aa5c500ddd02a4168e7b184",
- "signature": false
- },
- {
- "version": "f28ef8758fd0f99ba378b95abbb780653f9996bbc6a04bd93a2185dfed43c3cb",
- "signature": false
- },
- {
- "version": "44c634567d7364c90736e4c51d4e0d3af8b86f6a173300c478cb44f3cef2f406",
- "signature": false
- },
- {
- "version": "3d35572d5483f724930f2c925d96a203c670bff536db24d328de9cd0ea43a292",
- "signature": false
- },
- {
- "version": "c2c2a861a338244d7dd700d0c52a78916b4bb75b98fc8ca5e7c501899fc03796",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "b6d03c9cfe2cf0ba4c673c209fcd7c46c815b2619fd2aad59fc4229aaef2ed43",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "adb467429462e3891de5bb4a82a4189b92005d61c7f9367c089baf03997c104e",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "13b77ab19ef7aadd86a1e54f2f08ea23a6d74e102909e3c00d31f231ed040f62",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "6c7176368037af28cb72f2392010fa1cef295d6d6744bca8cfb54985f3a18c3e",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "437e20f2ba32abaeb7985e0afe0002de1917bc74e949ba585e49feba65da6ca1",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "98cffbf06d6bab333473c70a893770dbe990783904002c4f1a960447b4b53dca",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "3af97acf03cc97de58a3a4bc91f8f616408099bc4233f6d0852e72a8ffb91ac9",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "808069bba06b6768b62fd22429b53362e7af342da4a236ed2d2e1c89fcca3b4a",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "b52476feb4a0cbcb25e5931b930fc73cb6643fb1a5060bf8a3dda0eeae5b4b68",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "f9501cc13ce624c72b61f12b3963e84fad210fbdf0ffbc4590e08460a3f04eba",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "0fa06ada475b910e2106c98c68b10483dc8811d0c14a8a8dd36efb2672485b29",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "33e5e9aba62c3193d10d1d33ae1fa75c46a1171cf76fef750777377d53b0303f",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "2b06b93fd01bcd49d1a6bd1f9b65ddcae6480b9a86e9061634d6f8e354c1468f",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "6a0cd27e5dc2cfbe039e731cf879d12b0e2dded06d1b1dedad07f7712de0d7f4",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "13f5c844119c43e51ce777c509267f14d6aaf31eafb2c2b002ca35584cd13b29",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "e60477649d6ad21542bd2dc7e3d9ff6853d0797ba9f689ba2f6653818999c264",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "4c829ab315f57c5442c6667b53769975acbf92003a66aef19bce151987675bd1",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "b2ade7657e2db96d18315694789eff2ddd3d8aea7215b181f8a0b303277cc579",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "9855e02d837744303391e5623a531734443a5f8e6e8755e018c41d63ad797db2",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "4d631b81fa2f07a0e63a9a143d6a82c25c5f051298651a9b69176ba28930756d",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "836a356aae992ff3c28a0212e3eabcb76dd4b0cc06bcb9607aeef560661b860d",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "41670ee38943d9cbb4924e436f56fc19ee94232bc96108562de1a734af20dc2c",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "c906fb15bd2aabc9ed1e3f44eb6a8661199d6c320b3aa196b826121552cb3695",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "22295e8103f1d6d8ea4b5d6211e43421fe4564e34d0dd8e09e520e452d89e659",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "58647d85d0f722a1ce9de50955df60a7489f0593bf1a7015521efe901c06d770",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "6b4e081d55ac24fc8a4631d5dd77fe249fa25900abd7d046abb87d90e3b45645",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "a10f0e1854f3316d7ee437b79649e5a6ae3ae14ffe6322b02d4987071a95362e",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "e208f73ef6a980104304b0d2ca5f6bf1b85de6009d2c7e404028b875020fa8f2",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "d163b6bc2372b4f07260747cbc6c0a6405ab3fbcea3852305e98ac43ca59f5bc",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "e6fa9ad47c5f71ff733744a029d1dc472c618de53804eae08ffc243b936f87ff",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "83e63d6ccf8ec004a3bb6d58b9bb0104f60e002754b1e968024b320730cc5311",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "24826ed94a78d5c64bd857570fdbd96229ad41b5cb654c08d75a9845e3ab7dde",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "8b479a130ccb62e98f11f136d3ac80f2984fdc07616516d29881f3061f2dd472",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "928af3d90454bf656a52a48679f199f64c1435247d6189d1caf4c68f2eaf921f",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "bceb58df66ab8fb00170df20cd813978c5ab84be1d285710c4eb005d8e9d8efb",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "933921f0bb0ec12ef45d1062a1fc0f27635318f4d294e4d99de9a5493e618ca2",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "71a0f3ad612c123b57239a7749770017ecfe6b66411488000aba83e4546fde25",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "77fbe5eecb6fac4b6242bbf6eebfc43e98ce5ccba8fa44e0ef6a95c945ff4d98",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "4f9d8ca0c417b67b69eeb54c7ca1bedd7b56034bb9bfd27c5d4f3bc4692daca7",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "814118df420c4e38fe5ae1b9a3bafb6e9c2aa40838e528cde908381867be6466",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "a3fc63c0d7b031693f665f5494412ba4b551fe644ededccc0ab5922401079c95",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "f27524f4bef4b6519c604bdb23bf4465bddcccbf3f003abb901acbd0d7404d99",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "6b039f55681caaf111d5eb84d292b9bee9e0131d0db1ad0871eef0964f533c73",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "18fd40412d102c5564136f29735e5d1c3b455b8a37f920da79561f1fde068208",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "c8d3e5a18ba35629954e48c4cc8f11dc88224650067a172685c736b27a34a4dc",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "f0be1b8078cd549d91f37c30c222c2a187ac1cf981d994fb476a1adc61387b14",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "0aaed1d72199b01234152f7a60046bc947f1f37d78d182e9ae09c4289e06a592",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "2b55d426ff2b9087485e52ac4bc7cfafe1dc420fc76dad926cd46526567c501a",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "5b7aa3c4c1a5d81b411e8cb302b45507fea9358d3569196b27eb1a27ae3a90ef",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "5987a903da92c7462e0b35704ce7da94d7fdc4b89a984871c0e2b87a8aae9e69",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "ea08a0345023ade2b47fbff5a76d0d0ed8bff10bc9d22b83f40858a8e941501c",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "47613031a5a31510831304405af561b0ffaedb734437c595256bb61a90f9311b",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "ae062ce7d9510060c5d7e7952ae379224fb3f8f2dd74e88959878af2057c143b",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "8a1a0d0a4a06a8d278947fcb66bf684f117bf147f89b06e50662d79a53be3e9f",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "358765d5ea8afd285d4fd1532e78b88273f18cb3f87403a9b16fef61ac9fdcfe",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "9f55299850d4f0921e79b6bf344b47c420ce0f507b9dcf593e532b09ea7eeea1",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "104c67f0da1bdf0d94865419247e20eded83ce7f9911a1aa75fc675c077ca66e",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "25be1eb939c9c63242c7a45446edb20c40541da967f43f1aa6a00ed53c0552db",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "b1538a92b9bae8d230267210c5db38c2eb6bdb352128a3ce3aa8c6acf9fc9622",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "6fc1a4f64372593767a9b7b774e9b3b92bf04e8785c3f9ea98973aa9f4bbe490",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "ff09b6fbdcf74d8af4e131b8866925c5e18d225540b9b19ce9485ca93e574d84",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "d5895252efa27a50f134a9b580aa61f7def5ab73d0a8071f9b5bf9a317c01c2d",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "1f366bde16e0513fa7b64f87f86689c4d36efd85afce7eb24753e9c99b91c319",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "151ff381ef9ff8da2da9b9663ebf657eac35c4c9a19183420c05728f31a6761d",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "a4a39b5714adfcadd3bbea6698ca2e942606d833bde62ad5fb6ec55f5e438ff8",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "bbc1d029093135d7d9bfa4b38cbf8761db505026cc458b5e9c8b74f4000e5e75",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "ac450542cbfd50a4d7bf0f3ec8aeedb9e95791ecc6f2b2b19367696bd303e8c6",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "8a190298d0ff502ad1c7294ba6b0abb3a290fc905b3a00603016a97c363a4c7a",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "3cf631a6ae0060fddf4898c816958e39f47e16570faf7bc7048c774c83cd7a7e",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "1f68ab0e055994eb337b67aa87d2a15e0200951e9664959b3866ee6f6b11a0fe",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "fd326577c62145816fe1acc306c734c2396487f76719d3785d4e825b34540b33",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "afe73051ff6a03a9565cbd8ebb0e956ee3df5e913ad5c1ded64218aabfa3dcb5",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "43f1a6853b39d8b63cab39d4c27577176d4ea3b440a774a0b99f09fd31ed8e70",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "6cb35d83d21a7e72bd00398c93302749bcd38349d0cc5e76ff3a90c6d1498a4d",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "369dd7668d0e6c91550bce0c325f37ce6402e5dd40ecfca66fbb5283e23e559d",
- "signature": false,
- "affectsGlobalScope": true,
- "impliedFormat": 1
- },
- {
- "version": "2632057d8b983ee33295566088c080384d7d69a492bc60b008d6a6dfd3508d6b",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "4bf71cf2a94492fc71e97800bdf2bcb0a9a0fa5fce921c8fe42c67060780cbfa",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "0996ff06f64cb05b6dac158a6ada2e16f8c2ccd20f9ff6f3c3e871f1ba5fb6d9",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "5c492d01a19fea5ebfff9d27e786bc533e5078909521ca17ae41236f16f9686a",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "a6ee930b81c65ec79aca49025b797817dde6f2d2e9b0e0106f0844e18e2cc819",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "84fce15473e993e6b656db9dd3c9196b80f545647458e6621675e840fd700d29",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "7d5336ee766aa72dffb1cc2a515f61d18a4fb61b7a2757cbccfb7b286b783dfb",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "63e96248ab63f6e7a86e31aa3e654ed6de1c3f99e3b668e04800df05874e8b77",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "80da0f61195385d22b666408f6cccbc261c066d401611a286f07dfddf7764017",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "06a20cc7d937074863861ea1159ac783ff97b13952b4b5d1811c7d8ab5c94776",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "ab6de4af0e293eae73b67dad251af097d7bcc0b8b62de84e3674e831514cb056",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "18cbd79079af97af66c9c07c61b481fce14a4e7282eca078c474b40c970ba1d0",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "e7b45405689d87e745a217b648d3646fb47a6aaba9c8d775204de90c7ea9ff35",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "669b754ec246dd7471e19b655b73bda6c2ca5bb7ccb1a4dff44a9ae45b6a716a",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "bcfaca4a8ff50f57fd36df91fba5d34056883f213baff7192cbfc4d3805d2084",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "76a564b360b267502219a89514953058494713ee0923a63b2024e542c18b40e5",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "8f62cbd3afbd6a07bb8c934294b6bfbe437021b89e53a4da7de2648ecfc7af25",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "a20629551ed7923f35f7556c4c15d0c8b2ebe7afaa68ceaab079a1707ba64be2",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "d6de66600c97cd499526ddecea6e12166ab1c0e8d9bf36fb2339fd39c8b3372a",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "8e7a5b8f867b99cc8763c0b024068fb58e09f7da2c4810c12833e1ca6eb11c4f",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "a8932876de2e3138a5a27f9426b225a4d27f0ba0a1e2764ba20930b4c3faf4b9",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "df877050b04c29b9f8409aa10278d586825f511f0841d1ec41b6554f8362092b",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "027d600e00c5f5e1816c207854285d736f2f5fa28276e2829db746d5d6811ba1",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "5443113a16ef378446e08d6500bb48b35de582426459abdb5c9704f5c7d327d9",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "0fb581ecb53304a3c95bb930160b4fa610537470cce850371cbaad5a458ca0d9",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "7da4e290c009d7967343a7f8c3f145a3d2c157c62483362183ba9f637a536489",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "eb21ddc3a8136a12e69176531197def71dc28ffaf357b74d4bf83407bd845991",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "914560d0c4c6aa947cfe7489fe970c94ba25383c414bbe0168b44fd20dbf0df4",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "4fb3405055b54566dea2135845c3a776339e7e170d692401d97fd41ad9a20e5d",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "8d607832a6ef0eac30657173441367dd76c96bf7800d77193428b922e060c3af",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "20ff7207f0bb5cdde5fee8e83315ade7e5b8100cfa2087d20d39069a3d7d06f4",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "7ca4c534eab7cff43d81327e369a23464bc37ef38ce5337ceff24a42c6c84eb2",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "5252dec18a34078398be4e321dee884dc7f47930e5225262543a799b591b36d2",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "23caed4dff98bd28157d2b798b43f1dfefe727f18641648c01ce4e0e929a1630",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "f67e013d5374826596d7c23dbae1cdb14375a27cd72e16c5fb46a4b445059329",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "ea3401b70e2302683bbf4c18b69ef2292b60f4d8f8e6d920413b81fb7bde0f65",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "71afe26642c0fb86b9f8b1af4af5deb5181b43b6542a3ff2314871b53d04c749",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "0d7f01634e6234d84cf0106508efdb8ae00e5ed126eff9606d37b031ac1de654",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "f8d209086bad78af6bd7fef063c1ed449c815e6f8d36058115f222d9f788b848",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "3ad003278d569d1953779e2f838f7798f02e793f6a1eceac8e0065f1a202669b",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "fb2c5eceffcd918dbb86332afa0199f5e7b6cf6ee42809e930a827b28ef25afe",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "f664aaff6a981eeca68f1ff2d9fd21b6664f47bf45f3ae19874df5a6683a8d8a",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "ce066f85d73e09e9adbd0049bcf6471c7eefbfc2ec4b5692b5bcef1e36babd2a",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "09d302513cacfbcc54b67088739bd8ac1c3c57917f83f510b2d1adcb99fd7d2a",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "3faa54e978b92a6f726440c13fe3ab35993dc74d697c7709681dc1764a25219f",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "2bd0489e968925eb0c4c0fb12ef090be5165c86bd088e1e803102c38d4a717d8",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "88924207132b9ba339c1adb1ed3ea07e47b3149ff8a2e21a3ea1f91cee68589d",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "b8800b93d8ab532f8915be73f8195b9d4ef06376d8a82e8cdc17c400553172d6",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "d7d469703b78beba76d511957f8c8b534c3bbb02bea7ab4705c65ef573532fb8",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "74c8c3057669c03264263d911d0f82e876cef50b05be21c54fef23c900de0420",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "b303eda2ff2d582a9c3c5ecb708fb57355cdc25e8c8197a9f66d4d1bf09fda19",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "4e5dc89fa22ff43da3dee1db97d5add0591ebaff9e4adef6c8b6f0b41f0f60f0",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "ec4e82cb42a902fe83dc13153c7a260bee95684541f8d7ef26cb0629a2f4ca31",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "5f36e24cd92b0ff3e2a243685a8a780c9413941c36739f04b428cc4e15de629d",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "40a26494e6ab10a91851791169582ab77fed4fbd799518968177e7eefe08c7a9",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "208e125b45bc561765a74f6f1019d88e44e94678769824cf93726e1bac457961",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "b3985971de086ef3aa698ef19009a53527b72e65851b782dc188ac341a1e1390",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "c81d421aabb6113cd98b9d4f11e9a03273b363b841f294b457f37c15d513151d",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "30063e3a184ff31254bbafa782c78a2d6636943dfe59e1a34f451827fd7a68dc",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "c05d4cae0bceed02c9d013360d3e65658297acb1b7a90252fe366f2bf4f9ccc9",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "6f14b92848889abba03a474e0750f7350cc91fc190c107408ca48679a03975ae",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "a588d0765b1d18bf00a498b75a83e095aef75a9300b6c1e91cbf39e408f2fe2f",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "08323a8971cb5b2632b532cba1636ad4ca0d76f9f7d0b8d1a0c706fdf5c77b45",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "5d2651c679f59706bf484e7d423f0ec2d9c79897e2e68c91a3f582f21328d193",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "30d49e69cb62f350ff0bc5dda1c557429c425014955c19c557f101c0de9272e7",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "d3747dbed45540212e9a906c2fb8b5beb691f2cd0861af58a66dc01871004f38",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "05a21cbb7cbe1ec502e7baca1f4846a4e860d96bad112f3e316b995ba99715b7",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "1eaee2b52f1c0e1848845a79050c1d06ae554d8050c35e3bf479f13d6ee19dd5",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "fd219904eea67c470dfebbaf44129b0db858207c3c3b55514bdc84de547b1687",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "4de232968f584b960b4101b4cdae593456aff149c5d0c70c2389248e9eb9fbac",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "933c42f6ed2768265dfb42faa817ce8d902710c57a21a1859a9c3fe5e985080e",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "c5430542eeebb207d651e8b00a08e4bb680c47ecb73dd388d8fa597a1fc5de5b",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "a6c5c9906262cf10549989c0061e5a44afdc1f61da77d5e09418a9ecea0018fe",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "bc6e433cb982bf63eaa523dbbbd30fe12960a09861b352d77baf77ad6dd8886d",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "9af64ab00918f552388252977c1569fe31890686ca1fdb8e20f58d3401c9a50c",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "3d3cc03b5c6e056c24aac76789f4bc67caee98a4f0774ab82bc8ba34d16be916",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "747ce36fa27a750a05096f3610e59c9b5a55e13defec545c01a75fd13d67b620",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "1a8f503c64bdb36308f245960d9e4acac4cf65d8b6bd0534f88230ebf0be7883",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "a2c1f4012459547d62116d724e7ec820bb2e6848da40ea0747bf160ffd99b283",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "0dc197e52512a7cbea4823cc33c23b0337af97bd59b38bf83be047f37cd8c9a8",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "492c93ade227fe4545fabb3035b9dd5d57d8b4fde322e5217fdaef20aa1b80a8",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "83c54a3b3e836d1773b8c23ff76ce6e0aae1a2209fc772b75e9de173fec9eac0",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "475e411f48f74c14b1f6e50cc244387a5cc8ce52340dddfae897c96e03f86527",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "5573ce7aa683a81c9a727294ffdb47d82d7715a148bfe9f4ddcf2f6cdfef1f0a",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "2cd9edbb4a6411a9f5258237dd73323db978d7aa9ebf1d1b0ac79771ac233e24",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "a4809f4d92317535e6b22b01019437030077a76fec1d93b9881c9ed4738fcc54",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "5f53fa0bd22096d2a78533f94e02c899143b8f0f9891a46965294ee8b91a9434",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "4113fcb657953db88a125082f517a4b51083526a18765e90f2401a5dbb864d7e",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "f60e3e3060207ac982da13363181fd7ee4beecc19a7c569f0d6bb034331066c2",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "17230b34bb564a3a2e36f9d3985372ccab4ad1722df2c43f7c5c2b553f68e5db",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "6e5c9272f6b3783be7bdddaf207cccdb8e033be3d14c5beacc03ae9d27d50929",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "9b4f7ff9681448c72abe38ea8eefd7ffe0c3aefe495137f02012a08801373f71",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "0dfe35191a04e8f9dc7caeb9f52f2ee07402736563d12cbccd15fb5f31ac877f",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "798367363a3274220cbed839b883fe2f52ba7197b25e8cb2ac59c1e1fd8af6b7",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "6ded4be4f8a693d0c1646dfa2f1b6582e34b73c66ce334cb5e86c7bf8c2e52b7",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "5aea76ab98173f2c230b1f78dc010da403da622c105c468ace9fe24e3b77883c",
- "signature": false,
- "impliedFormat": 99
- },
- {
- "version": "619b27779179fc871684a78d5a6432de23491571983363bff6af262a996a9058",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "837f5c12e3e94ee97aca37aa2a50ede521e5887fb7fa89330f5625b70597e116",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "ab82804a14454734010dcdcd43f564ff7b0389bee4c5692eec76ff5b30d4cf66",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "c130f9616a960edc892aa0eb7a8a59f33e662c561474ed092c43a955cdb91dab",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "10281654231a4dfa1a41af0415afbd6d0998417959aed30c9f0054644ce10f5c",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "7fa8d75d229eeaee235a801758d9c694e94405013fe77d5d1dd8e3201fc414f1",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "bae8d023ef6b23df7da26f51cea44321f95817c190342a36882e93b80d07a960",
- "signature": false,
- "impliedFormat": 1
- },
- {
- "version": "26a770cec4bd2e7dbba95c6e536390fffe83c6268b78974a93727903b515c4e7",
- "signature": false,
- "impliedFormat": 1
- }
- ],
- "root": [
- [114, 123],
- 558,
- 559,
- 596,
- [734, 736],
- 1112,
- [1114, 1116],
- [1118, 1121],
- 1153,
- 1154,
- [1156, 1158],
- [1160, 1169],
- [1171, 1180],
- [1182, 1186],
- 1188,
- [1190, 1199]
- ],
- "options": {
- "allowJs": true,
- "checkJs": true,
- "emitDeclarationOnly": false,
- "esModuleInterop": true,
- "jsx": 1,
- "module": 200,
- "noUncheckedIndexedAccess": true,
- "rootDir": "..",
- "skipLibCheck": true,
- "strict": true,
- "target": 9,
- "tsBuildInfoFile": "./tsbuildinfo.json"
- },
- "referencedMap": [
- [1202, 1],
- [1200, 2],
- [747, 3],
- [751, 4],
- [750, 5],
- [746, 6],
- [749, 7],
- [742, 8],
- [748, 3],
- [808, 9],
- [810, 10],
- [809, 11],
- [799, 12],
- [842, 13],
- [841, 14],
- [813, 15],
- [814, 16],
- [846, 17],
- [845, 18],
- [844, 16],
- [848, 19],
- [847, 20],
- [843, 21],
- [849, 21],
- [850, 22],
- [855, 23],
- [856, 24],
- [854, 25],
- [853, 26],
- [852, 27],
- [851, 23],
- [860, 28],
- [859, 29],
- [858, 30],
- [744, 31],
- [745, 32],
- [857, 33],
- [831, 34],
- [828, 35],
- [867, 21],
- [866, 21],
- [865, 21],
- [824, 35],
- [836, 16],
- [837, 21],
- [833, 21],
- [832, 21],
- [823, 21],
- [870, 36],
- [869, 37],
- [822, 38],
- [821, 38],
- [864, 35],
- [834, 21],
- [862, 39],
- [825, 21],
- [830, 40],
- [827, 41],
- [829, 34],
- [812, 42],
- [861, 15],
- [839, 2],
- [840, 2],
- [835, 21],
- [826, 21],
- [820, 38],
- [863, 16],
- [901, 43],
- [900, 44],
- [898, 45],
- [876, 46],
- [899, 21],
- [902, 47],
- [904, 48],
- [903, 49],
- [800, 35],
- [801, 21],
- [802, 21],
- [906, 50],
- [905, 51],
- [803, 52],
- [804, 41],
- [796, 53],
- [798, 54],
- [797, 55],
- [805, 21],
- [806, 56],
- [807, 35],
- [907, 16],
- [908, 57],
- [910, 58],
- [909, 59],
- [911, 35],
- [912, 21],
- [913, 21],
- [914, 21],
- [916, 21],
- [915, 21],
- [928, 60],
- [927, 61],
- [920, 62],
- [921, 41],
- [922, 47],
- [918, 63],
- [919, 64],
- [923, 65],
- [924, 21],
- [925, 56],
- [926, 35],
- [932, 23],
- [931, 39],
- [930, 66],
- [936, 67],
- [935, 68],
- [934, 39],
- [929, 39],
- [818, 69],
- [933, 70],
- [940, 71],
- [939, 72],
- [938, 21],
- [937, 21],
- [787, 73],
- [769, 74],
- [772, 75],
- [768, 76],
- [785, 77],
- [767, 78],
- [788, 79],
- [773, 78],
- [774, 80],
- [789, 78],
- [783, 81],
- [775, 78],
- [777, 82],
- [778, 78],
- [779, 83],
- [776, 78],
- [766, 84],
- [780, 77],
- [781, 78],
- [790, 85],
- [782, 73],
- [791, 86],
- [784, 87],
- [786, 88],
- [765, 2],
- [816, 89],
- [815, 90],
- [817, 91],
- [1111, 92],
- [941, 93],
- [942, 94],
- [1054, 21],
- [871, 34],
- [872, 35],
- [880, 35],
- [879, 95],
- [882, 21],
- [881, 21],
- [897, 96],
- [896, 97],
- [883, 21],
- [884, 21],
- [885, 40],
- [886, 41],
- [887, 34],
- [888, 95],
- [890, 35],
- [889, 21],
- [878, 98],
- [874, 99],
- [877, 100],
- [873, 101],
- [892, 102],
- [891, 103],
- [895, 21],
- [893, 104],
- [894, 21],
- [943, 95],
- [875, 105],
- [944, 106],
- [946, 107],
- [945, 21],
- [953, 108],
- [952, 109],
- [949, 110],
- [951, 110],
- [947, 21],
- [948, 110],
- [950, 110],
- [964, 34],
- [962, 35],
- [957, 35],
- [966, 21],
- [968, 111],
- [967, 112],
- [956, 21],
- [965, 21],
- [955, 21],
- [963, 113],
- [959, 41],
- [960, 34],
- [954, 8],
- [958, 21],
- [961, 21],
- [973, 114],
- [971, 114],
- [972, 114],
- [978, 115],
- [977, 116],
- [974, 114],
- [970, 117],
- [976, 114],
- [975, 114],
- [969, 2],
- [987, 34],
- [988, 35],
- [991, 21],
- [990, 21],
- [994, 118],
- [993, 119],
- [986, 40],
- [984, 41],
- [985, 34],
- [982, 120],
- [981, 121],
- [980, 122],
- [989, 21],
- [983, 123],
- [992, 21],
- [1003, 34],
- [1004, 35],
- [1007, 124],
- [1006, 125],
- [1002, 113],
- [999, 126],
- [1001, 34],
- [997, 127],
- [996, 128],
- [995, 129],
- [1000, 130],
- [1005, 21],
- [1014, 131],
- [1013, 132],
- [1010, 133],
- [1012, 133],
- [1008, 21],
- [1009, 133],
- [1011, 133],
- [1019, 23],
- [1020, 134],
- [1018, 135],
- [1017, 136],
- [1016, 35],
- [1015, 39],
- [1024, 137],
- [1026, 21],
- [1028, 138],
- [1027, 139],
- [1021, 21],
- [1023, 137],
- [1025, 21],
- [1022, 137],
- [1042, 34],
- [1035, 35],
- [1046, 21],
- [1045, 21],
- [1033, 21],
- [1048, 140],
- [1047, 141],
- [1040, 35],
- [1041, 21],
- [1039, 21],
- [1030, 39],
- [1038, 21],
- [1037, 40],
- [1034, 41],
- [1036, 34],
- [1029, 42],
- [1043, 21],
- [1044, 21],
- [1031, 39],
- [1032, 21],
- [838, 21],
- [868, 142],
- [1052, 143],
- [1058, 144],
- [1057, 145],
- [1056, 143],
- [1050, 143],
- [1049, 23],
- [1055, 146],
- [1053, 143],
- [1051, 143],
- [1062, 147],
- [1061, 148],
- [1059, 149],
- [1060, 150],
- [1069, 151],
- [1068, 152],
- [1065, 153],
- [1067, 154],
- [1066, 155],
- [1064, 156],
- [1063, 154],
- [1080, 21],
- [1082, 34],
- [1079, 21],
- [1076, 21],
- [1072, 157],
- [1077, 21],
- [1084, 158],
- [1083, 159],
- [1081, 126],
- [1070, 160],
- [1073, 161],
- [1075, 162],
- [1078, 21],
- [1071, 163],
- [1074, 21],
- [1087, 8],
- [1088, 164],
- [1085, 8],
- [1086, 165],
- [1092, 166],
- [1091, 166],
- [1096, 167],
- [1095, 168],
- [1094, 166],
- [1093, 166],
- [1090, 21],
- [1089, 169],
- [1104, 34],
- [1108, 170],
- [1107, 171],
- [1103, 113],
- [1101, 126],
- [1102, 34],
- [1105, 16],
- [1099, 172],
- [1098, 173],
- [1097, 174],
- [1100, 175],
- [1106, 21],
- [740, 176],
- [1110, 177],
- [1109, 178],
- [998, 41],
- [739, 179],
- [770, 2],
- [795, 180],
- [794, 181],
- [792, 2],
- [793, 182],
- [737, 2],
- [738, 183],
- [811, 16],
- [741, 184],
- [819, 185],
- [771, 178],
- [917, 16],
- [743, 16],
- [753, 16],
- [756, 186],
- [754, 2],
- [757, 187],
- [752, 188],
- [758, 189],
- [755, 190],
- [759, 16],
- [979, 2],
- [124, 2],
- [125, 191],
- [126, 192],
- [131, 193],
- [127, 192],
- [130, 2],
- [128, 2],
- [129, 2],
- [1322, 194],
- [761, 195],
- [763, 196],
- [764, 197],
- [760, 2],
- [762, 2],
- [64, 16],
- [68, 198],
- [73, 199],
- [78, 200],
- [74, 200],
- [75, 201],
- [77, 202],
- [67, 201],
- [83, 203],
- [65, 16],
- [72, 204],
- [84, 16],
- [69, 200],
- [85, 203],
- [70, 200],
- [87, 205],
- [88, 206],
- [86, 200],
- [82, 207],
- [89, 208],
- [91, 209],
- [92, 210],
- [93, 16],
- [94, 211],
- [80, 212],
- [71, 200],
- [66, 16],
- [95, 201],
- [96, 213],
- [81, 201],
- [97, 201],
- [98, 211],
- [99, 200],
- [100, 201],
- [101, 16],
- [102, 201],
- [103, 213],
- [104, 214],
- [106, 215],
- [105, 200],
- [107, 216],
- [108, 206],
- [90, 200],
- [79, 2],
- [612, 217],
- [611, 2],
- [608, 2],
- [1205, 218],
- [1201, 1],
- [1203, 219],
- [1204, 1],
- [1311, 220],
- [1312, 220],
- [1313, 2],
- [1314, 2],
- [1315, 2],
- [1316, 221],
- [621, 2],
- [598, 222],
- [622, 223],
- [597, 2],
- [1317, 2],
- [1325, 224],
- [1321, 225],
- [1320, 226],
- [1318, 2],
- [1326, 227],
- [1327, 228],
- [1328, 2],
- [1415, 229],
- [1394, 230],
- [1396, 231],
- [1395, 230],
- [1398, 232],
- [1400, 233],
- [1401, 234],
- [1402, 235],
- [1403, 233],
- [1404, 234],
- [1405, 233],
- [1406, 236],
- [1407, 234],
- [1408, 233],
- [1409, 237],
- [1410, 238],
- [1411, 239],
- [1412, 240],
- [1399, 241],
- [1413, 242],
- [1397, 242],
- [1414, 243],
- [1392, 244],
- [1342, 245],
- [1340, 245],
- [1367, 246],
- [1355, 247],
- [1335, 248],
- [1332, 249],
- [1368, 250],
- [1341, 251],
- [1343, 252],
- [1336, 253],
- [1331, 254],
- [1329, 255],
- [1391, 2],
- [1337, 256],
- [1365, 247],
- [1366, 247],
- [1369, 257],
- [1370, 247],
- [1371, 247],
- [1372, 247],
- [1373, 247],
- [1374, 247],
- [1375, 258],
- [1376, 259],
- [1377, 247],
- [1333, 247],
- [1378, 247],
- [1379, 247],
- [1380, 258],
- [1381, 247],
- [1382, 247],
- [1383, 260],
- [1384, 247],
- [1385, 257],
- [1386, 247],
- [1334, 247],
- [1387, 247],
- [1388, 247],
- [1389, 261],
- [1338, 262],
- [1390, 263],
- [1344, 264],
- [1352, 265],
- [1347, 265],
- [1346, 266],
- [1345, 267],
- [1350, 268],
- [1354, 269],
- [1353, 270],
- [1348, 271],
- [1349, 268],
- [1351, 272],
- [1339, 2],
- [1330, 273],
- [1360, 2],
- [1361, 2],
- [1362, 2],
- [1364, 2],
- [1363, 2],
- [1358, 2],
- [1359, 258],
- [1357, 2],
- [1356, 255],
- [1416, 2],
- [1417, 274],
- [1418, 275],
- [1319, 2],
- [1419, 2],
- [1420, 276],
- [1257, 277],
- [1258, 277],
- [1259, 278],
- [1211, 279],
- [1260, 280],
- [1261, 281],
- [1262, 282],
- [1206, 2],
- [1209, 283],
- [1207, 2],
- [1208, 2],
- [1263, 284],
- [1264, 285],
- [1265, 286],
- [1266, 287],
- [1267, 288],
- [1268, 289],
- [1269, 289],
- [1270, 290],
- [1271, 291],
- [1272, 292],
- [1273, 293],
- [1212, 2],
- [1210, 2],
- [1274, 294],
- [1275, 295],
- [1276, 296],
- [1310, 297],
- [1277, 298],
- [1278, 2],
- [1279, 299],
- [1280, 300],
- [1281, 301],
- [1282, 302],
- [1283, 303],
- [1284, 304],
- [1285, 305],
- [1286, 306],
- [1287, 307],
- [1288, 307],
- [1289, 308],
- [1290, 2],
- [1291, 309],
- [1292, 310],
- [1294, 311],
- [1293, 312],
- [1295, 313],
- [1296, 314],
- [1297, 315],
- [1298, 316],
- [1299, 317],
- [1300, 318],
- [1301, 319],
- [1302, 320],
- [1303, 321],
- [1304, 322],
- [1305, 323],
- [1306, 324],
- [1307, 325],
- [1213, 2],
- [1214, 2],
- [1215, 2],
- [1254, 326],
- [1255, 2],
- [1256, 2],
- [1308, 327],
- [1309, 328],
- [1429, 329],
- [1428, 330],
- [1427, 331],
- [1426, 330],
- [1181, 16],
- [60, 2],
- [62, 332],
- [76, 16],
- [1430, 2],
- [1431, 2],
- [1432, 333],
- [1393, 334],
- [1433, 2],
- [1434, 2],
- [1435, 2],
- [1436, 335],
- [1216, 2],
- [112, 336],
- [111, 337],
- [110, 2],
- [1113, 338],
- [61, 2],
- [220, 339],
- [199, 340],
- [296, 2],
- [200, 341],
- [136, 339],
- [137, 339],
- [138, 339],
- [139, 339],
- [140, 339],
- [141, 339],
- [142, 339],
- [143, 339],
- [144, 339],
- [145, 339],
- [146, 339],
- [147, 339],
- [148, 339],
- [149, 339],
- [150, 339],
- [151, 339],
- [152, 339],
- [153, 339],
- [132, 2],
- [154, 339],
- [155, 339],
- [156, 2],
- [157, 339],
- [158, 339],
- [159, 339],
- [160, 339],
- [161, 339],
- [162, 339],
- [163, 339],
- [164, 339],
- [165, 339],
- [166, 339],
- [167, 339],
- [168, 339],
- [169, 339],
- [170, 339],
- [171, 339],
- [172, 339],
- [173, 339],
- [174, 339],
- [175, 339],
- [176, 339],
- [177, 339],
- [178, 339],
- [179, 339],
- [180, 339],
- [181, 339],
- [182, 339],
- [183, 339],
- [184, 339],
- [185, 339],
- [186, 339],
- [187, 339],
- [188, 339],
- [189, 339],
- [190, 339],
- [191, 339],
- [192, 339],
- [193, 339],
- [194, 339],
- [195, 339],
- [196, 339],
- [197, 339],
- [198, 339],
- [201, 342],
- [202, 339],
- [203, 339],
- [204, 343],
- [205, 344],
- [206, 339],
- [207, 339],
- [208, 339],
- [209, 339],
- [210, 339],
- [211, 339],
- [212, 339],
- [134, 2],
- [213, 339],
- [214, 339],
- [215, 339],
- [216, 339],
- [217, 339],
- [218, 339],
- [219, 339],
- [221, 345],
- [222, 339],
- [223, 339],
- [224, 339],
- [225, 339],
- [226, 339],
- [227, 339],
- [228, 339],
- [229, 339],
- [230, 339],
- [231, 339],
- [232, 339],
- [233, 339],
- [234, 339],
- [235, 339],
- [236, 339],
- [237, 339],
- [238, 339],
- [239, 339],
- [240, 2],
- [241, 2],
- [242, 2],
- [389, 346],
- [243, 339],
- [244, 339],
- [245, 339],
- [246, 339],
- [247, 339],
- [248, 339],
- [249, 2],
- [250, 339],
- [251, 2],
- [252, 339],
- [253, 339],
- [254, 339],
- [255, 339],
- [256, 339],
- [257, 339],
- [258, 339],
- [259, 339],
- [260, 339],
- [261, 339],
- [262, 339],
- [263, 339],
- [264, 339],
- [265, 339],
- [266, 339],
- [267, 339],
- [268, 339],
- [269, 339],
- [270, 339],
- [271, 339],
- [272, 339],
- [273, 339],
- [274, 339],
- [275, 339],
- [276, 339],
- [277, 339],
- [278, 339],
- [279, 339],
- [280, 339],
- [281, 339],
- [282, 339],
- [283, 339],
- [284, 2],
- [285, 339],
- [286, 339],
- [287, 339],
- [288, 339],
- [289, 339],
- [290, 339],
- [291, 339],
- [292, 339],
- [293, 339],
- [294, 339],
- [295, 339],
- [297, 347],
- [485, 348],
- [390, 341],
- [392, 341],
- [393, 341],
- [394, 341],
- [395, 341],
- [396, 341],
- [391, 341],
- [397, 341],
- [399, 341],
- [398, 341],
- [400, 341],
- [401, 341],
- [402, 341],
- [403, 341],
- [404, 341],
- [405, 341],
- [406, 341],
- [407, 341],
- [409, 341],
- [408, 341],
- [410, 341],
- [411, 341],
- [412, 341],
- [413, 341],
- [414, 341],
- [415, 341],
- [416, 341],
- [417, 341],
- [418, 341],
- [419, 341],
- [420, 341],
- [421, 341],
- [422, 341],
- [423, 341],
- [424, 341],
- [426, 341],
- [427, 341],
- [425, 341],
- [428, 341],
- [429, 341],
- [430, 341],
- [431, 341],
- [432, 341],
- [433, 341],
- [434, 341],
- [435, 341],
- [436, 341],
- [437, 341],
- [438, 341],
- [439, 341],
- [441, 341],
- [440, 341],
- [443, 341],
- [442, 341],
- [444, 341],
- [445, 341],
- [446, 341],
- [447, 341],
- [448, 341],
- [449, 341],
- [450, 341],
- [451, 341],
- [452, 341],
- [453, 341],
- [454, 341],
- [455, 341],
- [456, 341],
- [458, 341],
- [457, 341],
- [459, 341],
- [460, 341],
- [461, 341],
- [463, 341],
- [462, 341],
- [464, 341],
- [465, 341],
- [466, 341],
- [467, 341],
- [468, 341],
- [469, 341],
- [471, 341],
- [470, 341],
- [472, 341],
- [473, 341],
- [474, 341],
- [475, 341],
- [476, 341],
- [133, 339],
- [477, 341],
- [478, 341],
- [480, 341],
- [479, 341],
- [481, 341],
- [482, 341],
- [483, 341],
- [484, 341],
- [298, 339],
- [299, 339],
- [300, 2],
- [301, 2],
- [302, 2],
- [303, 339],
- [304, 2],
- [305, 2],
- [306, 2],
- [307, 2],
- [308, 2],
- [309, 339],
- [310, 339],
- [311, 339],
- [312, 339],
- [313, 339],
- [314, 339],
- [315, 339],
- [316, 339],
- [321, 349],
- [319, 350],
- [318, 351],
- [320, 352],
- [317, 339],
- [322, 339],
- [323, 339],
- [324, 339],
- [325, 339],
- [326, 339],
- [327, 339],
- [328, 339],
- [329, 339],
- [330, 339],
- [331, 339],
- [332, 2],
- [333, 2],
- [334, 339],
- [335, 339],
- [336, 2],
- [337, 2],
- [338, 2],
- [339, 339],
- [340, 339],
- [341, 339],
- [342, 339],
- [343, 345],
- [344, 339],
- [345, 339],
- [346, 339],
- [347, 339],
- [348, 339],
- [349, 339],
- [350, 339],
- [351, 339],
- [352, 339],
- [353, 339],
- [354, 339],
- [355, 339],
- [356, 339],
- [357, 339],
- [358, 339],
- [359, 339],
- [360, 339],
- [361, 339],
- [362, 339],
- [363, 339],
- [364, 339],
- [365, 339],
- [366, 339],
- [367, 339],
- [368, 339],
- [369, 339],
- [370, 339],
- [371, 339],
- [372, 339],
- [373, 339],
- [374, 339],
- [375, 339],
- [376, 339],
- [377, 339],
- [378, 339],
- [379, 339],
- [380, 339],
- [381, 339],
- [382, 339],
- [383, 339],
- [384, 339],
- [135, 353],
- [385, 2],
- [386, 2],
- [387, 2],
- [388, 2],
- [727, 2],
- [594, 354],
- [595, 355],
- [560, 2],
- [568, 356],
- [562, 357],
- [569, 2],
- [591, 358],
- [566, 359],
- [590, 360],
- [587, 361],
- [570, 362],
- [571, 2],
- [564, 2],
- [561, 2],
- [592, 363],
- [588, 364],
- [572, 2],
- [589, 365],
- [573, 366],
- [575, 367],
- [576, 368],
- [565, 369],
- [577, 370],
- [578, 369],
- [580, 370],
- [581, 371],
- [582, 372],
- [584, 373],
- [579, 374],
- [585, 375],
- [586, 376],
- [563, 377],
- [583, 378],
- [574, 2],
- [567, 379],
- [593, 380],
- [1324, 381],
- [1323, 382],
- [652, 2],
- [1159, 16],
- [63, 16],
- [1187, 16],
- [1425, 383],
- [1422, 384],
- [1424, 385],
- [1423, 2],
- [1421, 2],
- [109, 386],
- [546, 387],
- [503, 16],
- [544, 388],
- [505, 389],
- [504, 390],
- [543, 391],
- [545, 392],
- [486, 16],
- [487, 16],
- [488, 16],
- [511, 393],
- [512, 393],
- [513, 387],
- [514, 16],
- [515, 16],
- [516, 394],
- [489, 395],
- [517, 16],
- [518, 16],
- [519, 396],
- [520, 16],
- [521, 16],
- [522, 16],
- [523, 16],
- [524, 16],
- [525, 16],
- [490, 395],
- [528, 395],
- [529, 16],
- [526, 16],
- [527, 16],
- [530, 16],
- [531, 396],
- [532, 397],
- [533, 388],
- [534, 388],
- [535, 388],
- [537, 388],
- [538, 2],
- [536, 388],
- [539, 388],
- [540, 398],
- [547, 399],
- [548, 400],
- [557, 401],
- [502, 402],
- [491, 403],
- [492, 388],
- [493, 403],
- [494, 388],
- [495, 2],
- [496, 388],
- [497, 2],
- [499, 388],
- [500, 388],
- [498, 388],
- [501, 388],
- [542, 388],
- [509, 404],
- [510, 405],
- [506, 406],
- [507, 407],
- [541, 408],
- [508, 409],
- [549, 403],
- [550, 403],
- [556, 410],
- [551, 388],
- [552, 403],
- [553, 403],
- [554, 388],
- [555, 403],
- [1122, 2],
- [1137, 411],
- [1138, 411],
- [1152, 412],
- [1139, 413],
- [1140, 413],
- [1141, 414],
- [1135, 415],
- [1133, 416],
- [1124, 2],
- [1128, 417],
- [1132, 418],
- [1130, 419],
- [1136, 420],
- [1125, 421],
- [1126, 422],
- [1127, 423],
- [1129, 424],
- [1131, 425],
- [1134, 426],
- [1142, 413],
- [1143, 413],
- [1144, 413],
- [1145, 411],
- [1146, 413],
- [1147, 413],
- [1123, 413],
- [1148, 2],
- [1150, 427],
- [1149, 413],
- [1151, 411],
- [1155, 16],
- [1170, 47],
- [638, 2],
- [636, 428],
- [640, 429],
- [707, 430],
- [702, 431],
- [605, 432],
- [673, 433],
- [666, 434],
- [723, 435],
- [661, 436],
- [706, 437],
- [703, 438],
- [655, 439],
- [665, 440],
- [708, 441],
- [709, 441],
- [710, 442],
- [603, 443],
- [672, 444],
- [718, 445],
- [712, 445],
- [720, 445],
- [724, 445],
- [711, 445],
- [713, 445],
- [716, 445],
- [719, 445],
- [715, 446],
- [717, 445],
- [721, 447],
- [714, 448],
- [615, 449],
- [687, 16],
- [684, 450],
- [688, 16],
- [626, 445],
- [616, 445],
- [679, 451],
- [604, 452],
- [625, 453],
- [629, 454],
- [686, 445],
- [601, 16],
- [685, 455],
- [683, 16],
- [682, 445],
- [617, 16],
- [729, 456],
- [697, 448],
- [677, 457],
- [733, 458],
- [698, 459],
- [696, 460],
- [692, 461],
- [694, 462],
- [699, 463],
- [701, 464],
- [695, 2],
- [693, 2],
- [691, 16],
- [624, 465],
- [600, 445],
- [690, 445],
- [639, 466],
- [689, 16],
- [664, 465],
- [722, 445],
- [657, 467],
- [613, 468],
- [618, 469],
- [667, 470],
- [669, 467],
- [648, 471],
- [651, 467],
- [630, 472],
- [650, 473],
- [659, 474],
- [660, 475],
- [656, 476],
- [670, 477],
- [658, 478],
- [635, 479],
- [678, 480],
- [674, 481],
- [675, 482],
- [671, 483],
- [649, 484],
- [637, 485],
- [642, 486],
- [619, 487],
- [646, 488],
- [647, 489],
- [643, 490],
- [620, 491],
- [631, 492],
- [668, 475],
- [614, 493],
- [676, 2],
- [641, 494],
- [634, 495],
- [662, 2],
- [725, 2],
- [653, 2],
- [700, 496],
- [663, 497],
- [731, 498],
- [732, 499],
- [704, 2],
- [730, 500],
- [627, 2],
- [654, 2],
- [606, 500],
- [633, 501],
- [728, 502],
- [632, 503],
- [705, 504],
- [644, 2],
- [680, 2],
- [681, 505],
- [628, 2],
- [645, 2],
- [726, 2],
- [602, 16],
- [610, 506],
- [607, 2],
- [609, 2],
- [1189, 16],
- [113, 2],
- [58, 2],
- [59, 2],
- [10, 2],
- [11, 2],
- [13, 2],
- [12, 2],
- [2, 2],
- [14, 2],
- [15, 2],
- [16, 2],
- [17, 2],
- [18, 2],
- [19, 2],
- [20, 2],
- [21, 2],
- [3, 2],
- [22, 2],
- [23, 2],
- [4, 2],
- [24, 2],
- [28, 2],
- [25, 2],
- [26, 2],
- [27, 2],
- [29, 2],
- [30, 2],
- [31, 2],
- [5, 2],
- [32, 2],
- [33, 2],
- [34, 2],
- [35, 2],
- [6, 2],
- [39, 2],
- [36, 2],
- [37, 2],
- [38, 2],
- [40, 2],
- [7, 2],
- [41, 2],
- [46, 2],
- [47, 2],
- [42, 2],
- [43, 2],
- [44, 2],
- [45, 2],
- [8, 2],
- [51, 2],
- [48, 2],
- [49, 2],
- [50, 2],
- [52, 2],
- [9, 2],
- [53, 2],
- [54, 2],
- [55, 2],
- [57, 2],
- [56, 2],
- [1, 2],
- [1232, 507],
- [1242, 508],
- [1231, 507],
- [1252, 509],
- [1223, 510],
- [1222, 511],
- [1251, 384],
- [1245, 512],
- [1250, 513],
- [1225, 514],
- [1239, 515],
- [1224, 516],
- [1248, 517],
- [1220, 518],
- [1219, 384],
- [1249, 519],
- [1221, 520],
- [1226, 521],
- [1227, 2],
- [1230, 521],
- [1217, 2],
- [1253, 522],
- [1243, 523],
- [1234, 524],
- [1235, 525],
- [1237, 526],
- [1233, 527],
- [1236, 528],
- [1246, 384],
- [1228, 529],
- [1229, 530],
- [1238, 531],
- [1218, 532],
- [1241, 523],
- [1240, 521],
- [1244, 2],
- [1247, 533],
- [1117, 338],
- [599, 534],
- [623, 535],
- [1198, 536],
- [115, 537],
- [114, 538],
- [116, 539],
- [117, 537],
- [118, 540],
- [119, 541],
- [120, 542],
- [121, 536],
- [123, 543],
- [122, 540],
- [558, 544],
- [559, 545],
- [596, 546],
- [734, 547],
- [735, 536],
- [736, 539],
- [1112, 548],
- [1114, 549],
- [1115, 536],
- [1116, 536],
- [1118, 550],
- [1119, 536],
- [1120, 551],
- [1121, 538],
- [1153, 552],
- [1196, 553],
- [1194, 16],
- [1195, 554],
- [1154, 537],
- [1156, 555],
- [1197, 556],
- [1158, 538],
- [1160, 557],
- [1157, 545],
- [1161, 540],
- [1162, 558],
- [1163, 537],
- [1199, 536],
- [1164, 559],
- [1165, 560],
- [1166, 559],
- [1167, 537],
- [1168, 537],
- [1169, 536],
- [1171, 561],
- [1172, 537],
- [1173, 536],
- [1174, 562],
- [1175, 536],
- [1176, 560],
- [1177, 558],
- [1178, 537],
- [1190, 563],
- [1179, 564],
- [1180, 545],
- [1182, 565],
- [1183, 537],
- [1184, 545],
- [1185, 540],
- [1186, 545],
- [1188, 566],
- [1192, 540],
- [1191, 540],
- [1193, 537]
- ],
- "changeFileSet": [
- 1202, 1200, 747, 751, 750, 746, 749, 742, 748, 808, 810, 809, 799, 842, 841,
- 813, 814, 846, 845, 844, 848, 847, 843, 849, 850, 855, 856, 854, 853, 852,
- 851, 860, 859, 858, 744, 745, 857, 831, 828, 867, 866, 865, 824, 836, 837,
- 833, 832, 823, 870, 869, 822, 821, 864, 834, 862, 825, 830, 827, 829, 812,
- 861, 839, 840, 835, 826, 820, 863, 901, 900, 898, 876, 899, 902, 904, 903,
- 800, 801, 802, 906, 905, 803, 804, 796, 798, 797, 805, 806, 807, 907, 908,
- 910, 909, 911, 912, 913, 914, 916, 915, 928, 927, 920, 921, 922, 918, 919,
- 923, 924, 925, 926, 932, 931, 930, 936, 935, 934, 929, 818, 933, 940, 939,
- 938, 937, 787, 769, 772, 768, 785, 767, 788, 773, 774, 789, 783, 775, 777,
- 778, 779, 776, 766, 780, 781, 790, 782, 791, 784, 786, 765, 816, 815, 817,
- 1111, 941, 942, 1054, 871, 872, 880, 879, 882, 881, 897, 896, 883, 884, 885,
- 886, 887, 888, 890, 889, 878, 874, 877, 873, 892, 891, 895, 893, 894, 943,
- 875, 944, 946, 945, 953, 952, 949, 951, 947, 948, 950, 964, 962, 957, 966,
- 968, 967, 956, 965, 955, 963, 959, 960, 954, 958, 961, 973, 971, 972, 978,
- 977, 974, 970, 976, 975, 969, 987, 988, 991, 990, 994, 993, 986, 984, 985,
- 982, 981, 980, 989, 983, 992, 1003, 1004, 1007, 1006, 1002, 999, 1001, 997,
- 996, 995, 1000, 1005, 1014, 1013, 1010, 1012, 1008, 1009, 1011, 1019, 1020,
- 1018, 1017, 1016, 1015, 1024, 1026, 1028, 1027, 1021, 1023, 1025, 1022,
- 1042, 1035, 1046, 1045, 1033, 1048, 1047, 1040, 1041, 1039, 1030, 1038,
- 1037, 1034, 1036, 1029, 1043, 1044, 1031, 1032, 838, 868, 1052, 1058, 1057,
- 1056, 1050, 1049, 1055, 1053, 1051, 1062, 1061, 1059, 1060, 1069, 1068,
- 1065, 1067, 1066, 1064, 1063, 1080, 1082, 1079, 1076, 1072, 1077, 1084,
- 1083, 1081, 1070, 1073, 1075, 1078, 1071, 1074, 1087, 1088, 1085, 1086,
- 1092, 1091, 1096, 1095, 1094, 1093, 1090, 1089, 1104, 1108, 1107, 1103,
- 1101, 1102, 1105, 1099, 1098, 1097, 1100, 1106, 740, 1110, 1109, 998, 739,
- 770, 795, 794, 792, 793, 737, 738, 811, 741, 819, 771, 917, 743, 753, 756,
- 754, 757, 752, 758, 755, 759, 979, 124, 125, 126, 131, 127, 130, 128, 129,
- 1322, 761, 763, 764, 760, 762, 64, 68, 73, 78, 74, 75, 77, 67, 83, 65, 72,
- 84, 69, 85, 70, 87, 88, 86, 82, 89, 91, 92, 93, 94, 80, 71, 66, 95, 96, 81,
- 97, 98, 99, 100, 101, 102, 103, 104, 106, 105, 107, 108, 90, 79, 612, 611,
- 608, 1205, 1201, 1203, 1204, 1311, 1312, 1313, 1314, 1315, 1316, 621, 598,
- 622, 597, 1317, 1325, 1321, 1320, 1318, 1326, 1327, 1328, 1415, 1394, 1396,
- 1395, 1398, 1400, 1401, 1402, 1403, 1404, 1405, 1406, 1407, 1408, 1409,
- 1410, 1411, 1412, 1399, 1413, 1397, 1414, 1392, 1342, 1340, 1367, 1355,
- 1335, 1332, 1368, 1341, 1343, 1336, 1331, 1329, 1391, 1337, 1365, 1366,
- 1369, 1370, 1371, 1372, 1373, 1374, 1375, 1376, 1377, 1333, 1378, 1379,
- 1380, 1381, 1382, 1383, 1384, 1385, 1386, 1334, 1387, 1388, 1389, 1338,
- 1390, 1344, 1352, 1347, 1346, 1345, 1350, 1354, 1353, 1348, 1349, 1351,
- 1339, 1330, 1360, 1361, 1362, 1364, 1363, 1358, 1359, 1357, 1356, 1416,
- 1417, 1418, 1319, 1419, 1420, 1257, 1258, 1259, 1211, 1260, 1261, 1262,
- 1206, 1209, 1207, 1208, 1263, 1264, 1265, 1266, 1267, 1268, 1269, 1270,
- 1271, 1272, 1273, 1212, 1210, 1274, 1275, 1276, 1310, 1277, 1278, 1279,
- 1280, 1281, 1282, 1283, 1284, 1285, 1286, 1287, 1288, 1289, 1290, 1291,
- 1292, 1294, 1293, 1295, 1296, 1297, 1298, 1299, 1300, 1301, 1302, 1303,
- 1304, 1305, 1306, 1307, 1213, 1214, 1215, 1254, 1255, 1256, 1308, 1309,
- 1429, 1428, 1427, 1426, 1181, 60, 62, 76, 1430, 1431, 1432, 1393, 1433,
- 1434, 1435, 1436, 1216, 112, 111, 110, 1113, 61, 220, 199, 296, 200, 136,
- 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151,
- 152, 153, 132, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165,
- 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180,
- 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195,
- 196, 197, 198, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212,
- 134, 213, 214, 215, 216, 217, 218, 219, 221, 222, 223, 224, 225, 226, 227,
- 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242,
- 389, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256,
- 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271,
- 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286,
- 287, 288, 289, 290, 291, 292, 293, 294, 295, 297, 485, 390, 392, 393, 394,
- 395, 396, 391, 397, 399, 398, 400, 401, 402, 403, 404, 405, 406, 407, 409,
- 408, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423,
- 424, 426, 427, 425, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438,
- 439, 441, 440, 443, 442, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453,
- 454, 455, 456, 458, 457, 459, 460, 461, 463, 462, 464, 465, 466, 467, 468,
- 469, 471, 470, 472, 473, 474, 475, 476, 133, 477, 478, 480, 479, 481, 482,
- 483, 484, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310,
- 311, 312, 313, 314, 315, 316, 321, 319, 318, 320, 317, 322, 323, 324, 325,
- 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340,
- 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355,
- 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370,
- 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 135,
- 385, 386, 387, 388, 727, 594, 595, 560, 568, 562, 569, 591, 566, 590, 587,
- 570, 571, 564, 561, 592, 588, 572, 589, 573, 575, 576, 565, 577, 578, 580,
- 581, 582, 584, 579, 585, 586, 563, 583, 574, 567, 593, 1324, 1323, 652,
- 1159, 63, 1187, 1425, 1422, 1424, 1423, 1421, 109, 546, 503, 544, 505, 504,
- 543, 545, 486, 487, 488, 511, 512, 513, 514, 515, 516, 489, 517, 518, 519,
- 520, 521, 522, 523, 524, 525, 490, 528, 529, 526, 527, 530, 531, 532, 533,
- 534, 535, 537, 538, 536, 539, 540, 547, 548, 557, 502, 491, 492, 493, 494,
- 495, 496, 497, 499, 500, 498, 501, 542, 509, 510, 506, 507, 541, 508, 549,
- 550, 556, 551, 552, 553, 554, 555, 1122, 1137, 1138, 1152, 1139, 1140, 1141,
- 1135, 1133, 1124, 1128, 1132, 1130, 1136, 1125, 1126, 1127, 1129, 1131,
- 1134, 1142, 1143, 1144, 1145, 1146, 1147, 1123, 1148, 1150, 1149, 1151,
- 1155, 1170, 638, 636, 640, 707, 702, 605, 673, 666, 723, 661, 706, 703, 655,
- 665, 708, 709, 710, 603, 672, 718, 712, 720, 724, 711, 713, 716, 719, 715,
- 717, 721, 714, 615, 687, 684, 688, 626, 616, 679, 604, 625, 629, 686, 601,
- 685, 683, 682, 617, 729, 697, 677, 733, 698, 696, 692, 694, 699, 701, 695,
- 693, 691, 624, 600, 690, 639, 689, 664, 722, 657, 613, 618, 667, 669, 648,
- 651, 630, 650, 659, 660, 656, 670, 658, 635, 678, 674, 675, 671, 649, 637,
- 642, 619, 646, 647, 643, 620, 631, 668, 614, 676, 641, 634, 662, 725, 653,
- 700, 663, 731, 732, 704, 730, 627, 654, 606, 633, 728, 632, 705, 644, 680,
- 681, 628, 645, 726, 602, 610, 607, 609, 1189, 113, 58, 59, 10, 11, 13, 12,
- 2, 14, 15, 16, 17, 18, 19, 20, 21, 3, 22, 23, 4, 24, 28, 25, 26, 27, 29, 30,
- 31, 5, 32, 33, 34, 35, 6, 39, 36, 37, 38, 40, 7, 41, 46, 47, 42, 43, 44, 45,
- 8, 51, 48, 49, 50, 52, 9, 53, 54, 55, 57, 56, 1, 1232, 1242, 1231, 1252,
- 1223, 1222, 1251, 1245, 1250, 1225, 1239, 1224, 1248, 1220, 1219, 1249,
- 1221, 1226, 1227, 1230, 1217, 1253, 1243, 1234, 1235, 1237, 1233, 1236,
- 1246, 1228, 1229, 1238, 1218, 1241, 1240, 1244, 1247, 1117, 599, 623, 1198,
- 115, 114, 116, 117, 118, 119, 120, 121, 123, 122, 558, 559, 596, 734, 735,
- 736, 1112, 1114, 1115, 1116, 1118, 1119, 1120, 1121, 1153, 1196, 1194, 1195,
- 1154, 1156, 1197, 1158, 1160, 1157, 1161, 1162, 1163, 1199, 1164, 1165,
- 1166, 1167, 1168, 1169, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178,
- 1190, 1179, 1180, 1182, 1183, 1184, 1185, 1186, 1188, 1192, 1191, 1193
- ],
- "version": "5.9.3"
-}
+{"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.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.es2025.float16.d.ts","../../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/@types/react/global.d.ts","../../../node_modules/csstype/index.d.ts","../../../node_modules/@types/react/index.d.ts","../../../node_modules/lucide-react/dist/lucide-react.d.ts","../../../node_modules/@radix-ui/react-accessible-icon/dist/index.d.mts","../../../node_modules/@radix-ui/react-accordion/node_modules/@radix-ui/react-context/dist/index.d.mts","../../../node_modules/@radix-ui/react-accordion/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-collapsible/node_modules/@radix-ui/react-context/dist/index.d.mts","../../../node_modules/@radix-ui/react-collapsible/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-collapsible/dist/index.d.mts","../../../node_modules/@radix-ui/react-accordion/dist/index.d.mts","../../../node_modules/@radix-ui/react-alert-dialog/node_modules/@radix-ui/react-context/dist/index.d.mts","../../../node_modules/@radix-ui/react-dialog/node_modules/@radix-ui/react-context/dist/index.d.mts","../../../node_modules/@radix-ui/react-dismissable-layer/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-dismissable-layer/dist/index.d.mts","../../../node_modules/@radix-ui/react-focus-scope/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-focus-scope/dist/index.d.mts","../../../node_modules/@radix-ui/react-portal/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-portal/dist/index.d.mts","../../../node_modules/@radix-ui/react-dialog/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-dialog/dist/index.d.mts","../../../node_modules/@radix-ui/react-alert-dialog/dist/index.d.mts","../../../node_modules/@radix-ui/react-aspect-ratio/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-aspect-ratio/dist/index.d.mts","../../../node_modules/radix-ui/node_modules/@radix-ui/react-context/dist/index.d.mts","../../../node_modules/radix-ui/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/radix-ui/node_modules/@radix-ui/react-avatar/dist/index.d.mts","../../../node_modules/@types/react/jsx-runtime.d.ts","../../../node_modules/@radix-ui/react-checkbox/node_modules/@radix-ui/react-context/dist/index.d.mts","../../../node_modules/@radix-ui/react-checkbox/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-checkbox/dist/index.d.mts","../../../node_modules/@radix-ui/react-context-menu/node_modules/@radix-ui/react-context/dist/index.d.mts","../../../node_modules/@radix-ui/react-context-menu/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-menu/node_modules/@radix-ui/react-context/dist/index.d.mts","../../../node_modules/@radix-ui/react-popper/node_modules/@radix-ui/react-context/dist/index.d.mts","../../../node_modules/@radix-ui/react-arrow/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-arrow/dist/index.d.mts","../../../node_modules/@radix-ui/react-popper/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/rect/dist/index.d.mts","../../../node_modules/@radix-ui/react-popper/dist/index.d.mts","../../../node_modules/@radix-ui/react-menu/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-roving-focus/node_modules/@radix-ui/react-context/dist/index.d.mts","../../../node_modules/@radix-ui/react-roving-focus/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-roving-focus/dist/index.d.mts","../../../node_modules/@radix-ui/react-menu/dist/index.d.mts","../../../node_modules/@radix-ui/react-context-menu/dist/index.d.mts","../../../node_modules/@radix-ui/react-direction/dist/index.d.mts","../../../node_modules/@radix-ui/react-dropdown-menu/node_modules/@radix-ui/react-context/dist/index.d.mts","../../../node_modules/@radix-ui/react-dropdown-menu/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-dropdown-menu/dist/index.d.mts","../../../node_modules/@radix-ui/react-form/node_modules/@radix-ui/react-context/dist/index.d.mts","../../../node_modules/@radix-ui/react-form/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-form/node_modules/@radix-ui/react-label/dist/index.d.mts","../../../node_modules/@radix-ui/react-form/dist/index.d.mts","../../../node_modules/@radix-ui/react-hover-card/node_modules/@radix-ui/react-context/dist/index.d.mts","../../../node_modules/@radix-ui/react-hover-card/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-hover-card/dist/index.d.mts","../../../node_modules/radix-ui/node_modules/@radix-ui/react-label/dist/index.d.mts","../../../node_modules/@radix-ui/react-menubar/node_modules/@radix-ui/react-context/dist/index.d.mts","../../../node_modules/@radix-ui/react-menubar/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-menubar/dist/index.d.mts","../../../node_modules/@radix-ui/react-navigation-menu/node_modules/@radix-ui/react-context/dist/index.d.mts","../../../node_modules/@radix-ui/react-navigation-menu/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-visually-hidden/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-visually-hidden/dist/index.d.mts","../../../node_modules/@radix-ui/react-navigation-menu/dist/index.d.mts","../../../node_modules/@radix-ui/react-one-time-password-field/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-one-time-password-field/dist/index.d.mts","../../../node_modules/@radix-ui/react-password-toggle-field/dist/index.d.mts","../../../node_modules/@radix-ui/react-popover/node_modules/@radix-ui/react-context/dist/index.d.mts","../../../node_modules/@radix-ui/react-popover/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-popover/dist/index.d.mts","../../../node_modules/radix-ui/node_modules/@radix-ui/react-progress/dist/index.d.mts","../../../node_modules/@radix-ui/react-radio-group/node_modules/@radix-ui/react-context/dist/index.d.mts","../../../node_modules/@radix-ui/react-radio-group/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-radio-group/dist/index.d.mts","../../../node_modules/@radix-ui/react-scroll-area/node_modules/@radix-ui/react-context/dist/index.d.mts","../../../node_modules/@radix-ui/react-scroll-area/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-scroll-area/dist/index.d.mts","../../../node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-context/dist/index.d.mts","../../../node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-select/dist/index.d.mts","../../../node_modules/radix-ui/node_modules/@radix-ui/react-separator/dist/index.d.mts","../../../node_modules/@radix-ui/react-slider/node_modules/@radix-ui/react-context/dist/index.d.mts","../../../node_modules/@radix-ui/react-slider/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-slider/dist/index.d.mts","../../../node_modules/radix-ui/node_modules/@radix-ui/react-slot/dist/index.d.mts","../../../node_modules/@radix-ui/react-switch/node_modules/@radix-ui/react-context/dist/index.d.mts","../../../node_modules/@radix-ui/react-switch/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-switch/dist/index.d.mts","../../../node_modules/@radix-ui/react-tabs/node_modules/@radix-ui/react-context/dist/index.d.mts","../../../node_modules/@radix-ui/react-tabs/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-tabs/dist/index.d.mts","../../../node_modules/@radix-ui/react-toast/node_modules/@radix-ui/react-context/dist/index.d.mts","../../../node_modules/@radix-ui/react-toast/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-toast/dist/index.d.mts","../../../node_modules/@radix-ui/react-toggle/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-toggle/dist/index.d.mts","../../../node_modules/@radix-ui/react-toggle-group/node_modules/@radix-ui/react-context/dist/index.d.mts","../../../node_modules/@radix-ui/react-toggle-group/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-toggle-group/dist/index.d.mts","../../../node_modules/@radix-ui/react-toolbar/node_modules/@radix-ui/react-context/dist/index.d.mts","../../../node_modules/@radix-ui/react-toolbar/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-toolbar/node_modules/@radix-ui/react-separator/dist/index.d.mts","../../../node_modules/@radix-ui/react-toolbar/dist/index.d.mts","../../../node_modules/@radix-ui/react-tooltip/node_modules/@radix-ui/react-context/dist/index.d.mts","../../../node_modules/@radix-ui/react-tooltip/node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-tooltip/dist/index.d.mts","../../../node_modules/radix-ui/dist/index.d.mts","../../../node_modules/clsx/clsx.d.mts","../../../node_modules/class-variance-authority/dist/types.d.ts","../../../node_modules/class-variance-authority/dist/index.d.ts","../../../node_modules/tailwind-merge/dist/types.d.ts","../src/alert.tsx","../src/alert-dialog.tsx","../src/aspect-ratio.tsx","../src/avatar.tsx","../src/badge.tsx","../../../node_modules/@radix-ui/react-context/dist/index.d.mts","../../../node_modules/@radix-ui/react-primitive/dist/index.d.mts","../../../node_modules/@radix-ui/react-avatar/dist/index.d.mts","../src/based-avatar.tsx","../../../node_modules/@radix-ui/react-progress/dist/index.d.mts","../src/based-progress.tsx","../src/breadcrumb.tsx","../src/button.tsx","../src/button-group.tsx","../../../node_modules/@date-fns/tz/constants/index.d.ts","../../../node_modules/@date-fns/tz/date/index.d.ts","../../../node_modules/@date-fns/tz/date/mini.d.ts","../../../node_modules/@date-fns/tz/tz/index.d.ts","../../../node_modules/@date-fns/tz/tzOffset/index.d.ts","../../../node_modules/@date-fns/tz/tzScan/index.d.ts","../../../node_modules/@date-fns/tz/tzName/index.d.ts","../../../node_modules/@date-fns/tz/index.d.ts","../../../node_modules/date-fns/constants.d.ts","../../../node_modules/date-fns/locale/types.d.ts","../../../node_modules/date-fns/fp/types.d.ts","../../../node_modules/date-fns/types.d.ts","../../../node_modules/date-fns/add.d.ts","../../../node_modules/date-fns/addBusinessDays.d.ts","../../../node_modules/date-fns/addDays.d.ts","../../../node_modules/date-fns/addHours.d.ts","../../../node_modules/date-fns/addISOWeekYears.d.ts","../../../node_modules/date-fns/addMilliseconds.d.ts","../../../node_modules/date-fns/addMinutes.d.ts","../../../node_modules/date-fns/addMonths.d.ts","../../../node_modules/date-fns/addQuarters.d.ts","../../../node_modules/date-fns/addSeconds.d.ts","../../../node_modules/date-fns/addWeeks.d.ts","../../../node_modules/date-fns/addYears.d.ts","../../../node_modules/date-fns/areIntervalsOverlapping.d.ts","../../../node_modules/date-fns/clamp.d.ts","../../../node_modules/date-fns/closestIndexTo.d.ts","../../../node_modules/date-fns/closestTo.d.ts","../../../node_modules/date-fns/compareAsc.d.ts","../../../node_modules/date-fns/compareDesc.d.ts","../../../node_modules/date-fns/constructFrom.d.ts","../../../node_modules/date-fns/constructNow.d.ts","../../../node_modules/date-fns/daysToWeeks.d.ts","../../../node_modules/date-fns/differenceInBusinessDays.d.ts","../../../node_modules/date-fns/differenceInCalendarDays.d.ts","../../../node_modules/date-fns/differenceInCalendarISOWeekYears.d.ts","../../../node_modules/date-fns/differenceInCalendarISOWeeks.d.ts","../../../node_modules/date-fns/differenceInCalendarMonths.d.ts","../../../node_modules/date-fns/differenceInCalendarQuarters.d.ts","../../../node_modules/date-fns/differenceInCalendarWeeks.d.ts","../../../node_modules/date-fns/differenceInCalendarYears.d.ts","../../../node_modules/date-fns/differenceInDays.d.ts","../../../node_modules/date-fns/differenceInHours.d.ts","../../../node_modules/date-fns/differenceInISOWeekYears.d.ts","../../../node_modules/date-fns/differenceInMilliseconds.d.ts","../../../node_modules/date-fns/differenceInMinutes.d.ts","../../../node_modules/date-fns/differenceInMonths.d.ts","../../../node_modules/date-fns/differenceInQuarters.d.ts","../../../node_modules/date-fns/differenceInSeconds.d.ts","../../../node_modules/date-fns/differenceInWeeks.d.ts","../../../node_modules/date-fns/differenceInYears.d.ts","../../../node_modules/date-fns/eachDayOfInterval.d.ts","../../../node_modules/date-fns/eachHourOfInterval.d.ts","../../../node_modules/date-fns/eachMinuteOfInterval.d.ts","../../../node_modules/date-fns/eachMonthOfInterval.d.ts","../../../node_modules/date-fns/eachQuarterOfInterval.d.ts","../../../node_modules/date-fns/eachWeekOfInterval.d.ts","../../../node_modules/date-fns/eachWeekendOfInterval.d.ts","../../../node_modules/date-fns/eachWeekendOfMonth.d.ts","../../../node_modules/date-fns/eachWeekendOfYear.d.ts","../../../node_modules/date-fns/eachYearOfInterval.d.ts","../../../node_modules/date-fns/endOfDay.d.ts","../../../node_modules/date-fns/endOfDecade.d.ts","../../../node_modules/date-fns/endOfHour.d.ts","../../../node_modules/date-fns/endOfISOWeek.d.ts","../../../node_modules/date-fns/endOfISOWeekYear.d.ts","../../../node_modules/date-fns/endOfMinute.d.ts","../../../node_modules/date-fns/endOfMonth.d.ts","../../../node_modules/date-fns/endOfQuarter.d.ts","../../../node_modules/date-fns/endOfSecond.d.ts","../../../node_modules/date-fns/endOfToday.d.ts","../../../node_modules/date-fns/endOfTomorrow.d.ts","../../../node_modules/date-fns/endOfWeek.d.ts","../../../node_modules/date-fns/endOfYear.d.ts","../../../node_modules/date-fns/endOfYesterday.d.ts","../../../node_modules/date-fns/_lib/format/formatters.d.ts","../../../node_modules/date-fns/_lib/format/longFormatters.d.ts","../../../node_modules/date-fns/format.d.ts","../../../node_modules/date-fns/formatDistance.d.ts","../../../node_modules/date-fns/formatDistanceStrict.d.ts","../../../node_modules/date-fns/formatDistanceToNow.d.ts","../../../node_modules/date-fns/formatDistanceToNowStrict.d.ts","../../../node_modules/date-fns/formatDuration.d.ts","../../../node_modules/date-fns/formatISO.d.ts","../../../node_modules/date-fns/formatISO9075.d.ts","../../../node_modules/date-fns/formatISODuration.d.ts","../../../node_modules/date-fns/formatRFC3339.d.ts","../../../node_modules/date-fns/formatRFC7231.d.ts","../../../node_modules/date-fns/formatRelative.d.ts","../../../node_modules/date-fns/fromUnixTime.d.ts","../../../node_modules/date-fns/getDate.d.ts","../../../node_modules/date-fns/getDay.d.ts","../../../node_modules/date-fns/getDayOfYear.d.ts","../../../node_modules/date-fns/getDaysInMonth.d.ts","../../../node_modules/date-fns/getDaysInYear.d.ts","../../../node_modules/date-fns/getDecade.d.ts","../../../node_modules/date-fns/_lib/defaultOptions.d.ts","../../../node_modules/date-fns/getDefaultOptions.d.ts","../../../node_modules/date-fns/getHours.d.ts","../../../node_modules/date-fns/getISODay.d.ts","../../../node_modules/date-fns/getISOWeek.d.ts","../../../node_modules/date-fns/getISOWeekYear.d.ts","../../../node_modules/date-fns/getISOWeeksInYear.d.ts","../../../node_modules/date-fns/getMilliseconds.d.ts","../../../node_modules/date-fns/getMinutes.d.ts","../../../node_modules/date-fns/getMonth.d.ts","../../../node_modules/date-fns/getOverlappingDaysInIntervals.d.ts","../../../node_modules/date-fns/getQuarter.d.ts","../../../node_modules/date-fns/getSeconds.d.ts","../../../node_modules/date-fns/getTime.d.ts","../../../node_modules/date-fns/getUnixTime.d.ts","../../../node_modules/date-fns/getWeek.d.ts","../../../node_modules/date-fns/getWeekOfMonth.d.ts","../../../node_modules/date-fns/getWeekYear.d.ts","../../../node_modules/date-fns/getWeeksInMonth.d.ts","../../../node_modules/date-fns/getYear.d.ts","../../../node_modules/date-fns/hoursToMilliseconds.d.ts","../../../node_modules/date-fns/hoursToMinutes.d.ts","../../../node_modules/date-fns/hoursToSeconds.d.ts","../../../node_modules/date-fns/interval.d.ts","../../../node_modules/date-fns/intervalToDuration.d.ts","../../../node_modules/date-fns/intlFormat.d.ts","../../../node_modules/date-fns/intlFormatDistance.d.ts","../../../node_modules/date-fns/isAfter.d.ts","../../../node_modules/date-fns/isBefore.d.ts","../../../node_modules/date-fns/isDate.d.ts","../../../node_modules/date-fns/isEqual.d.ts","../../../node_modules/date-fns/isExists.d.ts","../../../node_modules/date-fns/isFirstDayOfMonth.d.ts","../../../node_modules/date-fns/isFriday.d.ts","../../../node_modules/date-fns/isFuture.d.ts","../../../node_modules/date-fns/isLastDayOfMonth.d.ts","../../../node_modules/date-fns/isLeapYear.d.ts","../../../node_modules/date-fns/isMatch.d.ts","../../../node_modules/date-fns/isMonday.d.ts","../../../node_modules/date-fns/isPast.d.ts","../../../node_modules/date-fns/isSameDay.d.ts","../../../node_modules/date-fns/isSameHour.d.ts","../../../node_modules/date-fns/isSameISOWeek.d.ts","../../../node_modules/date-fns/isSameISOWeekYear.d.ts","../../../node_modules/date-fns/isSameMinute.d.ts","../../../node_modules/date-fns/isSameMonth.d.ts","../../../node_modules/date-fns/isSameQuarter.d.ts","../../../node_modules/date-fns/isSameSecond.d.ts","../../../node_modules/date-fns/isSameWeek.d.ts","../../../node_modules/date-fns/isSameYear.d.ts","../../../node_modules/date-fns/isSaturday.d.ts","../../../node_modules/date-fns/isSunday.d.ts","../../../node_modules/date-fns/isThisHour.d.ts","../../../node_modules/date-fns/isThisISOWeek.d.ts","../../../node_modules/date-fns/isThisMinute.d.ts","../../../node_modules/date-fns/isThisMonth.d.ts","../../../node_modules/date-fns/isThisQuarter.d.ts","../../../node_modules/date-fns/isThisSecond.d.ts","../../../node_modules/date-fns/isThisWeek.d.ts","../../../node_modules/date-fns/isThisYear.d.ts","../../../node_modules/date-fns/isThursday.d.ts","../../../node_modules/date-fns/isToday.d.ts","../../../node_modules/date-fns/isTomorrow.d.ts","../../../node_modules/date-fns/isTuesday.d.ts","../../../node_modules/date-fns/isValid.d.ts","../../../node_modules/date-fns/isWednesday.d.ts","../../../node_modules/date-fns/isWeekend.d.ts","../../../node_modules/date-fns/isWithinInterval.d.ts","../../../node_modules/date-fns/isYesterday.d.ts","../../../node_modules/date-fns/lastDayOfDecade.d.ts","../../../node_modules/date-fns/lastDayOfISOWeek.d.ts","../../../node_modules/date-fns/lastDayOfISOWeekYear.d.ts","../../../node_modules/date-fns/lastDayOfMonth.d.ts","../../../node_modules/date-fns/lastDayOfQuarter.d.ts","../../../node_modules/date-fns/lastDayOfWeek.d.ts","../../../node_modules/date-fns/lastDayOfYear.d.ts","../../../node_modules/date-fns/_lib/format/lightFormatters.d.ts","../../../node_modules/date-fns/lightFormat.d.ts","../../../node_modules/date-fns/max.d.ts","../../../node_modules/date-fns/milliseconds.d.ts","../../../node_modules/date-fns/millisecondsToHours.d.ts","../../../node_modules/date-fns/millisecondsToMinutes.d.ts","../../../node_modules/date-fns/millisecondsToSeconds.d.ts","../../../node_modules/date-fns/min.d.ts","../../../node_modules/date-fns/minutesToHours.d.ts","../../../node_modules/date-fns/minutesToMilliseconds.d.ts","../../../node_modules/date-fns/minutesToSeconds.d.ts","../../../node_modules/date-fns/monthsToQuarters.d.ts","../../../node_modules/date-fns/monthsToYears.d.ts","../../../node_modules/date-fns/nextDay.d.ts","../../../node_modules/date-fns/nextFriday.d.ts","../../../node_modules/date-fns/nextMonday.d.ts","../../../node_modules/date-fns/nextSaturday.d.ts","../../../node_modules/date-fns/nextSunday.d.ts","../../../node_modules/date-fns/nextThursday.d.ts","../../../node_modules/date-fns/nextTuesday.d.ts","../../../node_modules/date-fns/nextWednesday.d.ts","../../../node_modules/date-fns/parse/_lib/types.d.ts","../../../node_modules/date-fns/parse/_lib/Setter.d.ts","../../../node_modules/date-fns/parse/_lib/Parser.d.ts","../../../node_modules/date-fns/parse/_lib/parsers.d.ts","../../../node_modules/date-fns/parse.d.ts","../../../node_modules/date-fns/parseISO.d.ts","../../../node_modules/date-fns/parseJSON.d.ts","../../../node_modules/date-fns/previousDay.d.ts","../../../node_modules/date-fns/previousFriday.d.ts","../../../node_modules/date-fns/previousMonday.d.ts","../../../node_modules/date-fns/previousSaturday.d.ts","../../../node_modules/date-fns/previousSunday.d.ts","../../../node_modules/date-fns/previousThursday.d.ts","../../../node_modules/date-fns/previousTuesday.d.ts","../../../node_modules/date-fns/previousWednesday.d.ts","../../../node_modules/date-fns/quartersToMonths.d.ts","../../../node_modules/date-fns/quartersToYears.d.ts","../../../node_modules/date-fns/roundToNearestHours.d.ts","../../../node_modules/date-fns/roundToNearestMinutes.d.ts","../../../node_modules/date-fns/secondsToHours.d.ts","../../../node_modules/date-fns/secondsToMilliseconds.d.ts","../../../node_modules/date-fns/secondsToMinutes.d.ts","../../../node_modules/date-fns/set.d.ts","../../../node_modules/date-fns/setDate.d.ts","../../../node_modules/date-fns/setDay.d.ts","../../../node_modules/date-fns/setDayOfYear.d.ts","../../../node_modules/date-fns/setDefaultOptions.d.ts","../../../node_modules/date-fns/setHours.d.ts","../../../node_modules/date-fns/setISODay.d.ts","../../../node_modules/date-fns/setISOWeek.d.ts","../../../node_modules/date-fns/setISOWeekYear.d.ts","../../../node_modules/date-fns/setMilliseconds.d.ts","../../../node_modules/date-fns/setMinutes.d.ts","../../../node_modules/date-fns/setMonth.d.ts","../../../node_modules/date-fns/setQuarter.d.ts","../../../node_modules/date-fns/setSeconds.d.ts","../../../node_modules/date-fns/setWeek.d.ts","../../../node_modules/date-fns/setWeekYear.d.ts","../../../node_modules/date-fns/setYear.d.ts","../../../node_modules/date-fns/startOfDay.d.ts","../../../node_modules/date-fns/startOfDecade.d.ts","../../../node_modules/date-fns/startOfHour.d.ts","../../../node_modules/date-fns/startOfISOWeek.d.ts","../../../node_modules/date-fns/startOfISOWeekYear.d.ts","../../../node_modules/date-fns/startOfMinute.d.ts","../../../node_modules/date-fns/startOfMonth.d.ts","../../../node_modules/date-fns/startOfQuarter.d.ts","../../../node_modules/date-fns/startOfSecond.d.ts","../../../node_modules/date-fns/startOfToday.d.ts","../../../node_modules/date-fns/startOfTomorrow.d.ts","../../../node_modules/date-fns/startOfWeek.d.ts","../../../node_modules/date-fns/startOfWeekYear.d.ts","../../../node_modules/date-fns/startOfYear.d.ts","../../../node_modules/date-fns/startOfYesterday.d.ts","../../../node_modules/date-fns/sub.d.ts","../../../node_modules/date-fns/subBusinessDays.d.ts","../../../node_modules/date-fns/subDays.d.ts","../../../node_modules/date-fns/subHours.d.ts","../../../node_modules/date-fns/subISOWeekYears.d.ts","../../../node_modules/date-fns/subMilliseconds.d.ts","../../../node_modules/date-fns/subMinutes.d.ts","../../../node_modules/date-fns/subMonths.d.ts","../../../node_modules/date-fns/subQuarters.d.ts","../../../node_modules/date-fns/subSeconds.d.ts","../../../node_modules/date-fns/subWeeks.d.ts","../../../node_modules/date-fns/subYears.d.ts","../../../node_modules/date-fns/toDate.d.ts","../../../node_modules/date-fns/transpose.d.ts","../../../node_modules/date-fns/weeksToDays.d.ts","../../../node_modules/date-fns/yearsToDays.d.ts","../../../node_modules/date-fns/yearsToMonths.d.ts","../../../node_modules/date-fns/yearsToQuarters.d.ts","../../../node_modules/date-fns/index.d.ts","../../../node_modules/date-fns/locale/af.d.ts","../../../node_modules/date-fns/locale/ar.d.ts","../../../node_modules/date-fns/locale/ar-DZ.d.ts","../../../node_modules/date-fns/locale/ar-EG.d.ts","../../../node_modules/date-fns/locale/ar-MA.d.ts","../../../node_modules/date-fns/locale/ar-SA.d.ts","../../../node_modules/date-fns/locale/ar-TN.d.ts","../../../node_modules/date-fns/locale/az.d.ts","../../../node_modules/date-fns/locale/be.d.ts","../../../node_modules/date-fns/locale/be-tarask.d.ts","../../../node_modules/date-fns/locale/bg.d.ts","../../../node_modules/date-fns/locale/bn.d.ts","../../../node_modules/date-fns/locale/bs.d.ts","../../../node_modules/date-fns/locale/ca.d.ts","../../../node_modules/date-fns/locale/ckb.d.ts","../../../node_modules/date-fns/locale/cs.d.ts","../../../node_modules/date-fns/locale/cy.d.ts","../../../node_modules/date-fns/locale/da.d.ts","../../../node_modules/date-fns/locale/de.d.ts","../../../node_modules/date-fns/locale/de-AT.d.ts","../../../node_modules/date-fns/locale/el.d.ts","../../../node_modules/date-fns/locale/en-AU.d.ts","../../../node_modules/date-fns/locale/en-CA.d.ts","../../../node_modules/date-fns/locale/en-GB.d.ts","../../../node_modules/date-fns/locale/en-IE.d.ts","../../../node_modules/date-fns/locale/en-IN.d.ts","../../../node_modules/date-fns/locale/en-NZ.d.ts","../../../node_modules/date-fns/locale/en-US.d.ts","../../../node_modules/date-fns/locale/en-ZA.d.ts","../../../node_modules/date-fns/locale/eo.d.ts","../../../node_modules/date-fns/locale/es.d.ts","../../../node_modules/date-fns/locale/et.d.ts","../../../node_modules/date-fns/locale/eu.d.ts","../../../node_modules/date-fns/locale/fa-IR.d.ts","../../../node_modules/date-fns/locale/fi.d.ts","../../../node_modules/date-fns/locale/fr.d.ts","../../../node_modules/date-fns/locale/fr-CA.d.ts","../../../node_modules/date-fns/locale/fr-CH.d.ts","../../../node_modules/date-fns/locale/fy.d.ts","../../../node_modules/date-fns/locale/gd.d.ts","../../../node_modules/date-fns/locale/gl.d.ts","../../../node_modules/date-fns/locale/gu.d.ts","../../../node_modules/date-fns/locale/he.d.ts","../../../node_modules/date-fns/locale/hi.d.ts","../../../node_modules/date-fns/locale/hr.d.ts","../../../node_modules/date-fns/locale/ht.d.ts","../../../node_modules/date-fns/locale/hu.d.ts","../../../node_modules/date-fns/locale/hy.d.ts","../../../node_modules/date-fns/locale/id.d.ts","../../../node_modules/date-fns/locale/is.d.ts","../../../node_modules/date-fns/locale/it.d.ts","../../../node_modules/date-fns/locale/it-CH.d.ts","../../../node_modules/date-fns/locale/ja.d.ts","../../../node_modules/date-fns/locale/ja-Hira.d.ts","../../../node_modules/date-fns/locale/ka.d.ts","../../../node_modules/date-fns/locale/kk.d.ts","../../../node_modules/date-fns/locale/km.d.ts","../../../node_modules/date-fns/locale/kn.d.ts","../../../node_modules/date-fns/locale/ko.d.ts","../../../node_modules/date-fns/locale/lb.d.ts","../../../node_modules/date-fns/locale/lt.d.ts","../../../node_modules/date-fns/locale/lv.d.ts","../../../node_modules/date-fns/locale/mk.d.ts","../../../node_modules/date-fns/locale/mn.d.ts","../../../node_modules/date-fns/locale/ms.d.ts","../../../node_modules/date-fns/locale/mt.d.ts","../../../node_modules/date-fns/locale/nb.d.ts","../../../node_modules/date-fns/locale/nl.d.ts","../../../node_modules/date-fns/locale/nl-BE.d.ts","../../../node_modules/date-fns/locale/nn.d.ts","../../../node_modules/date-fns/locale/oc.d.ts","../../../node_modules/date-fns/locale/pl.d.ts","../../../node_modules/date-fns/locale/pt.d.ts","../../../node_modules/date-fns/locale/pt-BR.d.ts","../../../node_modules/date-fns/locale/ro.d.ts","../../../node_modules/date-fns/locale/ru.d.ts","../../../node_modules/date-fns/locale/se.d.ts","../../../node_modules/date-fns/locale/sk.d.ts","../../../node_modules/date-fns/locale/sl.d.ts","../../../node_modules/date-fns/locale/sq.d.ts","../../../node_modules/date-fns/locale/sr.d.ts","../../../node_modules/date-fns/locale/sr-Latn.d.ts","../../../node_modules/date-fns/locale/sv.d.ts","../../../node_modules/date-fns/locale/ta.d.ts","../../../node_modules/date-fns/locale/te.d.ts","../../../node_modules/date-fns/locale/th.d.ts","../../../node_modules/date-fns/locale/tr.d.ts","../../../node_modules/date-fns/locale/ug.d.ts","../../../node_modules/date-fns/locale/uk.d.ts","../../../node_modules/date-fns/locale/uz.d.ts","../../../node_modules/date-fns/locale/uz-Cyrl.d.ts","../../../node_modules/date-fns/locale/vi.d.ts","../../../node_modules/date-fns/locale/zh-CN.d.ts","../../../node_modules/date-fns/locale/zh-HK.d.ts","../../../node_modules/date-fns/locale/zh-TW.d.ts","../../../node_modules/date-fns/locale.d.ts","../../../node_modules/react-day-picker/dist/esm/components/Button.d.ts","../../../node_modules/react-day-picker/dist/esm/components/CaptionLabel.d.ts","../../../node_modules/react-day-picker/dist/esm/components/Chevron.d.ts","../../../node_modules/react-day-picker/dist/esm/components/MonthCaption.d.ts","../../../node_modules/react-day-picker/dist/esm/components/Week.d.ts","../../../node_modules/react-day-picker/dist/esm/labels/labelDayButton.d.ts","../../../node_modules/react-day-picker/dist/esm/labels/labelGrid.d.ts","../../../node_modules/react-day-picker/dist/esm/labels/labelGridcell.d.ts","../../../node_modules/react-day-picker/dist/esm/labels/labelMonthDropdown.d.ts","../../../node_modules/react-day-picker/dist/esm/labels/labelNav.d.ts","../../../node_modules/react-day-picker/dist/esm/labels/labelNext.d.ts","../../../node_modules/react-day-picker/dist/esm/labels/labelPrevious.d.ts","../../../node_modules/react-day-picker/dist/esm/labels/labelWeekday.d.ts","../../../node_modules/react-day-picker/dist/esm/labels/labelWeekNumber.d.ts","../../../node_modules/react-day-picker/dist/esm/labels/labelWeekNumberHeader.d.ts","../../../node_modules/react-day-picker/dist/esm/labels/labelYearDropdown.d.ts","../../../node_modules/react-day-picker/dist/esm/labels/index.d.ts","../../../node_modules/react-day-picker/dist/esm/UI.d.ts","../../../node_modules/react-day-picker/dist/esm/classes/CalendarWeek.d.ts","../../../node_modules/react-day-picker/dist/esm/classes/CalendarMonth.d.ts","../../../node_modules/react-day-picker/dist/esm/types/props.d.ts","../../../node_modules/react-day-picker/dist/esm/types/selection.d.ts","../../../node_modules/react-day-picker/dist/esm/useDayPicker.d.ts","../../../node_modules/react-day-picker/dist/esm/types/deprecated.d.ts","../../../node_modules/react-day-picker/dist/esm/types/index.d.ts","../../../node_modules/react-day-picker/dist/esm/components/Day.d.ts","../../../node_modules/react-day-picker/dist/esm/components/DayButton.d.ts","../../../node_modules/react-day-picker/dist/esm/components/Dropdown.d.ts","../../../node_modules/react-day-picker/dist/esm/components/DropdownNav.d.ts","../../../node_modules/react-day-picker/dist/esm/components/Footer.d.ts","../../../node_modules/react-day-picker/dist/esm/components/Month.d.ts","../../../node_modules/react-day-picker/dist/esm/components/MonthGrid.d.ts","../../../node_modules/react-day-picker/dist/esm/components/Months.d.ts","../../../node_modules/react-day-picker/dist/esm/components/MonthsDropdown.d.ts","../../../node_modules/react-day-picker/dist/esm/components/Nav.d.ts","../../../node_modules/react-day-picker/dist/esm/components/NextMonthButton.d.ts","../../../node_modules/react-day-picker/dist/esm/components/Option.d.ts","../../../node_modules/react-day-picker/dist/esm/components/PreviousMonthButton.d.ts","../../../node_modules/react-day-picker/dist/esm/components/Root.d.ts","../../../node_modules/react-day-picker/dist/esm/components/Select.d.ts","../../../node_modules/react-day-picker/dist/esm/components/Weekday.d.ts","../../../node_modules/react-day-picker/dist/esm/components/Weekdays.d.ts","../../../node_modules/react-day-picker/dist/esm/components/WeekNumber.d.ts","../../../node_modules/react-day-picker/dist/esm/components/WeekNumberHeader.d.ts","../../../node_modules/react-day-picker/dist/esm/components/Weeks.d.ts","../../../node_modules/react-day-picker/dist/esm/components/YearsDropdown.d.ts","../../../node_modules/react-day-picker/dist/esm/components/custom-components.d.ts","../../../node_modules/react-day-picker/dist/esm/formatters/formatCaption.d.ts","../../../node_modules/react-day-picker/dist/esm/formatters/formatDay.d.ts","../../../node_modules/react-day-picker/dist/esm/formatters/formatMonthDropdown.d.ts","../../../node_modules/react-day-picker/dist/esm/formatters/formatWeekdayName.d.ts","../../../node_modules/react-day-picker/dist/esm/formatters/formatWeekNumber.d.ts","../../../node_modules/react-day-picker/dist/esm/formatters/formatWeekNumberHeader.d.ts","../../../node_modules/react-day-picker/dist/esm/formatters/formatYearDropdown.d.ts","../../../node_modules/react-day-picker/dist/esm/formatters/index.d.ts","../../../node_modules/react-day-picker/dist/esm/types/shared.d.ts","../../../node_modules/react-day-picker/dist/esm/locale/en-US.d.ts","../../../node_modules/react-day-picker/dist/esm/classes/DateLib.d.ts","../../../node_modules/react-day-picker/dist/esm/classes/CalendarDay.d.ts","../../../node_modules/react-day-picker/dist/esm/classes/index.d.ts","../../../node_modules/react-day-picker/dist/esm/DayPicker.d.ts","../../../node_modules/react-day-picker/dist/esm/helpers/getDefaultClassNames.d.ts","../../../node_modules/react-day-picker/dist/esm/helpers/index.d.ts","../../../node_modules/react-day-picker/dist/esm/utils/addToRange.d.ts","../../../node_modules/react-day-picker/dist/esm/utils/dateMatchModifiers.d.ts","../../../node_modules/react-day-picker/dist/esm/utils/rangeContainsDayOfWeek.d.ts","../../../node_modules/react-day-picker/dist/esm/utils/rangeContainsModifiers.d.ts","../../../node_modules/react-day-picker/dist/esm/utils/rangeIncludesDate.d.ts","../../../node_modules/react-day-picker/dist/esm/utils/rangeOverlaps.d.ts","../../../node_modules/react-day-picker/dist/esm/utils/typeguards.d.ts","../../../node_modules/react-day-picker/dist/esm/utils/index.d.ts","../../../node_modules/react-day-picker/dist/esm/index.d.ts","../src/calendar.tsx","../src/card.tsx","../../../node_modules/embla-carousel/esm/components/Alignment.d.ts","../../../node_modules/embla-carousel/esm/components/NodeRects.d.ts","../../../node_modules/embla-carousel/esm/components/Axis.d.ts","../../../node_modules/embla-carousel/esm/components/SlidesToScroll.d.ts","../../../node_modules/embla-carousel/esm/components/Limit.d.ts","../../../node_modules/embla-carousel/esm/components/ScrollContain.d.ts","../../../node_modules/embla-carousel/esm/components/DragTracker.d.ts","../../../node_modules/embla-carousel/esm/components/utils.d.ts","../../../node_modules/embla-carousel/esm/components/Animations.d.ts","../../../node_modules/embla-carousel/esm/components/Counter.d.ts","../../../node_modules/embla-carousel/esm/components/EventHandler.d.ts","../../../node_modules/embla-carousel/esm/components/EventStore.d.ts","../../../node_modules/embla-carousel/esm/components/PercentOfView.d.ts","../../../node_modules/embla-carousel/esm/components/ResizeHandler.d.ts","../../../node_modules/embla-carousel/esm/components/Vector1d.d.ts","../../../node_modules/embla-carousel/esm/components/ScrollBody.d.ts","../../../node_modules/embla-carousel/esm/components/ScrollBounds.d.ts","../../../node_modules/embla-carousel/esm/components/ScrollLooper.d.ts","../../../node_modules/embla-carousel/esm/components/ScrollProgress.d.ts","../../../node_modules/embla-carousel/esm/components/SlideRegistry.d.ts","../../../node_modules/embla-carousel/esm/components/ScrollTarget.d.ts","../../../node_modules/embla-carousel/esm/components/ScrollTo.d.ts","../../../node_modules/embla-carousel/esm/components/SlideFocus.d.ts","../../../node_modules/embla-carousel/esm/components/Translate.d.ts","../../../node_modules/embla-carousel/esm/components/SlideLooper.d.ts","../../../node_modules/embla-carousel/esm/components/SlidesHandler.d.ts","../../../node_modules/embla-carousel/esm/components/SlidesInView.d.ts","../../../node_modules/embla-carousel/esm/components/Engine.d.ts","../../../node_modules/embla-carousel/esm/components/OptionsHandler.d.ts","../../../node_modules/embla-carousel/esm/components/Plugins.d.ts","../../../node_modules/embla-carousel/esm/components/EmblaCarousel.d.ts","../../../node_modules/embla-carousel/esm/components/DragHandler.d.ts","../../../node_modules/embla-carousel/esm/components/Options.d.ts","../../../node_modules/embla-carousel/esm/index.d.ts","../../../node_modules/embla-carousel-react/esm/components/useEmblaCarousel.d.ts","../../../node_modules/embla-carousel-react/esm/index.d.ts","../src/carousel.tsx","../../../node_modules/@types/d3-time/index.d.ts","../../../node_modules/@types/d3-scale/index.d.ts","../../../node_modules/victory-vendor/d3-scale.d.ts","../../../node_modules/recharts/types/shape/Dot.d.ts","../../../node_modules/recharts/types/component/Text.d.ts","../../../node_modules/recharts/types/zIndex/ZIndexLayer.d.ts","../../../node_modules/recharts/types/cartesian/getCartesianPosition.d.ts","../../../node_modules/recharts/types/component/Label.d.ts","../../../node_modules/recharts/types/cartesian/CartesianAxis.d.ts","../../../node_modules/recharts/types/util/scale/CustomScaleDefinition.d.ts","../../../node_modules/redux/dist/redux.d.ts","../../../node_modules/@reduxjs/toolkit/node_modules/immer/dist/immer.d.ts","../../../node_modules/reselect/dist/reselect.d.ts","../../../node_modules/redux-thunk/dist/redux-thunk.d.ts","../../../node_modules/@reduxjs/toolkit/dist/uncheckedindexed.ts","../../../node_modules/@reduxjs/toolkit/dist/index.d.mts","../../../node_modules/recharts/types/state/cartesianAxisSlice.d.ts","../../../node_modules/recharts/types/synchronisation/types.d.ts","../../../node_modules/recharts/types/chart/types.d.ts","../../../node_modules/recharts/types/component/DefaultTooltipContent.d.ts","../../../node_modules/recharts/types/context/brushUpdateContext.d.ts","../../../node_modules/recharts/types/state/chartDataSlice.d.ts","../../../node_modules/recharts/types/state/types/LineSettings.d.ts","../../../node_modules/recharts/types/state/types/ScatterSettings.d.ts","../../../node_modules/@types/d3-path/index.d.ts","../../../node_modules/@types/d3-shape/index.d.ts","../../../node_modules/victory-vendor/d3-shape.d.ts","../../../node_modules/recharts/types/shape/Curve.d.ts","../../../node_modules/recharts/types/component/LabelList.d.ts","../../../node_modules/recharts/types/component/DefaultLegendContent.d.ts","../../../node_modules/recharts/types/util/payload/getUniqPayload.d.ts","../../../node_modules/recharts/types/util/useElementOffset.d.ts","../../../node_modules/recharts/types/component/Legend.d.ts","../../../node_modules/recharts/types/state/legendSlice.d.ts","../../../node_modules/recharts/types/state/types/StackedGraphicalItem.d.ts","../../../node_modules/recharts/types/util/stacks/stackTypes.d.ts","../../../node_modules/recharts/types/util/scale/RechartsScale.d.ts","../../../node_modules/recharts/types/util/ChartUtils.d.ts","../../../node_modules/recharts/types/state/selectors/areaSelectors.d.ts","../../../node_modules/recharts/types/cartesian/Area.d.ts","../../../node_modules/recharts/types/state/types/AreaSettings.d.ts","../../../node_modules/recharts/types/animation/easing.d.ts","../../../node_modules/recharts/types/shape/Rectangle.d.ts","../../../node_modules/recharts/types/cartesian/Bar.d.ts","../../../node_modules/recharts/types/util/BarUtils.d.ts","../../../node_modules/recharts/types/state/types/BarSettings.d.ts","../../../node_modules/recharts/types/state/types/RadialBarSettings.d.ts","../../../node_modules/recharts/types/util/svgPropertiesNoEvents.d.ts","../../../node_modules/recharts/types/util/useUniqueId.d.ts","../../../node_modules/recharts/types/state/types/PieSettings.d.ts","../../../node_modules/recharts/types/state/types/RadarSettings.d.ts","../../../node_modules/recharts/types/state/graphicalItemsSlice.d.ts","../../../node_modules/recharts/types/state/tooltipSlice.d.ts","../../../node_modules/recharts/types/state/optionsSlice.d.ts","../../../node_modules/recharts/types/state/layoutSlice.d.ts","../../../node_modules/immer/dist/immer.d.ts","../../../node_modules/recharts/types/util/IfOverflow.d.ts","../../../node_modules/recharts/types/util/resolveDefaultProps.d.ts","../../../node_modules/recharts/types/cartesian/ReferenceLine.d.ts","../../../node_modules/recharts/types/state/referenceElementsSlice.d.ts","../../../node_modules/recharts/types/state/brushSlice.d.ts","../../../node_modules/recharts/types/state/rootPropsSlice.d.ts","../../../node_modules/recharts/types/state/polarAxisSlice.d.ts","../../../node_modules/recharts/types/state/polarOptionsSlice.d.ts","../../../node_modules/recharts/types/cartesian/Line.d.ts","../../../node_modules/recharts/types/util/Constants.d.ts","../../../node_modules/recharts/types/util/ScatterUtils.d.ts","../../../node_modules/recharts/types/shape/Symbols.d.ts","../../../node_modules/recharts/types/cartesian/Scatter.d.ts","../../../node_modules/recharts/types/cartesian/ErrorBar.d.ts","../../../node_modules/recharts/types/state/errorBarSlice.d.ts","../../../node_modules/recharts/types/state/zIndexSlice.d.ts","../../../node_modules/recharts/types/state/eventSettingsSlice.d.ts","../../../node_modules/recharts/types/state/renderedTicksSlice.d.ts","../../../node_modules/recharts/types/state/store.d.ts","../../../node_modules/recharts/types/cartesian/getTicks.d.ts","../../../node_modules/recharts/types/cartesian/CartesianGrid.d.ts","../../../node_modules/recharts/types/state/selectors/combiners/combineDisplayedStackedData.d.ts","../../../node_modules/recharts/types/state/selectors/selectTooltipAxisType.d.ts","../../../node_modules/recharts/types/types.d.ts","../../../node_modules/recharts/types/hooks.d.ts","../../../node_modules/recharts/types/state/selectors/axisSelectors.d.ts","../../../node_modules/recharts/types/component/Dots.d.ts","../../../node_modules/recharts/types/util/typedDataKey.d.ts","../../../node_modules/recharts/types/util/types.d.ts","../../../node_modules/recharts/types/container/Surface.d.ts","../../../node_modules/recharts/types/container/Layer.d.ts","../../../node_modules/recharts/types/component/Cursor.d.ts","../../../node_modules/recharts/types/component/Tooltip.d.ts","../../../node_modules/recharts/types/component/ResponsiveContainer.d.ts","../../../node_modules/recharts/types/component/Cell.d.ts","../../../node_modules/recharts/types/component/Customized.d.ts","../../../node_modules/recharts/types/shape/Sector.d.ts","../../../node_modules/recharts/types/shape/Polygon.d.ts","../../../node_modules/recharts/types/shape/Cross.d.ts","../../../node_modules/recharts/types/polar/PolarGrid.d.ts","../../../node_modules/recharts/types/polar/defaultPolarRadiusAxisProps.d.ts","../../../node_modules/recharts/types/polar/PolarRadiusAxis.d.ts","../../../node_modules/recharts/types/polar/defaultPolarAngleAxisProps.d.ts","../../../node_modules/recharts/types/polar/PolarAngleAxis.d.ts","../../../node_modules/recharts/types/context/tooltipContext.d.ts","../../../node_modules/recharts/types/polar/Pie.d.ts","../../../node_modules/recharts/types/polar/Radar.d.ts","../../../node_modules/recharts/types/util/RadialBarUtils.d.ts","../../../node_modules/recharts/types/polar/RadialBar.d.ts","../../../node_modules/recharts/types/cartesian/Brush.d.ts","../../../node_modules/recharts/types/cartesian/ReferenceDot.d.ts","../../../node_modules/recharts/types/util/excludeEventProps.d.ts","../../../node_modules/recharts/types/util/svgPropertiesAndEvents.d.ts","../../../node_modules/recharts/types/cartesian/ReferenceArea.d.ts","../../../node_modules/recharts/types/cartesian/BarStack.d.ts","../../../node_modules/recharts/types/cartesian/XAxis.d.ts","../../../node_modules/recharts/types/cartesian/YAxis.d.ts","../../../node_modules/recharts/types/cartesian/ZAxis.d.ts","../../../node_modules/recharts/types/chart/LineChart.d.ts","../../../node_modules/recharts/types/chart/BarChart.d.ts","../../../node_modules/recharts/types/chart/PieChart.d.ts","../../../node_modules/recharts/types/chart/Treemap.d.ts","../../../node_modules/recharts/types/chart/Sankey.d.ts","../../../node_modules/recharts/types/chart/RadarChart.d.ts","../../../node_modules/recharts/types/chart/ScatterChart.d.ts","../../../node_modules/recharts/types/chart/AreaChart.d.ts","../../../node_modules/recharts/types/chart/RadialBarChart.d.ts","../../../node_modules/recharts/types/chart/ComposedChart.d.ts","../../../node_modules/recharts/types/chart/SunburstChart.d.ts","../../../node_modules/recharts/types/shape/Trapezoid.d.ts","../../../node_modules/recharts/types/cartesian/Funnel.d.ts","../../../node_modules/recharts/types/chart/FunnelChart.d.ts","../../../node_modules/recharts/types/util/Global.d.ts","../../../node_modules/recharts/types/zIndex/DefaultZIndexes.d.ts","../../../node_modules/decimal.js-light/decimal.d.ts","../../../node_modules/recharts/types/util/scale/getNiceTickValues.d.ts","../../../node_modules/recharts/types/context/chartLayoutContext.d.ts","../../../node_modules/recharts/types/util/getRelativeCoordinate.d.ts","../../../node_modules/recharts/types/util/createCartesianCharts.d.ts","../../../node_modules/recharts/types/util/createPolarCharts.d.ts","../../../node_modules/recharts/types/index.d.ts","../src/chart.tsx","../src/checkbox.tsx","../src/collapsible.tsx","../../../node_modules/@base-ui/react/esm/utils/reason-parts.d.ts","../../../node_modules/@base-ui/react/esm/utils/reasons.d.ts","../../../node_modules/@base-ui/react/esm/utils/createBaseUIEventDetails.d.ts","../../../node_modules/@base-ui/react/esm/types/index.d.ts","../../../node_modules/@base-ui/react/esm/utils/types.d.ts","../../../node_modules/@base-ui/react/esm/accordion/root/AccordionRoot.d.ts","../../../node_modules/@base-ui/react/esm/utils/useTransitionStatus.d.ts","../../../node_modules/@base-ui/react/esm/collapsible/root/CollapsibleRoot.d.ts","../../../node_modules/@base-ui/react/esm/collapsible/root/useCollapsibleRoot.d.ts","../../../node_modules/@base-ui/react/esm/accordion/item/AccordionItem.d.ts","../../../node_modules/@base-ui/react/esm/accordion/header/AccordionHeader.d.ts","../../../node_modules/@base-ui/react/esm/accordion/trigger/AccordionTrigger.d.ts","../../../node_modules/@base-ui/react/esm/accordion/panel/AccordionPanel.d.ts","../../../node_modules/@base-ui/react/esm/accordion/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/accordion/index.d.ts","../../../node_modules/@base-ui/utils/esm/store/createSelector.d.ts","../../../node_modules/@base-ui/utils/esm/fastHooks.d.ts","../../../node_modules/@base-ui/utils/esm/store/Store.d.ts","../../../node_modules/@base-ui/utils/esm/store/useStore.d.ts","../../../node_modules/@base-ui/utils/esm/store/ReactStore.d.ts","../../../node_modules/@base-ui/utils/esm/store/StoreInspector.d.ts","../../../node_modules/@base-ui/utils/esm/store/index.d.ts","../../../node_modules/@base-ui/utils/esm/useEnhancedClickHandler.d.ts","../../../node_modules/@floating-ui/utils/dist/floating-ui.utils.d.mts","../../../node_modules/@floating-ui/core/dist/floating-ui.core.d.mts","../../../node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.d.mts","../../../node_modules/@floating-ui/dom/dist/floating-ui.dom.d.mts","../../../node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.d.mts","../../../node_modules/@base-ui/react/esm/floating-ui-react/utils/constants.d.ts","../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useInteractions.d.ts","../../../node_modules/@base-ui/react/esm/floating-ui-react/components/FloatingTreeStore.d.ts","../../../node_modules/@base-ui/react/esm/floating-ui-react/components/FloatingRootStore.d.ts","../../../node_modules/@base-ui/react/esm/floating-ui-react/components/FloatingFocusManager.d.ts","../../../node_modules/@base-ui/react/esm/utils/getStateAttributesProps.d.ts","../../../node_modules/@base-ui/react/esm/utils/useRenderElement.d.ts","../../../node_modules/@base-ui/react/esm/floating-ui-react/components/FloatingPortal.d.ts","../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useClientPoint.d.ts","../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useDismiss.d.ts","../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useFocus.d.ts","../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useHoverShared.d.ts","../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useHover.d.ts","../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useHoverFloatingInteraction.d.ts","../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useHoverReferenceInteraction.d.ts","../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useListNavigation.d.ts","../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useRole.d.ts","../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useTypeahead.d.ts","../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useFloatingRootContext.d.ts","../../../node_modules/@base-ui/react/esm/floating-ui-react/safePolygon.d.ts","../../../node_modules/@base-ui/react/esm/floating-ui-react/components/FloatingTree.d.ts","../../../node_modules/@base-ui/react/esm/floating-ui-react/types.d.ts","../../../node_modules/@base-ui/react/esm/floating-ui-react/components/FloatingDelayGroup.d.ts","../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useClick.d.ts","../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useFloating.d.ts","../../../node_modules/@base-ui/react/esm/floating-ui-react/hooks/useSyncedFloatingRootContext.d.ts","../../../node_modules/@base-ui/react/esm/floating-ui-react/index.d.ts","../../../node_modules/@base-ui/react/esm/utils/popups/popupTriggerMap.d.ts","../../../node_modules/@base-ui/react/esm/utils/popups/store.d.ts","../../../node_modules/@base-ui/react/esm/utils/popups/popupStoreUtils.d.ts","../../../node_modules/@base-ui/react/esm/utils/popups/index.d.ts","../../../node_modules/@base-ui/react/esm/dialog/root/DialogRoot.d.ts","../../../node_modules/@base-ui/react/esm/dialog/store/DialogStore.d.ts","../../../node_modules/@base-ui/react/esm/dialog/store/DialogHandle.d.ts","../../../node_modules/@base-ui/react/esm/alert-dialog/root/AlertDialogRoot.d.ts","../../../node_modules/@base-ui/react/esm/dialog/backdrop/DialogBackdrop.d.ts","../../../node_modules/@base-ui/react/esm/dialog/close/DialogClose.d.ts","../../../node_modules/@base-ui/react/esm/dialog/description/DialogDescription.d.ts","../../../node_modules/@base-ui/react/esm/dialog/popup/DialogPopup.d.ts","../../../node_modules/@base-ui/react/esm/dialog/portal/DialogPortal.d.ts","../../../node_modules/@base-ui/react/esm/dialog/title/DialogTitle.d.ts","../../../node_modules/@base-ui/react/esm/dialog/trigger/DialogTrigger.d.ts","../../../node_modules/@base-ui/react/esm/dialog/viewport/DialogViewport.d.ts","../../../node_modules/@base-ui/react/esm/alert-dialog/handle.d.ts","../../../node_modules/@base-ui/react/esm/alert-dialog/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/alert-dialog/index.d.ts","../../../node_modules/@base-ui/react/esm/utils/resolveValueLabel.d.ts","../../../node_modules/@base-ui/react/esm/combobox/root/AriaCombobox.d.ts","../../../node_modules/@base-ui/react/esm/autocomplete/root/AutocompleteRoot.d.ts","../../../node_modules/@base-ui/react/esm/autocomplete/value/AutocompleteValue.d.ts","../../../node_modules/@base-ui/react/esm/form/FormContext.d.ts","../../../node_modules/@base-ui/react/esm/form/Form.d.ts","../../../node_modules/@base-ui/react/esm/form/index.d.ts","../../../node_modules/@base-ui/react/esm/field/root/FieldRoot.d.ts","../../../node_modules/@base-ui/react/esm/utils/useAnchorPositioning.d.ts","../../../node_modules/@base-ui/react/esm/combobox/trigger/ComboboxTrigger.d.ts","../../../node_modules/@base-ui/react/esm/combobox/input/ComboboxInput.d.ts","../../../node_modules/@base-ui/react/esm/combobox/input-group/ComboboxInputGroup.d.ts","../../../node_modules/@base-ui/react/esm/combobox/icon/ComboboxIcon.d.ts","../../../node_modules/@base-ui/react/esm/combobox/clear/ComboboxClear.d.ts","../../../node_modules/@base-ui/react/esm/combobox/list/ComboboxList.d.ts","../../../node_modules/@base-ui/react/esm/combobox/status/ComboboxStatus.d.ts","../../../node_modules/@base-ui/react/esm/combobox/portal/ComboboxPortal.d.ts","../../../node_modules/@base-ui/react/esm/combobox/backdrop/ComboboxBackdrop.d.ts","../../../node_modules/@base-ui/react/esm/combobox/positioner/ComboboxPositioner.d.ts","../../../node_modules/@base-ui/react/esm/combobox/popup/ComboboxPopup.d.ts","../../../node_modules/@base-ui/react/esm/combobox/arrow/ComboboxArrow.d.ts","../../../node_modules/@base-ui/react/esm/combobox/group/ComboboxGroup.d.ts","../../../node_modules/@base-ui/react/esm/combobox/group-label/ComboboxGroupLabel.d.ts","../../../node_modules/@base-ui/react/esm/combobox/item/ComboboxItem.d.ts","../../../node_modules/@base-ui/react/esm/combobox/row/ComboboxRow.d.ts","../../../node_modules/@base-ui/react/esm/combobox/collection/ComboboxCollection.d.ts","../../../node_modules/@base-ui/react/esm/combobox/empty/ComboboxEmpty.d.ts","../../../node_modules/@base-ui/react/esm/separator/Separator.d.ts","../../../node_modules/@base-ui/react/esm/combobox/root/utils/useFilter.d.ts","../../../node_modules/@base-ui/react/esm/combobox/root/utils/useFilteredItems.d.ts","../../../node_modules/@base-ui/react/esm/autocomplete/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/autocomplete/index.d.ts","../../../node_modules/@base-ui/react/esm/avatar/root/AvatarRoot.d.ts","../../../node_modules/@base-ui/react/esm/avatar/image/useImageLoadingStatus.d.ts","../../../node_modules/@base-ui/react/esm/avatar/image/AvatarImage.d.ts","../../../node_modules/@base-ui/react/esm/avatar/fallback/AvatarFallback.d.ts","../../../node_modules/@base-ui/react/esm/avatar/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/avatar/index.d.ts","../../../node_modules/@base-ui/react/esm/button/Button.d.ts","../../../node_modules/@base-ui/react/esm/button/index.d.ts","../../../node_modules/@base-ui/react/esm/checkbox/root/CheckboxRoot.d.ts","../../../node_modules/@base-ui/react/esm/checkbox/indicator/CheckboxIndicator.d.ts","../../../node_modules/@base-ui/react/esm/checkbox/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/checkbox/index.d.ts","../../../node_modules/@base-ui/react/esm/checkbox-group/CheckboxGroup.d.ts","../../../node_modules/@base-ui/react/esm/checkbox-group/index.d.ts","../../../node_modules/@base-ui/react/esm/collapsible/trigger/CollapsibleTrigger.d.ts","../../../node_modules/@base-ui/react/esm/collapsible/panel/CollapsiblePanel.d.ts","../../../node_modules/@base-ui/react/esm/collapsible/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/collapsible/index.d.ts","../../../node_modules/@base-ui/react/esm/combobox/root/ComboboxRoot.d.ts","../../../node_modules/@base-ui/react/esm/combobox/label/ComboboxLabel.d.ts","../../../node_modules/@base-ui/react/esm/combobox/value/ComboboxValue.d.ts","../../../node_modules/@base-ui/react/esm/combobox/item-indicator/ComboboxItemIndicator.d.ts","../../../node_modules/@base-ui/react/esm/combobox/chips/ComboboxChips.d.ts","../../../node_modules/@base-ui/react/esm/combobox/chip/ComboboxChip.d.ts","../../../node_modules/@base-ui/react/esm/combobox/chip-remove/ComboboxChipRemove.d.ts","../../../node_modules/@base-ui/react/esm/separator/index.d.ts","../../../node_modules/@base-ui/react/esm/combobox/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/combobox/index.d.ts","../../../node_modules/@base-ui/react/esm/menu/arrow/MenuArrow.d.ts","../../../node_modules/@base-ui/react/esm/menu/backdrop/MenuBackdrop.d.ts","../../../node_modules/@base-ui/react/esm/menu/store/MenuStore.d.ts","../../../node_modules/@base-ui/react/esm/menu/root/MenuRootContext.d.ts","../../../node_modules/@base-ui/react/esm/menubar/MenubarContext.d.ts","../../../node_modules/@base-ui/react/esm/context-menu/root/ContextMenuRootContext.d.ts","../../../node_modules/@base-ui/react/esm/menu/store/MenuHandle.d.ts","../../../node_modules/@base-ui/react/esm/menu/root/MenuRoot.d.ts","../../../node_modules/@base-ui/react/esm/menu/checkbox-item/MenuCheckboxItem.d.ts","../../../node_modules/@base-ui/react/esm/menu/checkbox-item-indicator/MenuCheckboxItemIndicator.d.ts","../../../node_modules/@base-ui/react/esm/menu/group/MenuGroup.d.ts","../../../node_modules/@base-ui/react/esm/menu/group-label/MenuGroupLabel.d.ts","../../../node_modules/@base-ui/react/esm/menu/item/MenuItem.d.ts","../../../node_modules/@base-ui/react/esm/menu/link-item/MenuLinkItem.d.ts","../../../node_modules/@base-ui/react/esm/menu/popup/MenuPopup.d.ts","../../../node_modules/@base-ui/react/esm/menu/portal/MenuPortal.d.ts","../../../node_modules/@base-ui/react/esm/menu/positioner/MenuPositioner.d.ts","../../../node_modules/@base-ui/react/esm/menu/radio-group/MenuRadioGroup.d.ts","../../../node_modules/@base-ui/react/esm/menu/radio-item/MenuRadioItem.d.ts","../../../node_modules/@base-ui/react/esm/menu/radio-item-indicator/MenuRadioItemIndicator.d.ts","../../../node_modules/@base-ui/react/esm/menu/submenu-root/MenuSubmenuRootContext.d.ts","../../../node_modules/@base-ui/react/esm/menu/submenu-root/MenuSubmenuRoot.d.ts","../../../node_modules/@base-ui/react/esm/menu/trigger/MenuTrigger.d.ts","../../../node_modules/@base-ui/react/esm/menu/viewport/MenuViewport.d.ts","../../../node_modules/@base-ui/react/esm/menu/submenu-trigger/MenuSubmenuTrigger.d.ts","../../../node_modules/@base-ui/react/esm/menu/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/menu/index.d.ts","../../../node_modules/@base-ui/react/esm/context-menu/root/ContextMenuRoot.d.ts","../../../node_modules/@base-ui/react/esm/context-menu/trigger/ContextMenuTrigger.d.ts","../../../node_modules/@base-ui/react/esm/context-menu/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/context-menu/index.d.ts","../../../node_modules/@base-ui/react/esm/csp-provider/CSPProvider.d.ts","../../../node_modules/@base-ui/react/esm/csp-provider/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/csp-provider/index.d.ts","../../../node_modules/@base-ui/react/esm/dialog/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/dialog/index.d.ts","../../../node_modules/@base-ui/react/esm/direction-provider/DirectionContext.d.ts","../../../node_modules/@base-ui/react/esm/direction-provider/DirectionProvider.d.ts","../../../node_modules/@base-ui/react/esm/direction-provider/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/direction-provider/index.d.ts","../../../node_modules/@base-ui/react/esm/drawer/backdrop/DrawerBackdrop.d.ts","../../../node_modules/@base-ui/react/esm/drawer/close/DrawerClose.d.ts","../../../node_modules/@base-ui/react/esm/drawer/content/DrawerContent.d.ts","../../../node_modules/@base-ui/react/esm/drawer/description/DrawerDescription.d.ts","../../../node_modules/@base-ui/react/esm/drawer/indent/DrawerIndent.d.ts","../../../node_modules/@base-ui/react/esm/drawer/indent-background/DrawerIndentBackground.d.ts","../../../node_modules/@base-ui/react/esm/utils/useSwipeDismiss.d.ts","../../../node_modules/@base-ui/react/esm/drawer/root/DrawerRoot.d.ts","../../../node_modules/@base-ui/react/esm/drawer/root/DrawerRootContext.d.ts","../../../node_modules/@base-ui/react/esm/drawer/popup/DrawerPopup.d.ts","../../../node_modules/@base-ui/react/esm/drawer/portal/DrawerPortal.d.ts","../../../node_modules/@base-ui/react/esm/drawer/provider/DrawerProvider.d.ts","../../../node_modules/@base-ui/react/esm/drawer/swipe-area/DrawerSwipeArea.d.ts","../../../node_modules/@base-ui/react/esm/drawer/title/DrawerTitle.d.ts","../../../node_modules/@base-ui/react/esm/drawer/trigger/DrawerTrigger.d.ts","../../../node_modules/@base-ui/react/esm/drawer/viewport/DrawerViewport.d.ts","../../../node_modules/@base-ui/react/esm/drawer/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/drawer/index.d.ts","../../../node_modules/@base-ui/react/esm/field/label/FieldLabel.d.ts","../../../node_modules/@base-ui/react/esm/field/error/FieldError.d.ts","../../../node_modules/@base-ui/react/esm/field/description/FieldDescription.d.ts","../../../node_modules/@base-ui/react/esm/field/control/FieldControl.d.ts","../../../node_modules/@base-ui/react/esm/field/validity/FieldValidity.d.ts","../../../node_modules/@base-ui/react/esm/field/item/FieldItem.d.ts","../../../node_modules/@base-ui/react/esm/field/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/field/index.d.ts","../../../node_modules/@base-ui/react/esm/fieldset/root/FieldsetRoot.d.ts","../../../node_modules/@base-ui/react/esm/fieldset/legend/FieldsetLegend.d.ts","../../../node_modules/@base-ui/react/esm/fieldset/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/fieldset/index.d.ts","../../../node_modules/@base-ui/react/esm/input/Input.d.ts","../../../node_modules/@base-ui/react/esm/input/index.d.ts","../../../node_modules/@base-ui/react/esm/menubar/Menubar.d.ts","../../../node_modules/@base-ui/react/esm/menubar/index.d.ts","../../../node_modules/@base-ui/react/esm/merge-props/mergeProps.d.ts","../../../node_modules/@base-ui/react/esm/merge-props/index.d.ts","../../../node_modules/@base-ui/react/esm/meter/root/MeterRoot.d.ts","../../../node_modules/@base-ui/react/esm/meter/track/MeterTrack.d.ts","../../../node_modules/@base-ui/react/esm/meter/indicator/MeterIndicator.d.ts","../../../node_modules/@base-ui/react/esm/meter/value/MeterValue.d.ts","../../../node_modules/@base-ui/react/esm/meter/label/MeterLabel.d.ts","../../../node_modules/@base-ui/react/esm/meter/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/meter/index.d.ts","../../../node_modules/@base-ui/react/esm/navigation-menu/root/NavigationMenuRoot.d.ts","../../../node_modules/@base-ui/react/esm/navigation-menu/list/NavigationMenuList.d.ts","../../../node_modules/@base-ui/react/esm/navigation-menu/item/NavigationMenuItem.d.ts","../../../node_modules/@base-ui/react/esm/navigation-menu/content/NavigationMenuContent.d.ts","../../../node_modules/@base-ui/react/esm/navigation-menu/trigger/NavigationMenuTrigger.d.ts","../../../node_modules/@base-ui/react/esm/navigation-menu/portal/NavigationMenuPortal.d.ts","../../../node_modules/@base-ui/react/esm/navigation-menu/positioner/NavigationMenuPositioner.d.ts","../../../node_modules/@base-ui/react/esm/navigation-menu/viewport/NavigationMenuViewport.d.ts","../../../node_modules/@base-ui/react/esm/navigation-menu/backdrop/NavigationMenuBackdrop.d.ts","../../../node_modules/@base-ui/react/esm/navigation-menu/popup/NavigationMenuPopup.d.ts","../../../node_modules/@base-ui/react/esm/navigation-menu/arrow/NavigationMenuArrow.d.ts","../../../node_modules/@base-ui/react/esm/navigation-menu/link/NavigationMenuLink.d.ts","../../../node_modules/@base-ui/react/esm/navigation-menu/icon/NavigationMenuIcon.d.ts","../../../node_modules/@base-ui/react/esm/navigation-menu/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/navigation-menu/index.d.ts","../../../node_modules/@base-ui/react/esm/number-field/utils/types.d.ts","../../../node_modules/@base-ui/react/esm/number-field/root/NumberFieldRoot.d.ts","../../../node_modules/@base-ui/react/esm/number-field/group/NumberFieldGroup.d.ts","../../../node_modules/@base-ui/react/esm/number-field/increment/NumberFieldIncrement.d.ts","../../../node_modules/@base-ui/react/esm/number-field/decrement/NumberFieldDecrement.d.ts","../../../node_modules/@base-ui/react/esm/number-field/input/NumberFieldInput.d.ts","../../../node_modules/@base-ui/react/esm/number-field/scrub-area/NumberFieldScrubArea.d.ts","../../../node_modules/@base-ui/react/esm/number-field/scrub-area-cursor/NumberFieldScrubAreaCursor.d.ts","../../../node_modules/@base-ui/react/esm/number-field/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/number-field/index.d.ts","../../../node_modules/@base-ui/utils/esm/useTimeout.d.ts","../../../node_modules/@base-ui/react/esm/popover/store/PopoverStore.d.ts","../../../node_modules/@base-ui/react/esm/popover/store/PopoverHandle.d.ts","../../../node_modules/@base-ui/react/esm/popover/root/PopoverRoot.d.ts","../../../node_modules/@base-ui/react/esm/popover/trigger/PopoverTrigger.d.ts","../../../node_modules/@base-ui/react/esm/popover/portal/PopoverPortal.d.ts","../../../node_modules/@base-ui/react/esm/popover/positioner/PopoverPositioner.d.ts","../../../node_modules/@base-ui/react/esm/popover/popup/PopoverPopup.d.ts","../../../node_modules/@base-ui/react/esm/popover/arrow/PopoverArrow.d.ts","../../../node_modules/@base-ui/react/esm/popover/backdrop/PopoverBackdrop.d.ts","../../../node_modules/@base-ui/react/esm/popover/title/PopoverTitle.d.ts","../../../node_modules/@base-ui/react/esm/popover/description/PopoverDescription.d.ts","../../../node_modules/@base-ui/react/esm/popover/close/PopoverClose.d.ts","../../../node_modules/@base-ui/react/esm/popover/viewport/PopoverViewport.d.ts","../../../node_modules/@base-ui/react/esm/popover/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/popover/index.d.ts","../../../node_modules/@base-ui/react/esm/preview-card/store/PreviewCardStore.d.ts","../../../node_modules/@base-ui/react/esm/preview-card/store/PreviewCardHandle.d.ts","../../../node_modules/@base-ui/react/esm/preview-card/root/PreviewCardRoot.d.ts","../../../node_modules/@base-ui/react/esm/utils/FloatingPortalLite.d.ts","../../../node_modules/@base-ui/react/esm/preview-card/portal/PreviewCardPortal.d.ts","../../../node_modules/@base-ui/react/esm/preview-card/trigger/PreviewCardTrigger.d.ts","../../../node_modules/@base-ui/react/esm/preview-card/positioner/PreviewCardPositioner.d.ts","../../../node_modules/@base-ui/react/esm/preview-card/popup/PreviewCardPopup.d.ts","../../../node_modules/@base-ui/react/esm/preview-card/arrow/PreviewCardArrow.d.ts","../../../node_modules/@base-ui/react/esm/preview-card/backdrop/PreviewCardBackdrop.d.ts","../../../node_modules/@base-ui/react/esm/preview-card/viewport/PreviewCardViewport.d.ts","../../../node_modules/@base-ui/react/esm/preview-card/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/preview-card/index.d.ts","../../../node_modules/@base-ui/react/esm/progress/root/ProgressRoot.d.ts","../../../node_modules/@base-ui/react/esm/progress/track/ProgressTrack.d.ts","../../../node_modules/@base-ui/react/esm/progress/indicator/ProgressIndicator.d.ts","../../../node_modules/@base-ui/react/esm/progress/value/ProgressValue.d.ts","../../../node_modules/@base-ui/react/esm/progress/label/ProgressLabel.d.ts","../../../node_modules/@base-ui/react/esm/progress/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/progress/index.d.ts","../../../node_modules/@base-ui/react/esm/radio/root/RadioRoot.d.ts","../../../node_modules/@base-ui/react/esm/radio/indicator/RadioIndicator.d.ts","../../../node_modules/@base-ui/react/esm/radio/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/radio/index.d.ts","../../../node_modules/@base-ui/react/esm/radio-group/RadioGroup.d.ts","../../../node_modules/@base-ui/react/esm/radio-group/index.d.ts","../../../node_modules/@base-ui/react/esm/scroll-area/root/ScrollAreaRoot.d.ts","../../../node_modules/@base-ui/react/esm/scroll-area/viewport/ScrollAreaViewport.d.ts","../../../node_modules/@base-ui/react/esm/scroll-area/scrollbar/ScrollAreaScrollbar.d.ts","../../../node_modules/@base-ui/react/esm/scroll-area/content/ScrollAreaContent.d.ts","../../../node_modules/@base-ui/react/esm/scroll-area/thumb/ScrollAreaThumb.d.ts","../../../node_modules/@base-ui/react/esm/scroll-area/corner/ScrollAreaCorner.d.ts","../../../node_modules/@base-ui/react/esm/scroll-area/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/scroll-area/index.d.ts","../../../node_modules/@base-ui/react/esm/select/root/SelectRoot.d.ts","../../../node_modules/@base-ui/react/esm/select/label/SelectLabel.d.ts","../../../node_modules/@base-ui/react/esm/select/trigger/SelectTrigger.d.ts","../../../node_modules/@base-ui/react/esm/select/value/SelectValue.d.ts","../../../node_modules/@base-ui/react/esm/select/icon/SelectIcon.d.ts","../../../node_modules/@base-ui/react/esm/select/portal/SelectPortal.d.ts","../../../node_modules/@base-ui/react/esm/select/backdrop/SelectBackdrop.d.ts","../../../node_modules/@base-ui/react/esm/select/positioner/SelectPositioner.d.ts","../../../node_modules/@base-ui/react/esm/select/popup/SelectPopup.d.ts","../../../node_modules/@base-ui/react/esm/select/list/SelectList.d.ts","../../../node_modules/@base-ui/react/esm/select/item/SelectItem.d.ts","../../../node_modules/@base-ui/react/esm/select/item-indicator/SelectItemIndicator.d.ts","../../../node_modules/@base-ui/react/esm/select/item-text/SelectItemText.d.ts","../../../node_modules/@base-ui/react/esm/select/arrow/SelectArrow.d.ts","../../../node_modules/@base-ui/react/esm/select/scroll-down-arrow/SelectScrollDownArrow.d.ts","../../../node_modules/@base-ui/react/esm/select/scroll-up-arrow/SelectScrollUpArrow.d.ts","../../../node_modules/@base-ui/react/esm/select/group/SelectGroup.d.ts","../../../node_modules/@base-ui/react/esm/select/group-label/SelectGroupLabel.d.ts","../../../node_modules/@base-ui/react/esm/select/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/select/index.d.ts","../../../node_modules/@base-ui/react/esm/slider/root/SliderRoot.d.ts","../../../node_modules/@base-ui/react/esm/slider/label/SliderLabel.d.ts","../../../node_modules/@base-ui/react/esm/slider/value/SliderValue.d.ts","../../../node_modules/@base-ui/react/esm/slider/control/SliderControl.d.ts","../../../node_modules/@base-ui/react/esm/slider/track/SliderTrack.d.ts","../../../node_modules/@base-ui/react/esm/labelable-provider/LabelableContext.d.ts","../../../node_modules/@base-ui/react/esm/slider/thumb/SliderThumb.d.ts","../../../node_modules/@base-ui/react/esm/slider/indicator/SliderIndicator.d.ts","../../../node_modules/@base-ui/react/esm/slider/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/slider/index.d.ts","../../../node_modules/@base-ui/react/esm/switch/root/SwitchRoot.d.ts","../../../node_modules/@base-ui/react/esm/switch/thumb/SwitchThumb.d.ts","../../../node_modules/@base-ui/react/esm/switch/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/switch/index.d.ts","../../../node_modules/@base-ui/react/esm/tabs/tab/TabsTab.d.ts","../../../node_modules/@base-ui/react/esm/tabs/root/TabsRoot.d.ts","../../../node_modules/@base-ui/react/esm/tabs/indicator/TabsIndicator.d.ts","../../../node_modules/@base-ui/react/esm/tabs/panel/TabsPanel.d.ts","../../../node_modules/@base-ui/react/esm/tabs/list/TabsList.d.ts","../../../node_modules/@base-ui/react/esm/tabs/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/tabs/index.d.ts","../../../node_modules/@base-ui/react/esm/toast/positioner/ToastPositioner.d.ts","../../../node_modules/@base-ui/react/esm/toast/useToastManager.d.ts","../../../node_modules/@base-ui/react/esm/toast/createToastManager.d.ts","../../../node_modules/@base-ui/react/esm/toast/provider/ToastProvider.d.ts","../../../node_modules/@base-ui/react/esm/toast/viewport/ToastViewport.d.ts","../../../node_modules/@base-ui/react/esm/toast/root/ToastRoot.d.ts","../../../node_modules/@base-ui/react/esm/toast/content/ToastContent.d.ts","../../../node_modules/@base-ui/react/esm/toast/description/ToastDescription.d.ts","../../../node_modules/@base-ui/react/esm/toast/title/ToastTitle.d.ts","../../../node_modules/@base-ui/react/esm/toast/close/ToastClose.d.ts","../../../node_modules/@base-ui/react/esm/toast/action/ToastAction.d.ts","../../../node_modules/@base-ui/react/esm/toast/portal/ToastPortal.d.ts","../../../node_modules/@base-ui/react/esm/toast/arrow/ToastArrow.d.ts","../../../node_modules/@base-ui/react/esm/toast/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/toast/index.d.ts","../../../node_modules/@base-ui/react/esm/toggle/Toggle.d.ts","../../../node_modules/@base-ui/react/esm/toggle/index.d.ts","../../../node_modules/@base-ui/react/esm/toggle-group/ToggleGroup.d.ts","../../../node_modules/@base-ui/react/esm/toggle-group/index.d.ts","../../../node_modules/@base-ui/react/esm/toolbar/separator/ToolbarSeparator.d.ts","../../../node_modules/@base-ui/react/esm/toolbar/root/ToolbarRoot.d.ts","../../../node_modules/@base-ui/react/esm/toolbar/group/ToolbarGroup.d.ts","../../../node_modules/@base-ui/react/esm/toolbar/button/ToolbarButton.d.ts","../../../node_modules/@base-ui/react/esm/toolbar/link/ToolbarLink.d.ts","../../../node_modules/@base-ui/react/esm/toolbar/input/ToolbarInput.d.ts","../../../node_modules/@base-ui/react/esm/toolbar/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/toolbar/index.d.ts","../../../node_modules/@base-ui/react/esm/tooltip/store/TooltipStore.d.ts","../../../node_modules/@base-ui/react/esm/tooltip/store/TooltipHandle.d.ts","../../../node_modules/@base-ui/react/esm/tooltip/root/TooltipRoot.d.ts","../../../node_modules/@base-ui/react/esm/tooltip/trigger/TooltipTrigger.d.ts","../../../node_modules/@base-ui/react/esm/tooltip/portal/TooltipPortal.d.ts","../../../node_modules/@base-ui/react/esm/tooltip/positioner/TooltipPositioner.d.ts","../../../node_modules/@base-ui/react/esm/tooltip/popup/TooltipPopup.d.ts","../../../node_modules/@base-ui/react/esm/tooltip/arrow/TooltipArrow.d.ts","../../../node_modules/@base-ui/react/esm/tooltip/provider/TooltipProvider.d.ts","../../../node_modules/@base-ui/react/esm/tooltip/viewport/TooltipViewport.d.ts","../../../node_modules/@base-ui/react/esm/tooltip/index.parts.d.ts","../../../node_modules/@base-ui/react/esm/tooltip/index.d.ts","../../../node_modules/@base-ui/react/esm/use-render/useRender.d.ts","../../../node_modules/@base-ui/react/esm/use-render/index.d.ts","../../../node_modules/@base-ui/react/esm/index.d.ts","../src/combobox.tsx","../../../node_modules/cmdk/dist/index.d.ts","../src/command.tsx","../src/context-menu.tsx","../src/dialog.tsx","../../../node_modules/vaul/dist/index.d.mts","../src/drawer.tsx","../src/dropdown-menu.tsx","../src/empty.tsx","../src/field.tsx","../../../node_modules/@radix-ui/react-label/dist/index.d.mts","../../../node_modules/react-hook-form/dist/constants.d.ts","../../../node_modules/react-hook-form/dist/utils/createSubject.d.ts","../../../node_modules/react-hook-form/dist/types/events.d.ts","../../../node_modules/react-hook-form/dist/types/path/common.d.ts","../../../node_modules/react-hook-form/dist/types/path/eager.d.ts","../../../node_modules/react-hook-form/dist/types/path/index.d.ts","../../../node_modules/react-hook-form/dist/types/fieldArray.d.ts","../../../node_modules/react-hook-form/dist/types/resolvers.d.ts","../../../node_modules/react-hook-form/dist/types/form.d.ts","../../../node_modules/react-hook-form/dist/types/utils.d.ts","../../../node_modules/react-hook-form/dist/types/fields.d.ts","../../../node_modules/react-hook-form/dist/types/errors.d.ts","../../../node_modules/react-hook-form/dist/types/validator.d.ts","../../../node_modules/react-hook-form/dist/types/controller.d.ts","../../../node_modules/react-hook-form/dist/types/watch.d.ts","../../../node_modules/react-hook-form/dist/types/index.d.ts","../../../node_modules/react-hook-form/dist/controller.d.ts","../../../node_modules/react-hook-form/dist/form.d.ts","../../../node_modules/react-hook-form/dist/formStateSubscribe.d.ts","../../../node_modules/react-hook-form/dist/logic/appendErrors.d.ts","../../../node_modules/react-hook-form/dist/logic/createFormControl.d.ts","../../../node_modules/react-hook-form/dist/logic/index.d.ts","../../../node_modules/react-hook-form/dist/useController.d.ts","../../../node_modules/react-hook-form/dist/useFieldArray.d.ts","../../../node_modules/react-hook-form/dist/useForm.d.ts","../../../node_modules/react-hook-form/dist/useFormContext.d.ts","../../../node_modules/react-hook-form/dist/useFormState.d.ts","../../../node_modules/react-hook-form/dist/useWatch.d.ts","../../../node_modules/react-hook-form/dist/utils/get.d.ts","../../../node_modules/react-hook-form/dist/utils/set.d.ts","../../../node_modules/react-hook-form/dist/utils/index.d.ts","../../../node_modules/react-hook-form/dist/watch.d.ts","../../../node_modules/react-hook-form/dist/index.d.ts","../../../node_modules/@radix-ui/react-slot/dist/index.d.mts","../src/form.tsx","../src/hover-card.tsx","../../../node_modules/react-image-crop/dist/index.d.ts","../src/image-crop.tsx","../src/input.tsx","../src/input-group.tsx","../../../node_modules/input-otp/dist/index.d.ts","../src/input-otp.tsx","../src/item.tsx","../src/kbd.tsx","../src/label.tsx","../src/native-select.tsx","../src/navigation-menu.tsx","../src/pagination.tsx","../src/popover.tsx","../src/progress.tsx","../src/radio-group.tsx","../../../node_modules/react-resizable-panels/dist/react-resizable-panels.d.ts","../src/resizable.tsx","../src/scroll-area.tsx","../src/select.tsx","../../../node_modules/@radix-ui/react-separator/dist/index.d.mts","../src/separator.tsx","../src/sheet.tsx","../src/sidebar.tsx","../src/skeleton.tsx","../src/slider.tsx","../src/spinner.tsx","../src/status-message.tsx","../../../node_modules/@types/react-dom/index.d.ts","../src/submit-button.tsx","../src/switch.tsx","../src/table.tsx","../src/tabs.tsx","../src/textarea.tsx","../../../node_modules/next-themes/dist/index.d.ts","../src/theme.tsx","../../../node_modules/sonner/dist/index.d.mts","../src/sonner.tsx","../src/toggle.tsx","../src/toggle-group.tsx","../src/tooltip.tsx","../src/hooks/use-mobile.ts","../src/hooks/use-on-click-outside.tsx","../src/hooks/index.tsx","../src/index.tsx","../src/accordion.tsx","../src/css.d.ts","../src/menubar.tsx","../../../node_modules/@vitest/pretty-format/dist/index.d.ts","../../../node_modules/@vitest/utils/dist/display.d.ts","../../../node_modules/@vitest/utils/dist/types.d.ts","../../../node_modules/@vitest/utils/dist/helpers.d.ts","../../../node_modules/@vitest/utils/dist/timers.d.ts","../../../node_modules/@vitest/utils/dist/index.d.ts","../../../node_modules/@vitest/utils/dist/types.d-BCElaP-c.d.ts","../../../node_modules/@vitest/utils/dist/diff.d.ts","../../../node_modules/@vitest/runner/dist/tasks.d-DEYaIMIu.d.ts","../../../node_modules/@vitest/runner/dist/index.d.ts","../../../node_modules/vitest/dist/chunks/traces.d.D2T_R8rx.d.ts","../../../node_modules/vite/types/hmrPayload.d.ts","../../../node_modules/vite/dist/node/chunks/moduleRunnerTransport.d.ts","../../../node_modules/vite/types/customEvent.d.ts","../../../node_modules/vite/types/hot.d.ts","../../../node_modules/vite/dist/node/module-runner.d.ts","../../../node_modules/@vitest/snapshot/dist/environment.d-DOJxxZV9.d.ts","../../../node_modules/@vitest/snapshot/dist/rawSnapshot.d-D_X3-62x.d.ts","../../../node_modules/@vitest/snapshot/dist/index.d.ts","../../../node_modules/vitest/dist/chunks/config.d.A1h_Y6Jt.d.ts","../../../node_modules/vitest/dist/chunks/environment.d.CrsxCzP1.d.ts","../../../node_modules/vitest/dist/chunks/rpc.d.B_8sPU0w.d.ts","../../../node_modules/vitest/dist/chunks/worker.d.ZpHpO4yb.d.ts","../../../node_modules/vitest/dist/chunks/browser.d.BcoexmFG.d.ts","../../../node_modules/@vitest/spy/optional-types.d.ts","../../../node_modules/@vitest/spy/dist/index.d.ts","../../../node_modules/tinyrainbow/dist/index.d.ts","../../../node_modules/@standard-schema/spec/dist/index.d.ts","../../../node_modules/@types/deep-eql/index.d.ts","../../../node_modules/assertion-error/index.d.ts","../../../node_modules/@types/chai/index.d.ts","../../../node_modules/@vitest/expect/dist/index.d.ts","../../../node_modules/@vitest/runner/dist/utils.d.ts","../../../node_modules/tinybench/dist/index.d.ts","../../../node_modules/vitest/dist/chunks/benchmark.d.DAaHLpsq.d.ts","../../../node_modules/vitest/dist/chunks/global.d.DVsSRdQ5.d.ts","../../../node_modules/vitest/optional-runtime-types.d.ts","../../../node_modules/@vitest/mocker/dist/types.d-BjI5eAwu.d.ts","../../../node_modules/@vitest/mocker/dist/index.d-B41z0AuW.d.ts","../../../node_modules/@vitest/mocker/dist/index.d.ts","../../../node_modules/vitest/dist/chunks/suite.d.udJtyAgw.d.ts","../../../node_modules/vitest/dist/chunks/evaluatedModules.d.BxJ5omdx.d.ts","../../../node_modules/vitest/dist/runners.d.ts","../../../node_modules/expect-type/dist/utils.d.ts","../../../node_modules/expect-type/dist/overloads.d.ts","../../../node_modules/expect-type/dist/branding.d.ts","../../../node_modules/expect-type/dist/messages.d.ts","../../../node_modules/expect-type/dist/index.d.ts","../../../node_modules/vitest/dist/index.d.ts","../../../node_modules/@types/aria-query/index.d.ts","../../../node_modules/@testing-library/jest-dom/types/matchers.d.ts","../../../node_modules/@testing-library/jest-dom/types/vitest.d.ts","../tests/jest-dom.d.ts","../../../node_modules/@types/react-dom/client.d.ts","../../../node_modules/@testing-library/dom/types/matches.d.ts","../../../node_modules/@testing-library/dom/types/wait-for.d.ts","../../../node_modules/@testing-library/dom/types/query-helpers.d.ts","../../../node_modules/@testing-library/dom/types/queries.d.ts","../../../node_modules/@testing-library/dom/types/get-queries-for-element.d.ts","../../../node_modules/@testing-library/dom/node_modules/pretty-format/build/types.d.ts","../../../node_modules/@testing-library/dom/node_modules/pretty-format/build/index.d.ts","../../../node_modules/@testing-library/dom/types/screen.d.ts","../../../node_modules/@testing-library/dom/types/wait-for-element-to-be-removed.d.ts","../../../node_modules/@testing-library/dom/types/get-node-text.d.ts","../../../node_modules/@testing-library/dom/types/events.d.ts","../../../node_modules/@testing-library/dom/types/pretty-dom.d.ts","../../../node_modules/@testing-library/dom/types/role-helpers.d.ts","../../../node_modules/@testing-library/dom/types/config.d.ts","../../../node_modules/@testing-library/dom/types/suggestions.d.ts","../../../node_modules/@testing-library/dom/types/index.d.ts","../../../node_modules/@types/react-dom/test-utils/index.d.ts","../../../node_modules/@testing-library/react/types/index.d.ts","../tests/component/button.test.tsx","../../../node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../node_modules/@types/node/web-globals/blob.d.ts","../../../node_modules/@types/node/web-globals/console.d.ts","../../../node_modules/@types/node/web-globals/crypto.d.ts","../../../node_modules/@types/node/web-globals/domexception.d.ts","../../../node_modules/@types/node/web-globals/encoding.d.ts","../../../node_modules/@types/node/web-globals/events.d.ts","../../../node_modules/undici-types/utility.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.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-stats.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/round-robin-pool.d.ts","../../../node_modules/undici-types/h2c-client.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-call-history.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/snapshot-agent.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/cache-interceptor.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/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/web-globals/fetch.d.ts","../../../node_modules/@types/node/web-globals/importmeta.d.ts","../../../node_modules/@types/node/web-globals/messaging.d.ts","../../../node_modules/@types/node/web-globals/navigator.d.ts","../../../node_modules/@types/node/web-globals/performance.d.ts","../../../node_modules/@types/node/web-globals/storage.d.ts","../../../node_modules/@types/node/web-globals/streams.d.ts","../../../node_modules/@types/node/web-globals/timers.d.ts","../../../node_modules/@types/node/web-globals/url.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/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/inspector.generated.d.ts","../../../node_modules/@types/node/inspector/promises.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/path/posix.d.ts","../../../node_modules/@types/node/path/win32.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/quic.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/consumers.d.ts","../../../node_modules/@types/node/stream/promises.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/test/reporters.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/util/types.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/rolldown/dist/shared/logging-BSNejiLS.d.mts","../../../node_modules/@oxc-project/types/types.d.ts","../../../node_modules/rolldown/dist/shared/binding-BaCZTfMx.d.mts","../../../node_modules/@rolldown/pluginutils/dist/filter/index.d.mts","../../../node_modules/@rolldown/pluginutils/dist/index.d.mts","../../../node_modules/rolldown/dist/shared/define-config-3BX_X2Am.d.mts","../../../node_modules/rolldown/dist/index.d.mts","../../../node_modules/rolldown/dist/parse-ast-index.d.mts","../../../node_modules/vite/types/internal/rollupTypeCompat.d.ts","../../../node_modules/rolldown/dist/shared/constructors-CbNaT434.d.mts","../../../node_modules/rolldown/dist/plugins-index.d.mts","../../../node_modules/rolldown/dist/shared/transform-7xCUVrpL.d.mts","../../../node_modules/rolldown/dist/utils-index.d.mts","../../../node_modules/esbuild/lib/main.d.ts","../../../node_modules/vite/types/internal/esbuildOptions.d.ts","../../../node_modules/vite/types/metadata.d.ts","../../../node_modules/@jridgewell/trace-mapping/types/sourcemap-segment.d.mts","../../../node_modules/@jridgewell/trace-mapping/types/types.d.mts","../../../node_modules/@jridgewell/trace-mapping/types/flatten-map.d.mts","../../../node_modules/@jridgewell/trace-mapping/types/trace-mapping.d.mts","../../../node_modules/@jridgewell/gen-mapping/types/sourcemap-segment.d.mts","../../../node_modules/@jridgewell/gen-mapping/types/types.d.mts","../../../node_modules/@jridgewell/gen-mapping/types/gen-mapping.d.mts","../../../node_modules/@jridgewell/source-map/types/source-map.d.mts","../../../node_modules/terser/tools/terser.d.ts","../../../node_modules/vite/types/internal/terserOptions.d.ts","../../../node_modules/source-map-js/source-map.d.ts","../../../node_modules/vite/node_modules/postcss/lib/previous-map.d.ts","../../../node_modules/vite/node_modules/postcss/lib/input.d.ts","../../../node_modules/vite/node_modules/postcss/lib/css-syntax-error.d.ts","../../../node_modules/vite/node_modules/postcss/lib/declaration.d.ts","../../../node_modules/vite/node_modules/postcss/lib/root.d.ts","../../../node_modules/vite/node_modules/postcss/lib/warning.d.ts","../../../node_modules/vite/node_modules/postcss/lib/lazy-result.d.ts","../../../node_modules/vite/node_modules/postcss/lib/no-work-result.d.ts","../../../node_modules/vite/node_modules/postcss/lib/processor.d.ts","../../../node_modules/vite/node_modules/postcss/lib/result.d.ts","../../../node_modules/vite/node_modules/postcss/lib/document.d.ts","../../../node_modules/vite/node_modules/postcss/lib/rule.d.ts","../../../node_modules/vite/node_modules/postcss/lib/node.d.ts","../../../node_modules/vite/node_modules/postcss/lib/comment.d.ts","../../../node_modules/vite/node_modules/postcss/lib/container.d.ts","../../../node_modules/vite/node_modules/postcss/lib/at-rule.d.ts","../../../node_modules/vite/node_modules/postcss/lib/list.d.ts","../../../node_modules/vite/node_modules/postcss/lib/postcss.d.ts","../../../node_modules/vite/node_modules/postcss/lib/postcss.d.mts","../../../node_modules/vite/node_modules/lightningcss/node/ast.d.ts","../../../node_modules/vite/node_modules/lightningcss/node/targets.d.ts","../../../node_modules/vite/node_modules/lightningcss/node/index.d.ts","../../../node_modules/vite/types/internal/lightningcssOptions.d.ts","../../../node_modules/sass/types/deprecations.d.ts","../../../node_modules/sass/types/util/promise_or.d.ts","../../../node_modules/sass/types/importer.d.ts","../../../node_modules/sass/types/logger/source_location.d.ts","../../../node_modules/sass/types/logger/source_span.d.ts","../../../node_modules/sass/types/logger/index.d.ts","../../../node_modules/immutable/dist/immutable.d.ts","../../../node_modules/sass/types/value/boolean.d.ts","../../../node_modules/sass/types/value/calculation.d.ts","../../../node_modules/sass/types/value/color.d.ts","../../../node_modules/sass/types/value/function.d.ts","../../../node_modules/sass/types/value/list.d.ts","../../../node_modules/sass/types/value/map.d.ts","../../../node_modules/sass/types/value/mixin.d.ts","../../../node_modules/sass/types/value/number.d.ts","../../../node_modules/sass/types/value/string.d.ts","../../../node_modules/sass/types/value/argument_list.d.ts","../../../node_modules/sass/types/value/index.d.ts","../../../node_modules/sass/types/options.d.ts","../../../node_modules/sass/types/compile.d.ts","../../../node_modules/sass/types/exception.d.ts","../../../node_modules/sass/types/legacy/exception.d.ts","../../../node_modules/sass/types/legacy/plugin_this.d.ts","../../../node_modules/sass/types/legacy/function.d.ts","../../../node_modules/sass/types/legacy/importer.d.ts","../../../node_modules/sass/types/legacy/options.d.ts","../../../node_modules/sass/types/legacy/render.d.ts","../../../node_modules/sass/types/index.d.ts","../../../node_modules/vite/types/internal/cssPreprocessorOptions.d.ts","../../../node_modules/rolldown/dist/filter-index.d.mts","../../../node_modules/vite/types/importGlob.d.ts","../../../node_modules/vite/dist/node/index.d.ts","../../../node_modules/happy-dom/lib/PropertySymbol.d.ts","../../../node_modules/happy-dom/lib/browser/enums/BrowserErrorCaptureEnum.d.ts","../../../node_modules/happy-dom/lib/browser/enums/BrowserNavigationCrossOriginPolicyEnum.d.ts","../../../node_modules/happy-dom/lib/event/IEventInit.d.ts","../../../node_modules/happy-dom/lib/event/EventPhaseEnum.d.ts","../../../node_modules/happy-dom/lib/event/Event.d.ts","../../../node_modules/happy-dom/lib/event/IEventListenerOptions.d.ts","../../../node_modules/happy-dom/lib/event/TEventListenerFunction.d.ts","../../../node_modules/happy-dom/lib/event/TEventListenerObject.d.ts","../../../node_modules/happy-dom/lib/event/TEventListener.d.ts","../../../node_modules/happy-dom/lib/console/IConsole.d.ts","../../../node_modules/happy-dom/lib/async-task-manager/AsyncTaskManager.d.ts","../../../node_modules/happy-dom/lib/nodes/node/NodeTypeEnum.d.ts","../../../node_modules/happy-dom/lib/nodes/node/NodeDocumentPositionEnum.d.ts","../../../node_modules/happy-dom/lib/nodes/node/NodeList.d.ts","../../../node_modules/happy-dom/lib/mutation-observer/MutationTypeEnum.d.ts","../../../node_modules/happy-dom/lib/mutation-observer/MutationRecord.d.ts","../../../node_modules/happy-dom/lib/mutation-observer/IMutationObserverInit.d.ts","../../../node_modules/happy-dom/lib/mutation-observer/IMutationListener.d.ts","../../../node_modules/happy-dom/lib/nodes/node/ICachedResult.d.ts","../../../node_modules/happy-dom/lib/nodes/node/ICachedQuerySelectorAllResult.d.ts","../../../node_modules/happy-dom/lib/nodes/node/ICachedQuerySelectorResult.d.ts","../../../node_modules/happy-dom/lib/query-selector/ISelectorMatch.d.ts","../../../node_modules/happy-dom/lib/nodes/node/ICachedMatchesResult.d.ts","../../../node_modules/happy-dom/lib/nodes/node/ICachedElementsByTagNameResult.d.ts","../../../node_modules/happy-dom/lib/nodes/node/ICachedElementByTagNameResult.d.ts","../../../node_modules/happy-dom/lib/css/declaration/property-manager/ICSSStyleDeclarationPropertyValue.d.ts","../../../node_modules/happy-dom/lib/css/declaration/property-manager/CSSStyleDeclarationPropertyManager.d.ts","../../../node_modules/happy-dom/lib/nodes/node/ICachedComputedStyleResult.d.ts","../../../node_modules/happy-dom/lib/nodes/node/ICachedElementByIdResult.d.ts","../../../node_modules/happy-dom/lib/css/CSSRuleTypeEnum.d.ts","../../../node_modules/happy-dom/lib/css/utilities/CSSParser.d.ts","../../../node_modules/happy-dom/lib/css/CSSRule.d.ts","../../../node_modules/happy-dom/lib/css/rules/CSSGroupingRule.d.ts","../../../node_modules/happy-dom/lib/css/rules/CSSConditionRule.d.ts","../../../node_modules/happy-dom/lib/css/rules/CSSMediaRule.d.ts","../../../node_modules/happy-dom/lib/css/MediaList.d.ts","../../../node_modules/happy-dom/lib/css/CSSStyleSheet.d.ts","../../../node_modules/happy-dom/lib/css/declaration/CSSStyleDeclaration.d.ts","../../../node_modules/happy-dom/lib/dom/DOMStringMap.d.ts","../../../node_modules/happy-dom/lib/nodes/attr/Attr.d.ts","../../../node_modules/happy-dom/lib/nodes/html-element/HTMLElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-style-element/HTMLStyleElement.d.ts","../../../node_modules/happy-dom/lib/nodes/element/HTMLCollection.d.ts","../../../node_modules/happy-dom/lib/nodes/html-input-element/HTMLInputElementSelectionModeEnum.d.ts","../../../node_modules/happy-dom/lib/file/Blob.d.ts","../../../node_modules/happy-dom/lib/file/File.d.ts","../../../node_modules/happy-dom/lib/nodes/html-input-element/FileList.d.ts","../../../node_modules/happy-dom/lib/nodes/html-meter-element/HTMLMeterElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-output-element/HTMLOutputElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-progress-element/HTMLProgressElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-option-element/HTMLOptionElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-select-element/HTMLOptionsCollection.d.ts","../../../node_modules/happy-dom/lib/nodes/html-select-element/HTMLSelectElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-text-area-element/HTMLTextAreaElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-label-element/HTMLLabelElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-data-list-element/HTMLDataListElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-input-element/HTMLInputElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-object-element/HTMLObjectElement.d.ts","../../../node_modules/happy-dom/lib/validity-state/ValidityState.d.ts","../../../node_modules/happy-dom/lib/nodes/html-button-element/HTMLButtonElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-field-set-element/HTMLFieldSetElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-form-element/THTMLFormControlElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-form-element/RadioNodeList.d.ts","../../../node_modules/happy-dom/lib/nodes/html-form-element/HTMLFormControlsCollection.d.ts","../../../node_modules/happy-dom/lib/nodes/html-form-element/HTMLFormElement.d.ts","../../../node_modules/happy-dom/lib/nodes/child-node/IChildNode.d.ts","../../../node_modules/happy-dom/lib/nodes/child-node/INonDocumentTypeChildNode.d.ts","../../../node_modules/happy-dom/lib/nodes/character-data/CharacterData.d.ts","../../../node_modules/happy-dom/lib/nodes/text/Text.d.ts","../../../node_modules/happy-dom/lib/nodes/html-slot-element/HTMLSlotElement.d.ts","../../../node_modules/happy-dom/lib/dom/IDOMRectInit.d.ts","../../../node_modules/happy-dom/lib/dom/DOMRectReadOnly.d.ts","../../../node_modules/happy-dom/lib/dom/DOMRect.d.ts","../../../node_modules/happy-dom/lib/dom/IDOMPointInit.d.ts","../../../node_modules/happy-dom/lib/dom/DOMPointReadOnly.d.ts","../../../node_modules/happy-dom/lib/dom/DOMPoint.d.ts","../../../node_modules/happy-dom/lib/dom/dom-matrix/IDOMMatrixCompatibleObject.d.ts","../../../node_modules/happy-dom/lib/dom/dom-matrix/TDOMMatrixInit.d.ts","../../../node_modules/happy-dom/lib/dom/dom-matrix/TDOMMatrix2DArray.d.ts","../../../node_modules/happy-dom/lib/dom/dom-matrix/TDOMMatrix3DArray.d.ts","../../../node_modules/happy-dom/lib/dom/dom-matrix/IDOMMatrixJSON.d.ts","../../../node_modules/happy-dom/lib/dom/dom-matrix/DOMMatrixReadOnly.d.ts","../../../node_modules/happy-dom/lib/dom/dom-matrix/DOMMatrix.d.ts","../../../node_modules/happy-dom/lib/svg/SVGStringList.d.ts","../../../node_modules/happy-dom/lib/svg/SVGMatrix.d.ts","../../../node_modules/happy-dom/lib/svg/SVGTransformTypeEnum.d.ts","../../../node_modules/happy-dom/lib/svg/SVGTransform.d.ts","../../../node_modules/happy-dom/lib/svg/SVGTransformList.d.ts","../../../node_modules/happy-dom/lib/svg/SVGAnimatedTransformList.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-graphics-element/SVGGraphicsElement.d.ts","../../../node_modules/happy-dom/lib/svg/SVGRect.d.ts","../../../node_modules/happy-dom/lib/svg/SVGPoint.d.ts","../../../node_modules/happy-dom/lib/svg/SVGLengthTypeEnum.d.ts","../../../node_modules/happy-dom/lib/svg/SVGLength.d.ts","../../../node_modules/happy-dom/lib/svg/SVGAngleTypeEnum.d.ts","../../../node_modules/happy-dom/lib/svg/SVGAngle.d.ts","../../../node_modules/happy-dom/lib/svg/SVGNumber.d.ts","../../../node_modules/happy-dom/lib/svg/SVGAnimatedRect.d.ts","../../../node_modules/happy-dom/lib/svg/SVGPreserveAspectRatioMeetOrSliceEnum.d.ts","../../../node_modules/happy-dom/lib/svg/SVGPreserveAspectRatioAlignEnum.d.ts","../../../node_modules/happy-dom/lib/svg/SVGPreserveAspectRatio.d.ts","../../../node_modules/happy-dom/lib/svg/SVGAnimatedPreserveAspectRatio.d.ts","../../../node_modules/happy-dom/lib/svg/SVGAnimatedLength.d.ts","../../../node_modules/happy-dom/lib/dom/DOMTokenList.d.ts","../../../node_modules/happy-dom/lib/nodes/html-hyperlink-element/IHTMLHyperlinkElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-anchor-element/HTMLAnchorElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-area-element/HTMLAreaElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-media-element/TimeRanges.d.ts","../../../node_modules/happy-dom/lib/nodes/html-media-element/RemotePlayback.d.ts","../../../node_modules/happy-dom/lib/nodes/html-media-element/IMediaTrackCapabilities.d.ts","../../../node_modules/happy-dom/lib/nodes/html-media-element/IMediaTrackSettings.d.ts","../../../node_modules/happy-dom/lib/nodes/html-media-element/MediaStreamTrack.d.ts","../../../node_modules/happy-dom/lib/event/events/IMediaQueryListEventInit.d.ts","../../../node_modules/happy-dom/lib/event/events/MediaStreamTrackEvent.d.ts","../../../node_modules/happy-dom/lib/nodes/html-media-element/MediaStream.d.ts","../../../node_modules/happy-dom/lib/nodes/html-media-element/TextTrackCue.d.ts","../../../node_modules/happy-dom/lib/nodes/html-media-element/TextTrackCueList.d.ts","../../../node_modules/happy-dom/lib/nodes/html-media-element/TextTrackKindEnum.d.ts","../../../node_modules/happy-dom/lib/nodes/html-media-element/TextTrack.d.ts","../../../node_modules/happy-dom/lib/nodes/html-media-element/TextTrackList.d.ts","../../../node_modules/happy-dom/lib/nodes/html-media-element/HTMLMediaElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-audio-element/HTMLAudioElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-base-element/HTMLBaseElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-body-element/HTMLBodyElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-br-element/HTMLBRElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-canvas-element/ImageBitmap.d.ts","../../../node_modules/happy-dom/lib/nodes/html-canvas-element/OffscreenCanvas.d.ts","../../../node_modules/happy-dom/lib/nodes/html-canvas-element/HTMLCanvasElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-d-list-element/HTMLDListElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-data-element/HTMLDataElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-details-element/HTMLDetailsElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-dialog-element/HTMLDialogElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-div-element/HTMLDivElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-embed-element/HTMLEmbedElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-head-element/HTMLHeadElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-heading-element/HTMLHeadingElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-hr-element/HTMLHRElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-html-element/HTMLHtmlElement.d.ts","../../../node_modules/happy-dom/lib/location/Location.d.ts","../../../node_modules/happy-dom/lib/window/CrossOriginBrowserWindow.d.ts","../../../node_modules/happy-dom/lib/nodes/html-iframe-element/HTMLIFrameElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-image-element/HTMLImageElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-legend-element/HTMLLegendElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-li-element/HTMLLIElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-link-element/HTMLLinkElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-map-element/HTMLMapElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-menu-element/HTMLMenuElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-meta-element/HTMLMetaElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-mod-element/HTMLModElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-o-list-element/HTMLOListElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-opt-group-element/HTMLOptGroupElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-paragraph-element/HTMLParagraphElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-param-element/HTMLParamElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-picture-element/HTMLPictureElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-pre-element/HTMLPreElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-quote-element/HTMLQuoteElement.d.ts","../../../node_modules/happy-dom/lib/fetch/types/TRequestReferrerPolicy.d.ts","../../../node_modules/happy-dom/lib/nodes/html-script-element/HTMLScriptElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-source-element/HTMLSourceElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-span-element/HTMLSpanElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-table-caption-element/HTMLTableCaptionElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-table-cell-element/HTMLTableCellElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-table-col-element/HTMLTableColElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-table-row-element/HTMLTableRowElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-table-section-element/HTMLTableSectionElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-table-element/HTMLTableElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-animation-element/SVGAnimationElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-animate-element/SVGAnimateElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-animate-motion-element/SVGAnimateMotionElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-animate-transform-element/SVGAnimateTransformElement.d.ts","../../../node_modules/happy-dom/lib/svg/SVGAnimatedNumber.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-geometry-element/SVGGeometryElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-circle-element/SVGCircleElement.d.ts","../../../node_modules/happy-dom/lib/svg/SVGAnimatedEnumeration.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-clip-path-element/SVGClipPathElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-defs-element/SVGDefsElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-desc-element/SVGDescElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-ellipse-element/SVGEllipseElement.d.ts","../../../node_modules/happy-dom/lib/svg/SVGAnimatedString.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-fe-blend-element/SVGFEBlendElement.d.ts","../../../node_modules/happy-dom/lib/svg/SVGNumberList.d.ts","../../../node_modules/happy-dom/lib/svg/SVGAnimatedNumberList.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-fe-color-matrix-element/SVGFEColorMatrixElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-fe-component-transfer-element/SVGFEComponentTransferElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-fe-composite-element/SVGFECompositeElement.d.ts","../../../node_modules/happy-dom/lib/svg/SVGAnimatedBoolean.d.ts","../../../node_modules/happy-dom/lib/svg/SVGAnimatedInteger.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-fe-convolve-matrix-element/SVGFEConvolveMatrixElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-fe-diffuse-lighting-element/SVGFEDiffuseLightingElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-fe-displacement-map-element/SVGFEDisplacementMapElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-fe-distant-light-element/SVGFEDistantLightElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-fe-drop-shadow-element/SVGFEDropShadowElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-fe-flood-element/SVGFEFloodElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-component-transfer-function-element/SVGComponentTransferFunctionElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-fe-func-a-element/SVGFEFuncAElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-fe-func-b-element/SVGFEFuncBElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-fe-func-g-element/SVGFEFuncGElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-fe-func-r-element/SVGFEFuncRElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-fe-gaussian-blur-element/SVGFEGaussianBlurElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-fe-image-element/SVGFEImageElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-fe-merge-element/SVGFEMergeElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-fe-merge-node-element/SVGFEMergeNodeElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-fe-morphology-element/SVGFEMorphologyElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-fe-offset-element/SVGFEOffsetElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-fe-point-light-element/SVGFEPointLightElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-fe-specular-lighting-element/SVGFESpecularLightingElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-fe-spot-light-element/SVGFESpotLightElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-fe-tile-element/SVGFETileElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-fe-turbulence-element/SVGFETurbulenceElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-filter-element/SVGFilterElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-foreign-object-element/SVGForeignObjectElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-g-element/SVGGElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-image-element/SVGImageElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-line-element/SVGLineElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-gradient-element/SVGGradientElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-linear-gradient-element/SVGLinearGradientElement.d.ts","../../../node_modules/happy-dom/lib/svg/SVGAnimatedAngle.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-marker-element/SVGMarkerElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-mask-element/SVGMaskElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-metadata-element/SVGMetadataElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-m-path-element/SVGMPathElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-path-element/SVGPathElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-pattern-element/SVGPatternElement.d.ts","../../../node_modules/happy-dom/lib/svg/SVGPointList.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-polygon-element/SVGPolygonElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-polyline-element/SVGPolylineElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-radial-gradient-element/SVGRadialGradientElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-rect-element/SVGRectElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-script-element/SVGScriptElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-set-element/SVGSetElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-stop-element/SVGStopElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-switch-element/SVGSwitchElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-symbol-element/SVGSymbolElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-text-content-element/SVGTextContentElement.d.ts","../../../node_modules/happy-dom/lib/svg/SVGLengthList.d.ts","../../../node_modules/happy-dom/lib/svg/SVGAnimatedLengthList.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-text-positioning-element/SVGTextPositioningElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-text-element/SVGTextElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-text-path-element/SVGTextPathElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-title-element/SVGTitleElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-t-span-element/SVGTSpanElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-use-element/SVGUseElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-view-element/SVGViewElement.d.ts","../../../node_modules/happy-dom/lib/config/ISVGElementTagNameMap.d.ts","../../../node_modules/happy-dom/lib/nodes/document-fragment/DocumentFragment.d.ts","../../../node_modules/happy-dom/lib/nodes/shadow-root/ShadowRoot.d.ts","../../../node_modules/happy-dom/lib/nodes/html-template-element/HTMLTemplateElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-time-element/HTMLTimeElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-title-element/HTMLTitleElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-track-element/HTMLTrackElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-u-list-element/HTMLUListElement.d.ts","../../../node_modules/happy-dom/lib/nodes/html-video-element/HTMLVideoElement.d.ts","../../../node_modules/happy-dom/lib/config/IHTMLElementTagNameMap.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-svg-element/SVGSVGElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-element/SVGElement.d.ts","../../../node_modules/happy-dom/lib/nodes/svg-style-element/SVGStyleElement.d.ts","../../../node_modules/happy-dom/lib/nodes/node/Node.d.ts","../../../node_modules/happy-dom/lib/dom/DOMRectList.d.ts","../../../node_modules/happy-dom/lib/nodes/element/NamedNodeMap.d.ts","../../../node_modules/happy-dom/lib/nodes/parent-node/IParentNode.d.ts","../../../node_modules/happy-dom/lib/window/IScrollToOptions.d.ts","../../../node_modules/happy-dom/lib/nodes/element/Element.d.ts","../../../node_modules/happy-dom/lib/tree-walker/TNodeFilter.d.ts","../../../node_modules/happy-dom/lib/tree-walker/NodeIterator.d.ts","../../../node_modules/happy-dom/lib/tree-walker/TreeWalker.d.ts","../../../node_modules/happy-dom/lib/nodes/document-type/DocumentType.d.ts","../../../node_modules/happy-dom/lib/dom-implementation/DOMImplementation.d.ts","../../../node_modules/happy-dom/lib/nodes/comment/Comment.d.ts","../../../node_modules/happy-dom/lib/nodes/document/DocumentReadyStateEnum.d.ts","../../../node_modules/happy-dom/lib/range/RangeHowEnum.d.ts","../../../node_modules/happy-dom/lib/range/IRangeBoundaryPoint.d.ts","../../../node_modules/happy-dom/lib/range/Range.d.ts","../../../node_modules/happy-dom/lib/selection/Selection.d.ts","../../../node_modules/happy-dom/lib/nodes/processing-instruction/ProcessingInstruction.d.ts","../../../node_modules/happy-dom/lib/nodes/document/VisibilityStateEnum.d.ts","../../../node_modules/happy-dom/lib/fetch/Headers.d.ts","../../../node_modules/happy-dom/lib/fetch/types/THeadersInit.d.ts","../../../node_modules/happy-dom/lib/fetch/types/IResponseInit.d.ts","../../../node_modules/happy-dom/lib/form-data/FormData.d.ts","../../../node_modules/happy-dom/lib/fetch/types/TResponseBody.d.ts","../../../node_modules/happy-dom/lib/fetch/cache/response/CachedResponseStateEnum.d.ts","../../../node_modules/happy-dom/lib/fetch/cache/response/ICachedResponse.d.ts","../../../node_modules/happy-dom/lib/fetch/Response.d.ts","../../../node_modules/happy-dom/lib/fetch/preload/PreloadEntry.d.ts","../../../node_modules/happy-dom/lib/nodes/document/Document.d.ts","../../../node_modules/happy-dom/lib/browser/types/IBrowserPageViewport.d.ts","../../../node_modules/happy-dom/lib/console/IVirtualConsoleLogGroup.d.ts","../../../node_modules/happy-dom/lib/console/enums/VirtualConsoleLogLevelEnum.d.ts","../../../node_modules/happy-dom/lib/console/enums/VirtualConsoleLogTypeEnum.d.ts","../../../node_modules/happy-dom/lib/console/IVirtualConsoleLogEntry.d.ts","../../../node_modules/happy-dom/lib/console/IVirtualConsolePrinter.d.ts","../../../node_modules/happy-dom/lib/console/VirtualConsolePrinter.d.ts","../../../node_modules/happy-dom/lib/url/URL.d.ts","../../../node_modules/happy-dom/lib/cookie/enums/CookieSameSiteEnum.d.ts","../../../node_modules/happy-dom/lib/cookie/ICookie.d.ts","../../../node_modules/happy-dom/lib/cookie/IOptionalCookie.d.ts","../../../node_modules/happy-dom/lib/cookie/ICookieContainer.d.ts","../../../node_modules/happy-dom/lib/fetch/cache/response/ICacheableRequest.d.ts","../../../node_modules/happy-dom/lib/fetch/cache/response/ICacheableResponse.d.ts","../../../node_modules/happy-dom/lib/fetch/cache/response/IResponseCacheFileSystem.d.ts","../../../node_modules/happy-dom/lib/fetch/cache/response/IResponseCache.d.ts","../../../node_modules/happy-dom/lib/browser/utilities/BrowserExceptionObserver.d.ts","../../../node_modules/happy-dom/lib/browser/types/IBrowser.d.ts","../../../node_modules/happy-dom/lib/fetch/cache/preflight/ICachedPreflightResponse.d.ts","../../../node_modules/happy-dom/lib/fetch/cache/preflight/ICacheablePreflightRequest.d.ts","../../../node_modules/happy-dom/lib/fetch/cache/preflight/ICacheablePreflightResponse.d.ts","../../../node_modules/happy-dom/lib/fetch/cache/preflight/IPreflightResponseCache.d.ts","../../../node_modules/happy-dom/lib/module/types/IECMAScriptModuleImport.d.ts","../../../node_modules/happy-dom/lib/module/types/IECMAScriptModuleCachedResult.d.ts","../../../node_modules/happy-dom/lib/browser/types/IBrowserContext.d.ts","../../../node_modules/happy-dom/lib/browser/types/IReloadOptions.d.ts","../../../node_modules/happy-dom/lib/browser/types/IGoToOptions.d.ts","../../../node_modules/happy-dom/lib/browser/types/IOptionalBrowserPageViewport.d.ts","../../../node_modules/happy-dom/lib/browser/types/IBrowserPage.d.ts","../../../node_modules/happy-dom/lib/history/HistoryScrollRestorationEnum.d.ts","../../../node_modules/happy-dom/lib/history/IHistoryItem.d.ts","../../../node_modules/happy-dom/lib/history/HistoryItemList.d.ts","../../../node_modules/happy-dom/lib/browser/types/IBrowserFrame.d.ts","../../../node_modules/happy-dom/lib/clipboard/ClipboardItem.d.ts","../../../node_modules/happy-dom/lib/clipboard/Clipboard.d.ts","../../../node_modules/happy-dom/lib/css/CSSUnitValue.d.ts","../../../node_modules/happy-dom/lib/css/CSS.d.ts","../../../node_modules/happy-dom/lib/css/rules/CSSContainerRule.d.ts","../../../node_modules/happy-dom/lib/css/rules/CSSFontFaceRule.d.ts","../../../node_modules/happy-dom/lib/css/rules/CSSKeyframeRule.d.ts","../../../node_modules/happy-dom/lib/css/rules/CSSKeyframesRule.d.ts","../../../node_modules/happy-dom/lib/css/style-property-map/CSSKeywordValue.d.ts","../../../node_modules/happy-dom/lib/css/style-property-map/CSSStyleValue.d.ts","../../../node_modules/happy-dom/lib/css/style-property-map/StylePropertyMapReadOnly.d.ts","../../../node_modules/happy-dom/lib/css/style-property-map/StylePropertyMap.d.ts","../../../node_modules/happy-dom/lib/css/rules/CSSStyleRule.d.ts","../../../node_modules/happy-dom/lib/css/rules/CSSSupportsRule.d.ts","../../../node_modules/happy-dom/lib/custom-element/ICustomElementDefinition.d.ts","../../../node_modules/happy-dom/lib/custom-element/CustomElementRegistry.d.ts","../../../node_modules/happy-dom/lib/dom-parser/DOMParser.d.ts","../../../node_modules/happy-dom/lib/event/DataTransferItem.d.ts","../../../node_modules/happy-dom/lib/event/DataTransferItemList.d.ts","../../../node_modules/happy-dom/lib/event/DataTransfer.d.ts","../../../node_modules/happy-dom/lib/event/MessagePort.d.ts","../../../node_modules/happy-dom/lib/event/ITouchInit.d.ts","../../../node_modules/happy-dom/lib/event/Touch.d.ts","../../../node_modules/happy-dom/lib/event/IUIEventInit.d.ts","../../../node_modules/happy-dom/lib/event/UIEvent.d.ts","../../../node_modules/happy-dom/lib/event/events/IAnimationEventInit.d.ts","../../../node_modules/happy-dom/lib/event/events/AnimationEvent.d.ts","../../../node_modules/happy-dom/lib/event/events/IClipboardEventInit.d.ts","../../../node_modules/happy-dom/lib/event/events/ClipboardEvent.d.ts","../../../node_modules/happy-dom/lib/event/events/ICustomEventInit.d.ts","../../../node_modules/happy-dom/lib/event/events/CustomEvent.d.ts","../../../node_modules/happy-dom/lib/event/events/IErrorEventInit.d.ts","../../../node_modules/happy-dom/lib/event/events/ErrorEvent.d.ts","../../../node_modules/happy-dom/lib/event/events/IFocusEventInit.d.ts","../../../node_modules/happy-dom/lib/event/events/FocusEvent.d.ts","../../../node_modules/happy-dom/lib/event/events/IHashChangeEventInit.d.ts","../../../node_modules/happy-dom/lib/event/events/HashChangeEvent.d.ts","../../../node_modules/happy-dom/lib/event/events/IInputEventInit.d.ts","../../../node_modules/happy-dom/lib/event/events/InputEvent.d.ts","../../../node_modules/happy-dom/lib/event/events/IKeyboardEventInit.d.ts","../../../node_modules/happy-dom/lib/event/events/KeyboardEvent.d.ts","../../../node_modules/happy-dom/lib/event/events/IMediaQueryListInit.d.ts","../../../node_modules/happy-dom/lib/event/events/MediaQueryListEvent.d.ts","../../../node_modules/happy-dom/lib/event/events/IMessageEventInit.d.ts","../../../node_modules/happy-dom/lib/event/events/MessageEvent.d.ts","../../../node_modules/happy-dom/lib/event/events/IMouseEventInit.d.ts","../../../node_modules/happy-dom/lib/event/events/MouseEvent.d.ts","../../../node_modules/happy-dom/lib/event/events/IPointerEventInit.d.ts","../../../node_modules/happy-dom/lib/event/events/PointerEvent.d.ts","../../../node_modules/happy-dom/lib/event/events/IProgressEventInit.d.ts","../../../node_modules/happy-dom/lib/event/events/ProgressEvent.d.ts","../../../node_modules/happy-dom/lib/storage/Storage.d.ts","../../../node_modules/happy-dom/lib/event/events/IStorageEventInit.d.ts","../../../node_modules/happy-dom/lib/event/events/StorageEvent.d.ts","../../../node_modules/happy-dom/lib/event/events/ISubmitEventInit.d.ts","../../../node_modules/happy-dom/lib/event/events/SubmitEvent.d.ts","../../../node_modules/happy-dom/lib/event/events/ITouchEventInit.d.ts","../../../node_modules/happy-dom/lib/event/events/TouchEvent.d.ts","../../../node_modules/happy-dom/lib/event/events/IWheelEventInit.d.ts","../../../node_modules/happy-dom/lib/event/events/WheelEvent.d.ts","../../../node_modules/happy-dom/lib/exception/DOMException.d.ts","../../../node_modules/happy-dom/lib/fetch/AbortController.d.ts","../../../node_modules/happy-dom/lib/fetch/types/TRequestInfo.d.ts","../../../node_modules/happy-dom/lib/file/FileReader.d.ts","../../../node_modules/happy-dom/lib/history/History.d.ts","../../../node_modules/happy-dom/lib/intersection-observer/IntersectionObserverEntry.d.ts","../../../node_modules/happy-dom/lib/intersection-observer/IIntersectionObserverInit.d.ts","../../../node_modules/happy-dom/lib/intersection-observer/IntersectionObserver.d.ts","../../../node_modules/happy-dom/lib/match-media/MediaQueryList.d.ts","../../../node_modules/happy-dom/lib/mutation-observer/MutationObserver.d.ts","../../../node_modules/happy-dom/lib/navigator/Plugin.d.ts","../../../node_modules/happy-dom/lib/navigator/MimeType.d.ts","../../../node_modules/happy-dom/lib/navigator/MimeTypeArray.d.ts","../../../node_modules/happy-dom/lib/navigator/PluginArray.d.ts","../../../node_modules/happy-dom/lib/permissions/PermissionStatus.d.ts","../../../node_modules/happy-dom/lib/permissions/Permissions.d.ts","../../../node_modules/happy-dom/lib/navigator/Navigator.d.ts","../../../node_modules/happy-dom/lib/nodes/document/DocumentReadyStateManager.d.ts","../../../node_modules/happy-dom/lib/nodes/html-audio-element/Audio.d.ts","../../../node_modules/happy-dom/lib/nodes/html-document/HTMLDocument.d.ts","../../../node_modules/happy-dom/lib/nodes/html-image-element/Image.d.ts","../../../node_modules/happy-dom/lib/nodes/html-media-element/VTTRegion.d.ts","../../../node_modules/happy-dom/lib/nodes/html-media-element/VTTCue.d.ts","../../../node_modules/happy-dom/lib/nodes/html-unknown-element/HTMLUnknownElement.d.ts","../../../node_modules/happy-dom/lib/nodes/xml-document/XMLDocument.d.ts","../../../node_modules/happy-dom/lib/resize-observer/ResizeObserver.d.ts","../../../node_modules/happy-dom/lib/screen/Screen.d.ts","../../../node_modules/happy-dom/lib/screen/ScreenDetailed.d.ts","../../../node_modules/happy-dom/lib/screen/ScreenDetails.d.ts","../../../node_modules/happy-dom/lib/xml-http-request/XMLHttpRequestEventTarget.d.ts","../../../node_modules/happy-dom/lib/xml-http-request/XMLHttpRequestReadyStateEnum.d.ts","../../../node_modules/happy-dom/lib/xml-http-request/XMLHttpRequestUpload.d.ts","../../../node_modules/happy-dom/lib/xml-http-request/XMLHttpResponseTypeEnum.d.ts","../../../node_modules/happy-dom/lib/fetch/types/TRequestBody.d.ts","../../../node_modules/happy-dom/lib/xml-http-request/XMLHttpRequest.d.ts","../../../node_modules/happy-dom/lib/xml-serializer/XMLSerializer.d.ts","../../../node_modules/happy-dom/lib/window/INodeJSGlobal.d.ts","../../../node_modules/happy-dom/lib/nodes/html-canvas-element/CanvasCaptureMediaStreamTrack.d.ts","../../../node_modules/happy-dom/lib/svg/SVGUnitTypes.d.ts","../../../node_modules/happy-dom/lib/custom-element/CustomElementReactionStack.d.ts","../../../node_modules/happy-dom/lib/module/types/IModule.d.ts","../../../node_modules/happy-dom/lib/module/types/IModuleImportMapRule.d.ts","../../../node_modules/happy-dom/lib/module/types/IModuleImportMapScope.d.ts","../../../node_modules/happy-dom/lib/module/types/IModuleImportMap.d.ts","../../../node_modules/happy-dom/lib/css/rules/CSSScopeRule.d.ts","../../../node_modules/happy-dom/lib/event/events/IPopStateEventInit.d.ts","../../../node_modules/happy-dom/lib/event/events/PopStateEvent.d.ts","../../../node_modules/happy-dom/lib/event/events/ICloseEventInit.d.ts","../../../node_modules/happy-dom/lib/event/events/CloseEvent.d.ts","../../../node_modules/@types/ws/index.d.mts","../../../node_modules/happy-dom/lib/web-socket/WebSocket.d.ts","../../../node_modules/happy-dom/lib/window/BrowserWindow.d.ts","../../../node_modules/happy-dom/lib/event/EventTarget.d.ts","../../../node_modules/happy-dom/lib/fetch/AbortSignal.d.ts","../../../node_modules/happy-dom/lib/fetch/types/TRequestMode.d.ts","../../../node_modules/happy-dom/lib/fetch/types/TRequestCredentials.d.ts","../../../node_modules/happy-dom/lib/fetch/types/TRequestRedirect.d.ts","../../../node_modules/happy-dom/lib/fetch/types/IRequestInit.d.ts","../../../node_modules/happy-dom/lib/fetch/Request.d.ts","../../../node_modules/happy-dom/lib/fetch/types/ISyncResponse.d.ts","../../../node_modules/happy-dom/lib/fetch/types/IFetchInterceptor.d.ts","../../../node_modules/happy-dom/lib/fetch/types/IVirtualServer.d.ts","../../../node_modules/happy-dom/lib/fetch/types/IFetchRequestHeaders.d.ts","../../../node_modules/happy-dom/lib/window/IOptionalTimerLoopsLimit.d.ts","../../../node_modules/happy-dom/lib/module/types/IResolveNodeModules.d.ts","../../../node_modules/happy-dom/lib/browser/types/IBrowserSettings.d.ts","../../../node_modules/happy-dom/lib/browser/BrowserFrame.d.ts","../../../node_modules/happy-dom/lib/browser/BrowserPage.d.ts","../../../node_modules/happy-dom/lib/browser/BrowserContext.d.ts","../../../node_modules/happy-dom/lib/browser/types/IOptionalBrowserSettings.d.ts","../../../node_modules/happy-dom/lib/browser/Browser.d.ts","../../../node_modules/happy-dom/lib/browser/detached-browser/DetachedBrowserFrame.d.ts","../../../node_modules/happy-dom/lib/browser/detached-browser/DetachedBrowserPage.d.ts","../../../node_modules/happy-dom/lib/browser/detached-browser/DetachedBrowserContext.d.ts","../../../node_modules/happy-dom/lib/browser/detached-browser/DetachedBrowser.d.ts","../../../node_modules/happy-dom/lib/console/VirtualConsole.d.ts","../../../node_modules/happy-dom/lib/html-serializer/HTMLSerializer.d.ts","../../../node_modules/happy-dom/lib/tree-walker/NodeFilter.d.ts","../../../node_modules/happy-dom/lib/window/DetachedWindowAPI.d.ts","../../../node_modules/happy-dom/lib/window/Window.d.ts","../../../node_modules/happy-dom/lib/window/GlobalWindow.d.ts","../../../node_modules/happy-dom/lib/xml-parser/XMLParser.d.ts","../../../node_modules/happy-dom/lib/index.d.ts","../../../node_modules/vitest/optional-types.d.ts","../../../node_modules/@vitest/utils/dist/source-map.d.ts","../../../node_modules/vitest/dist/chunks/coverage.d.BZtK59WP.d.ts","../../../node_modules/@vitest/utils/dist/serialize.d.ts","../../../node_modules/@vitest/utils/dist/error.d.ts","../../../node_modules/vitest/dist/browser.d.ts","../../../node_modules/vitest/browser/context.d.ts","../../../node_modules/@vitest/snapshot/dist/manager.d.ts","../../../node_modules/vitest/dist/chunks/reporters.d.DtoKVV2s.d.ts","../../../node_modules/vitest/dist/chunks/plugin.d.DwFIiJ7i.d.ts","../../../node_modules/vitest/dist/config.d.ts","../../../node_modules/vitest/config.d.ts","../../../node_modules/@babel/types/lib/index.d.ts","../../../node_modules/@types/babel__generator/index.d.ts","../../../node_modules/@types/babel__core/node_modules/@babel/parser/typings/babel-parser.d.ts","../../../node_modules/@types/babel__template/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/zod/v4/core/json-schema.d.cts","../../../node_modules/zod/v4/core/standard-schema.d.cts","../../../node_modules/zod/v4/core/registries.d.cts","../../../node_modules/zod/v4/core/to-json-schema.d.cts","../../../node_modules/zod/v4/core/util.d.cts","../../../node_modules/zod/v4/core/versions.d.cts","../../../node_modules/zod/v4/core/schemas.d.cts","../../../node_modules/zod/v4/core/checks.d.cts","../../../node_modules/zod/v4/core/errors.d.cts","../../../node_modules/zod/v4/core/core.d.cts","../../../node_modules/zod/v4/core/parse.d.cts","../../../node_modules/zod/v4/core/regexes.d.cts","../../../node_modules/zod/v4/locales/ar.d.cts","../../../node_modules/zod/v4/locales/az.d.cts","../../../node_modules/zod/v4/locales/be.d.cts","../../../node_modules/zod/v4/locales/bg.d.cts","../../../node_modules/zod/v4/locales/ca.d.cts","../../../node_modules/zod/v4/locales/cs.d.cts","../../../node_modules/zod/v4/locales/da.d.cts","../../../node_modules/zod/v4/locales/de.d.cts","../../../node_modules/zod/v4/locales/en.d.cts","../../../node_modules/zod/v4/locales/eo.d.cts","../../../node_modules/zod/v4/locales/es.d.cts","../../../node_modules/zod/v4/locales/fa.d.cts","../../../node_modules/zod/v4/locales/fi.d.cts","../../../node_modules/zod/v4/locales/fr.d.cts","../../../node_modules/zod/v4/locales/fr-CA.d.cts","../../../node_modules/zod/v4/locales/he.d.cts","../../../node_modules/zod/v4/locales/hu.d.cts","../../../node_modules/zod/v4/locales/hy.d.cts","../../../node_modules/zod/v4/locales/id.d.cts","../../../node_modules/zod/v4/locales/is.d.cts","../../../node_modules/zod/v4/locales/it.d.cts","../../../node_modules/zod/v4/locales/ja.d.cts","../../../node_modules/zod/v4/locales/ka.d.cts","../../../node_modules/zod/v4/locales/kh.d.cts","../../../node_modules/zod/v4/locales/km.d.cts","../../../node_modules/zod/v4/locales/ko.d.cts","../../../node_modules/zod/v4/locales/lt.d.cts","../../../node_modules/zod/v4/locales/mk.d.cts","../../../node_modules/zod/v4/locales/ms.d.cts","../../../node_modules/zod/v4/locales/nl.d.cts","../../../node_modules/zod/v4/locales/no.d.cts","../../../node_modules/zod/v4/locales/ota.d.cts","../../../node_modules/zod/v4/locales/ps.d.cts","../../../node_modules/zod/v4/locales/pl.d.cts","../../../node_modules/zod/v4/locales/pt.d.cts","../../../node_modules/zod/v4/locales/ru.d.cts","../../../node_modules/zod/v4/locales/sl.d.cts","../../../node_modules/zod/v4/locales/sv.d.cts","../../../node_modules/zod/v4/locales/ta.d.cts","../../../node_modules/zod/v4/locales/th.d.cts","../../../node_modules/zod/v4/locales/tr.d.cts","../../../node_modules/zod/v4/locales/ua.d.cts","../../../node_modules/zod/v4/locales/uk.d.cts","../../../node_modules/zod/v4/locales/ur.d.cts","../../../node_modules/zod/v4/locales/uz.d.cts","../../../node_modules/zod/v4/locales/vi.d.cts","../../../node_modules/zod/v4/locales/zh-CN.d.cts","../../../node_modules/zod/v4/locales/zh-TW.d.cts","../../../node_modules/zod/v4/locales/yo.d.cts","../../../node_modules/zod/v4/locales/index.d.cts","../../../node_modules/zod/v4/core/doc.d.cts","../../../node_modules/zod/v4/core/api.d.cts","../../../node_modules/zod/v4/core/json-schema-processors.d.cts","../../../node_modules/zod/v4/core/json-schema-generator.d.cts","../../../node_modules/zod/v4/core/index.d.cts","../../../node_modules/zod/v4/classic/errors.d.cts","../../../node_modules/zod/v4/classic/parse.d.cts","../../../node_modules/zod/v4/classic/schemas.d.cts","../../../node_modules/zod/v4/classic/checks.d.cts","../../../node_modules/zod/v4/classic/compat.d.cts","../../../node_modules/zod/v4/classic/from-json-schema.d.cts","../../../node_modules/zod/v4/classic/iso.d.cts","../../../node_modules/zod/v4/classic/coerce.d.cts","../../../node_modules/zod/v4/classic/external.d.cts","../../../node_modules/zod/index.d.cts","../../../node_modules/babel-plugin-react-compiler/dist/index.d.ts","../../../node_modules/@vitejs/plugin-react/types/optionalTypes.d.ts","../../../node_modules/@vitejs/plugin-react/dist/index.d.ts","../../../tools/vitest/index.ts","../vitest.config.ts"],"fileIdsList":[[1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,806,811,1346,1409,1417,1421,1424,1426,1427,1428,1441],[807,811,812,813,814,815,1346,1409,1417,1421,1424,1426,1427,1428,1441],[807,811,812,813,814,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,803,804,806,807,810,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,806,807,808,811,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,803,804,806,1346,1409,1417,1421,1424,1426,1427,1428,1441],[863,1346,1409,1417,1421,1424,1426,1427,1428,1441],[864,874,1346,1409,1417,1421,1424,1426,1427,1428,1441],[863,864,865,866,867,868,869,870,871,872,873,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,89,804,861,863,1346,1409,1417,1421,1424,1426,1427,1428,1441],[878,879,885,886,887,890,891,892,893,894,895,896,897,898,899,901,902,904,906,1346,1409,1417,1421,1424,1426,1427,1428,1441],[878,879,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,877,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,806,908,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,806,808,908,909,1346,1409,1417,1421,1424,1426,1427,1428,1441],[908,910,911,912,1346,1409,1417,1421,1424,1426,1427,1428,1441],[908,910,911,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,806,1346,1409,1417,1421,1424,1426,1427,1428,1441],[914,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,803,804,806,883,1346,1409,1417,1421,1424,1426,1427,1428,1441],[920,1346,1409,1417,1421,1424,1426,1427,1428,1441],[916,917,918,1346,1409,1417,1421,1424,1426,1427,1428,1441],[916,917,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,806,808,916,1346,1409,1417,1421,1424,1426,1427,1428,1441],[809,922,923,924,1346,1409,1417,1421,1424,1426,1427,1428,1441],[809,922,923,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,806,808,809,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,803,804,806,810,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,808,809,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,806,809,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,806,884,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,806,808,1346,1409,1417,1421,1424,1426,1427,1428,1441],[885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,904,926,927,928,929,930,931,932,934,1346,1409,1417,1421,1424,1426,1427,1428,1441],[885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,904,905,926,927,928,929,930,931,932,933,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,806,883,884,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,806,883,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,806,808,824,884,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,856,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,803,804,876,1346,1409,1417,1421,1424,1426,1427,1428,1441],[936,937,944,945,946,947,948,949,950,951,952,953,954,955,957,960,963,964,965,1346,1409,1417,1421,1424,1426,1427,1428,1441],[903,936,937,944,945,946,947,948,949,950,951,952,953,954,955,957,960,963,964,1346,1409,1417,1421,1424,1426,1427,1428,1441],[89,805,943,962,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,963,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,89,1346,1409,1417,1421,1424,1426,1427,1428,1441],[967,968,1346,1409,1417,1421,1424,1426,1427,1428,1441],[967,1346,1409,1417,1421,1424,1426,1427,1428,1441],[861,865,866,867,868,869,870,871,872,970,1346,1409,1417,1421,1424,1426,1427,1428,1441],[861,863,865,866,867,868,869,870,871,872,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,806,808,824,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,89,803,804,860,863,1346,1409,1417,1421,1424,1426,1427,1428,1441],[862,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,808,823,824,833,856,860,861,1176,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,806,863,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,972,1346,1409,1417,1421,1424,1426,1427,1428,1441],[973,974,1346,1409,1417,1421,1424,1426,1427,1428,1441],[972,973,1346,1409,1417,1421,1424,1426,1427,1428,1441],[976,977,978,979,980,981,983,985,986,987,988,989,990,991,992,1346,1409,1417,1421,1424,1426,1427,1428,1441],[863,976,977,978,979,980,981,983,985,986,987,988,989,990,991,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,806,808,824,984,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,89,803,804,860,863,984,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,982,983,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,806,982,984,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,806,808,883,1346,1409,1417,1421,1424,1426,1427,1428,1441],[883,994,995,996,997,998,999,1000,1346,1409,1417,1421,1424,1426,1427,1428,1441],[883,994,995,996,997,998,999,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,806,882,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,808,883,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1002,1003,1004,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1002,1003,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,851,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,824,832,851,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,806,836,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,804,823,851,860,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,832,851,1346,1409,1417,1421,1424,1426,1427,1428,1441],[851,1346,1409,1417,1421,1424,1426,1427,1428,1441],[803,851,1346,1409,1417,1421,1424,1426,1427,1428,1441],[832,851,1346,1409,1417,1421,1424,1426,1427,1428,1441],[804,833,851,1346,1409,1417,1421,1424,1426,1427,1428,1441],[841,851,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,806,832,841,851,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,830,851,1346,1409,1417,1421,1424,1426,1427,1428,1441],[805,823,833,860,1346,1409,1417,1421,1424,1426,1427,1428,1441],[829,831,832,834,837,838,839,840,842,843,844,845,846,847,848,849,850,851,852,853,854,855,1346,1409,1417,1421,1424,1426,1427,1428,1441],[841,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,804,829,831,832,833,834,837,838,839,840,841,842,843,844,845,846,847,848,849,850,852,856,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,803,804,806,880,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,881,883,1346,1409,1417,1421,1424,1426,1427,1428,1441],[881,1346,1409,1417,1421,1424,1426,1427,1428,1441],[805,816,875,882,907,913,915,919,921,925,933,935,962,966,969,971,975,993,1001,1005,1007,1009,1011,1018,1033,1043,1059,1072,1079,1083,1085,1093,1113,1123,1127,1134,1149,1151,1153,1161,1173,1175,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,806,1001,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1006,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,806,943,1346,1409,1417,1421,1424,1426,1427,1428,1441],[936,937,943,944,945,946,947,948,949,950,951,952,953,954,955,957,958,959,960,961,1346,1409,1417,1421,1424,1426,1427,1428,1441],[903,936,937,942,943,944,945,946,947,948,949,950,951,952,953,954,955,957,958,959,960,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,89,803,804,860,938,939,940,941,942,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,938,943,1346,1409,1417,1421,1424,1426,1427,1428,1441],[938,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,806,808,823,832,833,856,860,943,962,1346,1409,1417,1421,1424,1426,1427,1428,1441],[89,943,956,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,938,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,806,942,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,943,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1008,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1010,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1012,1013,1014,1015,1016,1017,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1012,1013,1014,1015,1016,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,806,1012,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,806,808,884,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,806,1035,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1035,1036,1037,1038,1039,1040,1041,1042,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1035,1036,1037,1038,1039,1040,1041,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,803,804,806,883,1034,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,89,803,804,860,1046,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1045,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,808,823,824,833,856,860,1044,1047,1059,1176,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,806,1046,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1062,1064,1065,1066,1067,1068,1069,1071,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1061,1062,1064,1065,1066,1067,1068,1069,1070,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,1063,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,89,803,804,860,1061,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1060,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,808,823,833,856,860,1062,1176,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,806,1061,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1073,1074,1075,1076,1077,1078,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1073,1074,1075,1076,1077,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,806,1073,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1084,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1080,1081,1082,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1080,1081,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,806,1086,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1086,1087,1088,1089,1090,1091,1092,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1086,1087,1088,1089,1090,1091,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1346,1409,1417,1421,1424,1426,1427,1428,1441],[903,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1346,1409,1417,1421,1424,1426,1427,1428,1441],[903,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,806,1114,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1114,1115,1116,1117,1118,1120,1121,1122,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1114,1115,1116,1117,1118,1120,1121,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,806,1114,1119,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1124,1125,1126,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1124,1125,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,803,805,806,883,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,806,1124,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1128,1129,1130,1131,1132,1133,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1128,1129,1130,1131,1132,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,806,1128,1129,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,806,1129,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,806,808,1128,1129,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,803,804,806,1128,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1136,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,806,884,1136,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,1137,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,806,808,1136,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,1135,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1152,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1150,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,806,1155,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1154,1155,1156,1157,1158,1159,1160,1346,1409,1417,1421,1424,1426,1427,1428,1441],[806,1154,1155,1156,1157,1158,1159,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,806,933,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1164,1165,1166,1167,1168,1169,1170,1172,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1163,1164,1165,1166,1167,1168,1169,1170,1171,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,89,803,804,860,1163,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1162,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,808,823,833,856,860,1164,1173,1176,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,806,1163,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,804,1346,1409,1417,1421,1424,1426,1427,1428,1441],[806,1174,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,806,835,1346,1409,1417,1421,1424,1426,1427,1428,1441],[803,1346,1409,1417,1421,1424,1426,1427,1428,1441],[857,858,859,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,808,823,858,1346,1409,1417,1421,1424,1426,1427,1428,1441],[806,808,833,856,857,1346,1409,1417,1421,1424,1426,1427,1428,1441],[802,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,805,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,825,856,1346,1409,1417,1421,1424,1426,1427,1428,1441],[819,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,89,819,1346,1409,1417,1421,1424,1426,1427,1428,1441],[674,1346,1409,1417,1421,1424,1426,1427,1428,1441],[817,819,820,821,822,1346,1409,1417,1421,1424,1426,1427,1428,1441],[818,819,1346,1409,1417,1421,1424,1426,1427,1428,1441],[189,1346,1409,1417,1421,1424,1426,1427,1428,1441],[190,1346,1409,1417,1421,1424,1426,1427,1428,1441],[189,190,191,192,193,194,195,1346,1409,1417,1421,1424,1426,1427,1428,1441],[825,1346,1409,1417,1421,1424,1426,1427,1428,1441],[826,827,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,828,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1486,1488],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1487],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1486,1489],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1484,1486],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1483,1484,1485],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1483,1486],[64,67,68,71,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,67,82,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,68,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,180,181,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,67,68,89,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,67,68,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,67,68,106,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,67,68,76,78,80,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,67,68,89,114,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,67,68,76,80,101,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,181,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,67,68,76,78,80,101,105,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,67,68,89,105,106,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,67,68,76,126,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,68,105,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,67,68,76,78,80,101,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,67,68,98,100,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,67,68,105,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,1251,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,67,68,76,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,67,68,105,159,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,67,68,105,144,162,1346,1409,1417,1421,1424,1426,1427,1428,1441],[672,673,674,675,676,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1470],[1330,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1328,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1325,1326,1327,1328,1329,1332,1333,1334,1335,1336,1337,1338,1339,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1320,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1331,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1325,1326,1327,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1325,1326,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1328,1329,1331,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1326,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1319,1321,1322,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,1324,1340,1341,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1346,1409,1417,1421,1424,1426,1427,1428,1441,2023,2024,2025,2027,2028],[1346,1409,1417,1421,1424,1426,1427,1428,1441,2023],[1346,1409,1417,1421,1424,1426,1427,1428,1441,2023,2025],[1299,1300,1346,1409,1417,1421,1424,1426,1427,1428,1441],[662,1346,1409,1417,1421,1424,1426,1427,1428,1441],[686,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1346,1406,1407,1409,1417,1421,1424,1426,1427,1428,1441],[1346,1408,1409,1417,1421,1424,1426,1427,1428,1441],[1409,1417,1421,1424,1426,1427,1428,1441],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1449],[1346,1409,1410,1415,1417,1420,1421,1424,1426,1427,1428,1430,1441,1446,1458],[1346,1409,1410,1411,1417,1420,1421,1424,1426,1427,1428,1441],[1346,1409,1412,1417,1421,1424,1426,1427,1428,1441,1459],[1346,1409,1413,1414,1417,1421,1424,1426,1427,1428,1432,1441],[1346,1409,1414,1417,1421,1424,1426,1427,1428,1441,1446,1455],[1346,1409,1415,1417,1420,1421,1424,1426,1427,1428,1430,1441],[1346,1408,1409,1416,1417,1421,1424,1426,1427,1428,1441],[1346,1409,1417,1418,1421,1424,1426,1427,1428,1441],[1346,1409,1417,1419,1420,1421,1424,1426,1427,1428,1441],[1346,1408,1409,1417,1420,1421,1424,1426,1427,1428,1441],[1346,1409,1417,1420,1421,1422,1424,1426,1427,1428,1441,1446,1458],[1346,1409,1417,1420,1421,1422,1424,1426,1427,1428,1441,1446,1449],[1346,1396,1409,1417,1420,1421,1423,1424,1426,1427,1428,1430,1441,1446,1458],[1346,1409,1417,1420,1421,1423,1424,1426,1427,1428,1430,1441,1446,1455,1458],[1346,1409,1417,1421,1423,1424,1425,1426,1427,1428,1441,1446,1455,1458],[1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465],[1346,1409,1417,1420,1421,1424,1426,1427,1428,1441],[1346,1409,1417,1421,1424,1426,1428,1441],[1346,1409,1417,1421,1424,1426,1427,1428,1429,1441,1458],[1346,1409,1417,1420,1421,1424,1426,1427,1428,1430,1441,1446],[1346,1409,1417,1421,1424,1426,1427,1428,1432,1441],[1346,1409,1417,1421,1424,1426,1427,1428,1433,1441],[1346,1409,1417,1420,1421,1424,1426,1427,1428,1436,1441],[1346,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465],[1346,1409,1417,1421,1424,1426,1427,1428,1438,1441],[1346,1409,1417,1421,1424,1426,1427,1428,1439,1441],[1346,1409,1414,1417,1421,1424,1426,1427,1428,1430,1441,1449],[1346,1409,1417,1420,1421,1424,1426,1427,1428,1441,1442],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1443,1459,1462],[1346,1409,1417,1420,1421,1424,1426,1427,1428,1441,1446,1448,1449],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1447,1449],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1449,1459],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1450],[1346,1406,1409,1417,1421,1424,1426,1427,1428,1441,1446,1452,1458],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1446,1451],[1346,1409,1417,1420,1421,1424,1426,1427,1428,1441,1453,1454],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1453,1454],[1346,1409,1414,1417,1421,1424,1426,1427,1428,1430,1441,1446,1455],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1456],[1346,1409,1417,1421,1424,1426,1427,1428,1430,1441,1457],[1346,1409,1417,1421,1423,1424,1426,1427,1428,1439,1441,1458],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1459,1460],[1346,1409,1414,1417,1421,1424,1426,1427,1428,1441,1460],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1446,1461],[1346,1409,1417,1421,1424,1426,1427,1428,1429,1441,1462],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1463],[1346,1409,1412,1417,1421,1424,1426,1427,1428,1441],[1346,1409,1414,1417,1421,1424,1426,1427,1428,1441],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1459],[1346,1396,1409,1417,1421,1424,1426,1427,1428,1441],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1458],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1464],[1346,1409,1417,1421,1424,1426,1427,1428,1436,1441],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1454],[1346,1396,1409,1417,1420,1421,1422,1424,1426,1427,1428,1436,1441,1446,1449,1458,1461,1462,1464],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1446,1465],[64,1221,1346,1409,1417,1421,1424,1426,1427,1428,1441],[62,63,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1346,1409,1417,1420,1421,1423,1424,1425,1426,1427,1428,1430,1441,1446,1455,1458,1465,1466],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1548,2021,2108],[1346,1409,1417,1421,1424,1426,1427,1428,1441,2107],[1272,1278,1296,1297,1298,1301,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1308,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1308,1309,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1276,1278,1279,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1276,1278,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1276,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1271,1276,1287,1288,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1271,1276,1287,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1295,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1271,1277,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1271,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1271,1273,1277,1346,1409,1417,1421,1424,1426,1427,1428,1441,2014],[1273,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1271,1272,1273,1274,1275,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1346,1409,1417,1421,1424,1426,1427,1428,1441,2023,2028,2029,2106],[171,172,1346,1409,1417,1421,1424,1426,1427,1428,1441],[171,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,82,1346,1409,1417,1421,1424,1426,1427,1428,1441],[200,1346,1409,1417,1421,1424,1426,1427,1428,1441],[198,200,1346,1409,1417,1421,1424,1426,1427,1428,1441],[198,1346,1409,1417,1421,1424,1426,1427,1428,1441],[200,264,265,1346,1409,1417,1421,1424,1426,1427,1428,1441],[200,267,1346,1409,1417,1421,1424,1426,1427,1428,1441],[200,268,1346,1409,1417,1421,1424,1426,1427,1428,1441],[285,1346,1409,1417,1421,1424,1426,1427,1428,1441],[200,201,202,203,204,205,206,207,208,209,210,211,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,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,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,1346,1409,1417,1421,1424,1426,1427,1428,1441],[200,361,1346,1409,1417,1421,1424,1426,1427,1428,1441],[198,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,1346,1409,1417,1421,1424,1426,1427,1428,1441],[200,265,385,1346,1409,1417,1421,1424,1426,1427,1428,1441],[198,382,383,1346,1409,1417,1421,1424,1426,1427,1428,1441],[200,382,1346,1409,1417,1421,1424,1426,1427,1428,1441],[384,1346,1409,1417,1421,1424,1426,1427,1428,1441],[197,198,199,1346,1409,1417,1421,1424,1426,1427,1428,1441],[658,1346,1409,1417,1421,1424,1426,1427,1428,1441],[659,1346,1409,1417,1421,1424,1426,1427,1428,1441],[632,652,1346,1409,1417,1421,1424,1426,1427,1428,1441],[626,1346,1409,1417,1421,1424,1426,1427,1428,1441],[627,631,632,633,634,635,637,639,640,645,646,655,1346,1409,1417,1421,1424,1426,1427,1428,1441],[627,632,1346,1409,1417,1421,1424,1426,1427,1428,1441],[635,652,654,657,1346,1409,1417,1421,1424,1426,1427,1428,1441],[626,627,628,629,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,656,657,1346,1409,1417,1421,1424,1426,1427,1428,1441],[655,1346,1409,1417,1421,1424,1426,1427,1428,1441],[625,627,628,630,638,647,650,651,656,1346,1409,1417,1421,1424,1426,1427,1428,1441],[632,657,1346,1409,1417,1421,1424,1426,1427,1428,1441],[653,655,657,1346,1409,1417,1421,1424,1426,1427,1428,1441],[626,627,632,635,655,1346,1409,1417,1421,1424,1426,1427,1428,1441],[639,1346,1409,1417,1421,1424,1426,1427,1428,1441],[629,637,639,640,1346,1409,1417,1421,1424,1426,1427,1428,1441],[629,1346,1409,1417,1421,1424,1426,1427,1428,1441],[629,639,1346,1409,1417,1421,1424,1426,1427,1428,1441],[633,634,635,639,640,645,1346,1409,1417,1421,1424,1426,1427,1428,1441],[635,636,640,644,646,655,1346,1409,1417,1421,1424,1426,1427,1428,1441],[627,639,648,1346,1409,1417,1421,1424,1426,1427,1428,1441],[628,629,630,1346,1409,1417,1421,1424,1426,1427,1428,1441],[635,655,1346,1409,1417,1421,1424,1426,1427,1428,1441],[635,1346,1409,1417,1421,1424,1426,1427,1428,1441],[626,627,1346,1409,1417,1421,1424,1426,1427,1428,1441],[627,1346,1409,1417,1421,1424,1426,1427,1428,1441],[631,1346,1409,1417,1421,1424,1426,1427,1428,1441],[635,640,652,653,654,655,657,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1314,1315,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1314,1315,1316,1317,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1314,1316,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1314,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1867],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1559,1851,1852,1993,1995,1996,1997],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1846,1850,1856,1858,1859,1995,1998],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1462,1549,1560,1689,1832,1834,1860,1861,1866,1867,1979,1995],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1462,1559,1832,1835,1841,1860,1861,1862,1863,1994,1996],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1559,1851,1852,1867,1979,1993,1997,2000,2001],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1846,1850,1856,1858,1859,2000,2002],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1462,1549,1560,1689,1832,1834,1860,1861,1866,1867,1979,2000],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1462,1559,1832,1835,1841,1860,1861,1862,1863,1999,2001],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1559,1851,1859,1863,1993],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1846,1850,1852,1856,1858,1863],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1462,1549,1560,1689,1832,1834,1860,1861,1863,1866,1979],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1462,1559,1832,1835,1841,1859,1860,1861,1862,1867],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1550,1551,1835,1979,1988,1989,1990,1991,1992],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1706,1860],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1550,1551,1862,1979,1988,1989,1990,1991,1992],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1826,1979],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1979],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1868,1979],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1594],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1590,1591,1597,1598,1599,1600,1602,1603,1604,1605,1606,1607,1609,1610,1614,1619,1655,1656,1671,1672,1673,1674,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1707,1708,1709,1710,1711,1712,1713,1714,1715,1796,1797,1798,1799,1800,1801],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1717,1718,1719,1722,1724,1725,1726,1727,1729,1732,1733,1734,1737,1738,1739,1740,1741,1742,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1765,1767,1768,1769,1770,1771,1772,1774,1775,1776,1777,1778,1779,1780,1781,1782,1787,1788,1789,1790,1791,1792,1803,1805],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1836,1837,1838],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1554,1837,1839],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1559,1840],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1554,1837,1839,1840],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1843],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1842,1844,1845],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1870],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1579,1580,1586,1979],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1581,1585,1979],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1584],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1581,1811,1979],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1575],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1582],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1579,1583],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1579,1581,1587],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1581],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1579,1581,1874],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1579,1583,1585],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1579,1582],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1579,1582,1587,1879],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1587],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1878],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1587,1876,1877],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1581,1586],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1811,1979],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1590,1806,1882,1979],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1590],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1815,1834],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1834,1979],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1624],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1623],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1620,1621],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1622],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1620],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1811],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1811],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1626,1627,1631],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1623,1625,1626,1627,1628,1629,1630],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1626],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1595,1886],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1595],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1595,1885],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1552,1553,1980],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1554,1555,1558,1979],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1981],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1980],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1552,1979],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1556,1557],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1554],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1889,1980],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1554,1891,1979],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1554,1893],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1554,1887,1895],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1554,1975],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1554,1897],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1892,1899],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1892,1901,1980],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1554,1903],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1552],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1552,1887],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1891,1980],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1887,1891],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1891],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1552,1661],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1552,1888,1979],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1913,1916],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1552,1919],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1552,1590],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1890,1891],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1887,1892,1905],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1892,1907],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1554,1909],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1554,1661,1662],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1554,1888,1911,1979],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1892,1913,1980],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1914,1915],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1554,1973],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1554,1917],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1554,1919,1920],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1554,1590,1922],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1890,1892,1924],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1892,1926],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1979,1981],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1554,1979,1980],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1826,1979],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1449,1458,1549,1594,1706,1825,1828,1930,1979,1981,1982,1983,1984,1985],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1449,1549,1594,1825,1827,1828,1829,1831,1979],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1825],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1853,1854,1855],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1825,1830],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1831,1847,1848,1849],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1832],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1832,1979,1986,1987],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1706,1826,1842,1961,1981,1982,1983,1984],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1826],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1825,2010],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1449,1458,1594,1828],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1842,1986],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1449,1549],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1594,1918,1980],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1594,1595,1606,1609,1614,1979],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1864,1867,1979],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1865],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1828,1864],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1795,1806],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1458,1549,1550,1551,1552,1553,1554,1558,1559,1565,1581,1582,1583,1584,1585,1586,1587,1589,1590,1591,1592,1594,1595,1596,1597,1598,1599,1600,1602,1603,1604,1605,1606,1607,1609,1610,1613,1614,1618,1619,1621,1622,1639,1655,1656,1658,1661,1664,1665,1666,1668,1669,1670,1671,1672,1673,1674,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1707,1708,1709,1710,1711,1712,1713,1714,1715,1794,1795,1796,1797,1798,1799,1800,1801,1803,1804,1806,1811,1813,1814,1815,1817,1821,1822,1823,1825,1828,1832,1834,1837,1838,1841,1842,1843,1844,1845,1852,1859,1863,1867,1868,1869,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1883,1884,1885,1886,1887,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1913,1914,1916,1917,1918,1919,1922,1923,1924,1925,1926,1927,1928,1929,1931,1932,1933,1935,1937,1942,1943,1947,1948,1950,1951,1952,1953,1954,1955,1956,1963,1972,1974,1978,1979,1980,1981,1986,1987,1988,1989,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1811,1933,1934],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1622,1806],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1867],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1554,1558,1979,1980],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1857],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1969,1970],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1969],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1565,1566],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1565,1566,1806,1979],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1564,1806],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1938],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1939],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1594,1828,1869,1940,1941,1943,1979],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1561,1806,1811],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1615,1616,1806,1811],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1806],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1806,1811],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1561,1617],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1561,1563,1592,1793,1802,1806,1811],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1561,1806],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1554,1561,1563,1577,1586,1589,1590,1592,1614,1618,1655,1673,1684,1687,1688,1707,1778,1793,1794,1802,1804,1806,1811,1812,1813,1814,1815,1816,1817,1818,1821,1822,1823,1824,1833,1979],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1554,1561,1563,1587,1589,1592,1615,1616,1622,1653,1793,1795,1802,1806,1807,1808,1809,1810],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1589,1811],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1554,1590,1653,1654],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1671],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1670],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1590],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1554,1590],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1554,1563,1590,1604,1608,1614],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1661,1677],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1554,1590,1594,1664,1676],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1594,1675],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1590,1592,1600],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1554,1589,1590],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1554,1590],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1806,1834],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1554,1587,1588,1589,1811],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1590,1592,1602,1603,1606,1609,1614],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1592,1611,1612,1614],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1554,1590,1606,1609,1611,1612,1613],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1563,1611],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1598,1602,1603,1606,1607,1609,1610],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1554,1589,1590,1653,1689,1834,1979],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1691],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1554,1563,1590,1593,1596,1604,1605,1608,1614],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1554,1590,1597,1598,1599,1602,1603,1606,1609,1614],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1590,1614],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1554,1586,1589,1590,1653],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1590,1592,1656],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1554,1590,1653,1657,1658,1664,1667,1668,1669],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1661,1663,1980],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1554,1659,1660,1980],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1980],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1554,1665,1666,1667,1980],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1554,1668,1980],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1665],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1668,1980],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1665,1794,1949],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1563,1590,1604],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1590,1608,1614,1834,1979],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1589,1590,1602,1614],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1563,1590,1604,1608,1614],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1554,1589,1590,1653,1706],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1592,1600,1602],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1554,1563,1590,1592,1600,1601,1604,1608,1614,1979],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1554,1589,1590,1618,1806,1811],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1586,1590],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1590,1592,1710,1713,1714],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1590,1592,1711],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1590,1713],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1590,1794,1795,1806],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1554,1563,1590,1593,1604,1608,1614],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1554,1590,1668],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1568,1576],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1568,1811],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1568,1571],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1563,1568,1811],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1561,1562,1563,1565,1567,1568,1569,1570,1572,1573,1574,1577,1578,1591,1602,1603,1614,1619,1805,1811,1834,1980],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1806],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1563,1592,1793,1802,1806,1811],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1554,1586,1590,1794,1804,1811],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1716],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1554,1633,1804],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1652,1721],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1723,1804],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1720,1723,1731,1804],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1639],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1804],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1554,1587,1588,1803,1811],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1652,1723,1728,1804],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1652,1723,1728,1731,1804],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1652,1728,1804],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1652,1720,1723,1728,1731,1735,1736,1804],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1652,1720,1728,1804],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1652,1720,1723,1728,1804],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1720,1804],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1743],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1651,1652,1728,1804],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1728,1804],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1652,1720,1723,1728,1736,1804],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1639,1652],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1639,1641,1720],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1638,1639,1723,1728],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1554,1622,1632,1633,1638,1804],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1639,1651,1652,1728],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1652,1764],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1645,1647,1651,1652,1723,1766,1804],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1652,1723,1804],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1721],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1638,1652,1723,1728,1804],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1721,1773],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1639,1728],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1586,1804],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1554,1563,1592,1634,1636,1639,1640,1641,1643,1645,1646,1647,1651,1652,1793,1802,1804,1811],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1786],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1639,1640,1641,1652,1723],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1652,1723,1728,1783],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1731,1783,1785],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1639,1652,1728],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1561,1591,1603,1617],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1834],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1554,1980],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1942,1979],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1622,1794,1806,1807,1819,1820,1834,1979],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1954],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1554,1955,1980],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1806,1821,1834],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1644,1979],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1645,1979],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1979],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1643,1979],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1784,1979],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1730,1979],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1650,1979],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1640,1979],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1637,1979],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1642,1979],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1632,1979],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1646,1979],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1641,1979],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1648,1649,1979],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1634,1635,1979],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1636,1979],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1806,1812],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1806,1812],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1458,1549,1594,1979],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1598,1602,1603,1606,1607,1609],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1594,1977,1980],[1346,1409,1414,1417,1421,1424,1426,1427,1428,1436,1441,1446,1449,1458,1459,1549,1554,1559,1563,1565,1581,1582,1583,1584,1585,1586,1587,1589,1590,1591,1592,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1612,1613,1614,1617,1618,1619,1621,1622,1625,1631,1632,1633,1634,1636,1637,1638,1639,1640,1641,1643,1645,1646,1647,1650,1651,1652,1655,1656,1657,1658,1661,1664,1665,1666,1668,1669,1670,1671,1672,1673,1674,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1784,1785,1786,1787,1788,1789,1790,1791,1792,1794,1795,1796,1797,1798,1799,1800,1801,1803,1804,1805,1806,1808,1810,1811,1813,1814,1815,1817,1821,1822,1823,1825,1828,1832,1834,1842,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1883,1884,1885,1886,1887,1888,1890,1892,1894,1896,1898,1900,1902,1904,1906,1908,1910,1912,1914,1916,1918,1919,1921,1923,1925,1927,1928,1929,1930,1931,1932,1933,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1950,1951,1952,1953,1954,1955,1956,1957,1959,1962,1963,1964,1965,1966,1967,1968,1971,1972,1974,1976,1978,1980,1981,1985,1986],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1688,1979,1980],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1841,1862,1867,1993],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,2007],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1559,1979,1997,2006],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1594,1834,1957,1958,1959,1960,1961,1979],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1549,1918,1980],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1957],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1952,1979],[66,71,72,80,82,83,85,88,92,107,108,111,114,115,118,122,126,127,129,130,133,134,137,140,143,144,147,148,151,154,157,159,162,166,169,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,575,1346,1409,1417,1421,1424,1426,1427,1428,1441],[608,1346,1409,1417,1421,1424,1426,1427,1428,1441],[569,1346,1409,1417,1421,1424,1426,1427,1428,1441],[609,1346,1409,1417,1421,1424,1426,1427,1428,1441],[454,550,606,607,1346,1409,1417,1421,1424,1426,1427,1428,1441],[569,570,608,609,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,575,610,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,570,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,610,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,578,1346,1409,1417,1421,1424,1426,1427,1428,1441],[551,552,553,554,555,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,1346,1409,1417,1421,1424,1426,1427,1428,1441],[598,599,600,601,602,603,604,1346,1409,1417,1421,1424,1426,1427,1428,1441],[575,1346,1409,1417,1421,1424,1426,1427,1428,1441],[612,1346,1409,1417,1421,1424,1426,1427,1428,1441],[196,567,568,573,575,597,605,610,611,613,621,1346,1409,1417,1421,1424,1426,1427,1428,1441],[556,557,558,559,560,561,562,563,564,565,566,1346,1409,1417,1421,1424,1426,1427,1428,1441],[575,608,1346,1409,1417,1421,1424,1426,1427,1428,1441],[554,555,567,568,571,573,606,1346,1409,1417,1421,1424,1426,1427,1428,1441],[571,572,574,606,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,568,606,608,1346,1409,1417,1421,1424,1426,1427,1428,1441],[571,606,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,567,568,597,605,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,570,571,572,606,609,1346,1409,1417,1421,1424,1426,1427,1428,1441],[614,615,616,617,618,619,620,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,1203,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1203,1204,1205,1206,1209,1210,1211,1212,1213,1214,1215,1218,1219,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1203,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1207,1208,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,1200,1203,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1197,1198,1200,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1193,1196,1198,1200,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1197,1200,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,1188,1189,1190,1193,1194,1195,1197,1198,1199,1200,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1190,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1197,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1191,1197,1198,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1191,1192,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1196,1198,1199,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1196,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1188,1193,1196,1198,1199,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,1193,1196,1197,1198,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1216,1217,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,667,678,683,689,690,697,699,700,702,743,746,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,667,678,683,688,690,699,703,704,706,707,743,746,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,699,704,748,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,682,746,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,666,667,669,678,746,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,667,678,699,737,746,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,667,705,726,730,746,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,690,713,714,746,787,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,667,678,683,689,690,743,746,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,667,669,704,718,770,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,665,667,669,718,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,667,669,698,718,719,746,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,667,678,681,685,689,690,714,728,729,743,746,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,671,678,746,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,671,678,743,746,1346,1409,1417,1421,1424,1426,1427,1428,1441],[666,746,1346,1409,1417,1421,1424,1426,1427,1428,1441],[678,746,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,746,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,704,714,746,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,666,714,746,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,714,746,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,679,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,667,714,746,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,665,667,746,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,666,667,668,746,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,666,667,669,746,798,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,691,692,693,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,678,680,681,692,714,746,749,1346,1409,1417,1421,1424,1426,1427,1428,1441],[736,746,1346,1409,1417,1421,1424,1426,1427,1428,1441],[678,679,698,741,743,746,1346,1409,1417,1421,1424,1426,1427,1428,1441],[665,666,667,669,670,671,678,679,681,689,690,691,694,698,701,704,705,714,718,720,726,728,729,730,731,738,741,742,743,746,747,748,750,751,752,753,754,755,756,757,759,761,763,764,765,766,767,768,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,793,794,795,796,797,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,667,683,690,709,711,746,762,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,667,671,678,719,746,760,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,667,678,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,667,671,678,719,746,758,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,667,690,698,710,719,746,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,667,678,683,688,690,699,743,746,754,762,765,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,688,746,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,703,746,1346,1409,1417,1421,1424,1426,1427,1428,1441],[672,677,746,1346,1409,1417,1421,1424,1426,1427,1428,1441],[670,671,672,677,743,746,1346,1409,1417,1421,1424,1426,1427,1428,1441],[672,677,682,1346,1409,1417,1421,1424,1426,1427,1428,1441],[672,677,713,731,746,1346,1409,1417,1421,1424,1426,1427,1428,1441],[672,677,678,683,684,685,702,707,708,711,712,746,1346,1409,1417,1421,1424,1426,1427,1428,1441],[672,677,691,694,746,1346,1409,1417,1421,1424,1426,1427,1428,1441],[672,677,714,746,1346,1409,1417,1421,1424,1426,1427,1428,1441],[672,677,678,1346,1409,1417,1421,1424,1426,1427,1428,1441],[672,677,1346,1409,1417,1421,1424,1426,1427,1428,1441],[672,677,678,717,718,720,1346,1409,1417,1421,1424,1426,1427,1428,1441],[672,677,678,717,746,1346,1409,1417,1421,1424,1426,1427,1428,1441],[672,677,679,701,746,1346,1409,1417,1421,1424,1426,1427,1428,1441],[697,713,736,746,1346,1409,1417,1421,1424,1426,1427,1428,1441],[678,683,696,697,698,713,721,724,732,736,738,739,740,742,746,1346,1409,1417,1421,1424,1426,1427,1428,1441],[678,683,696,697,1346,1409,1417,1421,1424,1426,1427,1428,1441],[736,1346,1409,1417,1421,1424,1426,1427,1428,1441],[677,678,683,695,713,714,715,716,721,722,723,724,725,732,733,734,735,1346,1409,1417,1421,1424,1426,1427,1428,1441],[672,677,678,680,681,713,746,1346,1409,1417,1421,1424,1426,1427,1428,1441],[683,696,701,713,746,1346,1409,1417,1421,1424,1426,1427,1428,1441],[696,706,713,1346,1409,1417,1421,1424,1426,1427,1428,1441],[683,713,746,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,681,709,710,713,746,1346,1409,1417,1421,1424,1426,1427,1428,1441],[713,1346,1409,1417,1421,1424,1426,1427,1428,1441],[696,713,1346,1409,1417,1421,1424,1426,1427,1428,1441],[681,683,713,746,1346,1409,1417,1421,1424,1426,1427,1428,1441],[699,713,746,1346,1409,1417,1421,1424,1426,1427,1428,1441],[714,746,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,704,705,746,1346,1409,1417,1421,1424,1426,1427,1428,1441],[681,688,695,697,698,714,743,746,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,766,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,713,727,730,746,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,701,705,726,730,746,773,774,775,788,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,746,759,761,763,764,766,1346,1409,1417,1421,1424,1426,1427,1428,1441],[746,1346,1409,1417,1421,1424,1426,1427,1428,1441],[671,746,1346,1409,1417,1421,1424,1426,1427,1428,1441],[678,746,792,1346,1409,1417,1421,1424,1426,1427,1428,1441],[688,696,699,713,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,709,769,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,664,665,666,669,670,671,678,679,680,683,701,709,743,744,745,798,1346,1409,1417,1421,1424,1426,1427,1428,1441],[672,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1472],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1467,1469,1472],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1468,1469],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1469,1472,1476],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1468],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1469,1472],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1467,1468,1469,1471],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1467,1469],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1468,1469,1478],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1493,1535],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1522],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1518,1535],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1517,1518,1519,1522,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1539],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1519,1522,1540,1541],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1538,1542],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1517,1520,1521],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1520],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1517,1518,1519,1522,1534],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1523,1528,1534],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1534],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1523,1534],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1490],[1346,1361,1364,1367,1368,1409,1417,1421,1424,1426,1427,1428,1441,1458],[1346,1364,1409,1417,1421,1424,1426,1427,1428,1441,1446,1458],[1346,1364,1368,1409,1417,1421,1424,1426,1427,1428,1441,1458],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1446],[1346,1358,1409,1417,1421,1424,1426,1427,1428,1441],[1346,1362,1409,1417,1421,1424,1426,1427,1428,1441],[1346,1360,1361,1364,1409,1417,1421,1424,1426,1427,1428,1441,1458],[1346,1409,1417,1421,1424,1426,1427,1428,1430,1441,1455],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1466],[1346,1358,1409,1417,1421,1424,1426,1427,1428,1441,1466],[1346,1360,1364,1409,1417,1421,1424,1426,1427,1428,1430,1441,1458],[1346,1355,1356,1357,1359,1363,1409,1417,1420,1421,1424,1426,1427,1428,1441,1446,1458],[1346,1364,1373,1381,1409,1417,1421,1424,1426,1427,1428,1441],[1346,1356,1362,1409,1417,1421,1424,1426,1427,1428,1441],[1346,1364,1390,1391,1409,1417,1421,1424,1426,1427,1428,1441],[1346,1356,1359,1364,1409,1417,1421,1424,1426,1427,1428,1441,1449,1458,1466],[1346,1364,1409,1417,1421,1424,1426,1427,1428,1441],[1346,1360,1364,1409,1417,1421,1424,1426,1427,1428,1441,1458],[1346,1355,1409,1417,1421,1424,1426,1427,1428,1441],[1346,1358,1359,1360,1362,1363,1364,1365,1366,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1391,1392,1393,1394,1395,1409,1417,1421,1424,1426,1427,1428,1441],[1346,1364,1383,1386,1409,1417,1421,1424,1426,1427,1428,1441],[1346,1364,1373,1374,1375,1409,1417,1421,1424,1426,1427,1428,1441],[1346,1362,1364,1374,1376,1409,1417,1421,1424,1426,1427,1428,1441],[1346,1363,1409,1417,1421,1424,1426,1427,1428,1441],[1346,1356,1358,1364,1409,1417,1421,1424,1426,1427,1428,1441],[1346,1364,1368,1374,1376,1409,1417,1421,1424,1426,1427,1428,1441],[1346,1368,1409,1417,1421,1424,1426,1427,1428,1441],[1346,1362,1364,1367,1409,1417,1421,1424,1426,1427,1428,1441,1458],[1346,1356,1360,1364,1373,1409,1417,1421,1424,1426,1427,1428,1441],[1346,1364,1383,1409,1417,1421,1424,1426,1427,1428,1441],[1346,1376,1409,1417,1421,1424,1426,1427,1428,1441],[1346,1358,1364,1390,1409,1417,1421,1424,1426,1427,1428,1441,1449,1464,1466],[663,1346,1409,1417,1421,1424,1426,1427,1428,1441],[687,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1282,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1282,1283,1284,1286,1346,1409,1417,1420,1421,1423,1424,1425,1426,1427,1428,1430,1441,1446,1455,1458,1465,1466,1473,1474,1475,1477,1479,1481,1482,1492,1512,1516,1545,1546,1547,1548],[1282,1283,1284,1285,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1513,1514],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1508],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1506,1508],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1497,1505,1506,1507,1509,1511],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1495],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1498,1503,1508,1511],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1494,1511],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1498,1499,1502,1503,1504,1511],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1498,1499,1500,1502,1503,1511],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1495,1496,1497,1498,1499,1503,1504,1505,1507,1508,1509,1511],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1511],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1493,1495,1496,1497,1498,1499,1500,1502,1503,1504,1505,1506,1507,1508,1509,1510],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1493,1511],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1498,1500,1501,1503,1504,1511],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1502,1511],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1503,1504,1508,1511],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1496,1506],[1284,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1544],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1480],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1515],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1473,1482,1548],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1491],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1473,1548],[1346,1409,1417,1421,1424,1426,1427,1428,1441,2016],[1302,1306,1346,1409,1417,1421,1424,1426,1427,1428,1441,2021],[1271,1272,1274,1275,1276,1278,1280,1281,1289,1290,1296,1306,1346,1409,1417,1421,1424,1426,1427,1428,1441,2012,2013,2015],[1280,1303,1304,1306,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1280,1281,1293,1306,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1271,1278,1280,1281,1289,1306,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1286,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1271,1280,1281,1289,1302,1305,1306,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1548,2019,2021],[1271,1276,1278,1280,1281,1289,1290,1293,1294,1302,1305,1306,1310,1346,1409,1412,1417,1421,1424,1426,1427,1428,1441,1446,1548,2011,2012,2013,2017,2018,2021],[1280,1281,1286,1289,1306,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1280,1303,1304,1305,1306,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1280,1286,1290,1291,1292,1306,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1271,1276,1278,1280,1281,1286,1289,1290,1291,1292,1293,1294,1302,1303,1304,1305,1306,1310,1346,1409,1412,1417,1421,1424,1426,1427,1428,1441,1446,1548,2011,2012,2013,2017,2018,2019,2020,2021],[1271,1276,1278,1280,1281,1286,1289,1290,1291,1292,1293,1294,1296,1302,1303,1304,1305,1306,1307,1310,1311,1312,1313,1318,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1271,1278,1280,1281,1289,1290,1303,1304,1305,1306,1311,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1346,1409,1417,1421,1424,1426,1427,1428,1441,2010],[1346,1409,1417,1421,1424,1426,1427,1428,1441,2105],[1346,1409,1417,1421,1424,1426,1427,1428,1441,2096],[1346,1409,1417,1421,1424,1426,1427,1428,1441,2096,2099],[1346,1409,1417,1421,1424,1426,1427,1428,1441,2091,2094,2096,2097,2098,2099,2100,2101,2102,2103,2104],[1346,1409,1417,1421,1424,1426,1427,1428,1441,2030,2032,2099],[1346,1409,1417,1421,1424,1426,1427,1428,1441,2096,2097],[1346,1409,1417,1421,1424,1426,1427,1428,1441,2031,2096,2098],[1346,1409,1417,1421,1424,1426,1427,1428,1441,2032,2034,2036,2037,2038,2039],[1346,1409,1417,1421,1424,1426,1427,1428,1441,2034,2036,2038,2039],[1346,1409,1417,1421,1424,1426,1427,1428,1441,2034,2036,2038],[1346,1409,1417,1421,1424,1426,1427,1428,1441,2031,2034,2036,2037,2039],[1346,1409,1417,1421,1424,1426,1427,1428,1441,2030,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2091,2092,2093,2094,2095],[1346,1409,1417,1421,1424,1426,1427,1428,1441,2030,2032,2033,2036],[1346,1409,1417,1421,1424,1426,1427,1428,1441,2032,2033,2036],[1346,1409,1417,1421,1424,1426,1427,1428,1441,2036,2039],[1346,1409,1417,1421,1424,1426,1427,1428,1441,2030,2031,2033,2034,2035,2037,2038,2039],[1346,1409,1417,1421,1424,1426,1427,1428,1441,2030,2031,2032,2036,2096],[1346,1409,1417,1421,1424,1426,1427,1428,1441,2036,2037,2038,2039],[1346,1409,1417,1421,1424,1426,1427,1428,1441,2038],[1346,1409,1417,1421,1424,1426,1427,1428,1441,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090],[64,65,170,1267,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,170,1267,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,173,1267,1346,1409,1417,1421,1424,1426,1427,1428,1441],[170,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,170,173,1267,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,65,182,1267,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,184,1267,1346,1409,1417,1421,1424,1426,1427,1428,1441],[170,173,1267,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,65,622,1267,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,1267,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,65,660,1267,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,798,1267,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,65,1176,1267,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,65,1178,1267,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,1182,1267,1346,1409,1417,1421,1424,1426,1427,1428,1441],[173,1267,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,1187,1220,1221,1267,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1264,1265,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,65,170,1224,1267,1269,1346,1409,1417,1421,1424,1426,1427,1428,1441],[173,174,175,176,177,178,179,183,185,186,187,188,623,624,661,799,800,801,1177,1179,1180,1181,1183,1184,1185,1186,1222,1223,1225,1226,1227,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1240,1241,1242,1244,1245,1246,1247,1248,1249,1250,1252,1253,1254,1255,1256,1258,1260,1261,1262,1263,1266,1268,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,65,1228,1267,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1267,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,65,1267,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,65,170,173,1267,1346,1409,1417,1421,1424,1426,1427,1428,1441],[65,1239,1267,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,1243,1267,1346,1409,1417,1421,1424,1426,1427,1428,1441],[65,1257,1259,1346,1409,1417,1421,1424,1426,1427,1428,1441],[65,1267,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,65,1251,1267,1346,1409,1417,1421,1424,1426,1427,1428,1441],[64,65,1257,1267,1346,1409,1417,1421,1424,1426,1427,1428,1441],[187,1319,1322,1342,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1322,1346,1409,1417,1421,1424,1426,1427,1428,1441],[1346,1409,1417,1421,1424,1426,1427,1428,1441,2022,2110],[1346,1409,1417,1421,1424,1426,1427,1428,1441,1458,2022,2109]],"fileInfos":[{"version":"bcd24271a113971ba9eb71ff8cb01bc6b0f872a85c23fdbe5d93065b375933cd","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f88bedbeb09c6f5a6645cb24c7c55f1aa22d19ae96c8e6959cbd8b85a707bc6","impliedFormat":1},{"version":"7fe93b39b810eadd916be8db880dd7f0f7012a5cc6ffb62de8f62a2117fa6f1f","impliedFormat":1},{"version":"bb0074cc08b84a2374af33d8bf044b80851ccc9e719a5e202eacf40db2c31600","impliedFormat":1},{"version":"1a7daebe4f45fb03d9ec53d60008fbf9ac45a697fdc89e4ce218bc94b94f94d6","impliedFormat":1},{"version":"f94b133a3cb14a288803be545ac2683e0d0ff6661bcd37e31aaaec54fc382aed","impliedFormat":1},{"version":"f59d0650799f8782fd74cf73c19223730c6d1b9198671b1c5b3a38e1188b5953","impliedFormat":1},{"version":"8a15b4607d9a499e2dbeed9ec0d3c0d7372c850b2d5f1fb259e8f6d41d468a84","impliedFormat":1},{"version":"26e0fe14baee4e127f4365d1ae0b276f400562e45e19e35fd2d4c296684715e6","impliedFormat":1},{"version":"d6b1eba8496bdd0eed6fc8a685768fe01b2da4a0388b5fe7df558290bffcf32f","affectsGlobalScope":true,"impliedFormat":1},{"version":"7f57fc4404ff020bc45b9c620aff2b40f700b95fe31164024c453a5e3c163c54","impliedFormat":1},{"version":"eadcffda2aa84802c73938e589b9e58248d74c59cb7fcbca6474e3435ac15504","affectsGlobalScope":true,"impliedFormat":1},{"version":"105ba8ff7ba746404fe1a2e189d1d3d2e0eb29a08c18dded791af02f29fb4711","affectsGlobalScope":true,"impliedFormat":1},{"version":"00343ca5b2e3d48fa5df1db6e32ea2a59afab09590274a6cccb1dbae82e60c7c","affectsGlobalScope":true,"impliedFormat":1},{"version":"ebd9f816d4002697cb2864bea1f0b70a103124e18a8cd9645eeccc09bdf80ab4","affectsGlobalScope":true,"impliedFormat":1},{"version":"2c1afac30a01772cd2a9a298a7ce7706b5892e447bb46bdbeef720f7b5da77ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"7b0225f483e4fa685625ebe43dd584bb7973bbd84e66a6ba7bbe175ee1048b4f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c0a4b8ac6ce74679c1da2b3795296f5896e31c38e888469a8e0f99dc3305de60","affectsGlobalScope":true,"impliedFormat":1},{"version":"3084a7b5f569088e0146533a00830e206565de65cae2239509168b11434cd84f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5079c53f0f141a0698faa903e76cb41cd664e3efb01cc17a5c46ec2eb0bef42","affectsGlobalScope":true,"impliedFormat":1},{"version":"32cafbc484dea6b0ab62cf8473182bbcb23020d70845b406f80b7526f38ae862","affectsGlobalScope":true,"impliedFormat":1},{"version":"fca4cdcb6d6c5ef18a869003d02c9f0fd95df8cfaf6eb431cd3376bc034cad36","affectsGlobalScope":true,"impliedFormat":1},{"version":"b93ec88115de9a9dc1b602291b85baf825c85666bf25985cc5f698073892b467","affectsGlobalScope":true,"impliedFormat":1},{"version":"f5c06dcc3fe849fcb297c247865a161f995cc29de7aa823afdd75aaaddc1419b","affectsGlobalScope":true,"impliedFormat":1},{"version":"b77e16112127a4b169ef0b8c3a4d730edf459c5f25fe52d5e436a6919206c4d7","affectsGlobalScope":true,"impliedFormat":1},{"version":"fbffd9337146eff822c7c00acbb78b01ea7ea23987f6c961eba689349e744f8c","affectsGlobalScope":true,"impliedFormat":1},{"version":"a995c0e49b721312f74fdfb89e4ba29bd9824c770bbb4021d74d2bf560e4c6bd","affectsGlobalScope":true,"impliedFormat":1},{"version":"c7b3542146734342e440a84b213384bfa188835537ddbda50d30766f0593aff9","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce6180fa19b1cccd07ee7f7dbb9a367ac19c0ed160573e4686425060b6df7f57","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f02e2476bccb9dbe21280d6090f0df17d2f66b74711489415a8aa4df73c9675","affectsGlobalScope":true,"impliedFormat":1},{"version":"45e3ab34c1c013c8ab2dc1ba4c80c780744b13b5676800ae2e3be27ae862c40c","affectsGlobalScope":true,"impliedFormat":1},{"version":"805c86f6cca8d7702a62a844856dbaa2a3fd2abef0536e65d48732441dde5b5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e42e397f1a5a77994f0185fd1466520691456c772d06bf843e5084ceb879a0ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"f4c2b41f90c95b1c532ecc874bd3c111865793b23aebcc1c3cbbabcd5d76ffb0","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab26191cfad5b66afa11b8bf935ef1cd88fabfcb28d30b2dfa6fad877d050332","affectsGlobalScope":true,"impliedFormat":1},{"version":"2088bc26531e38fb05eedac2951480db5309f6be3fa4a08d2221abb0f5b4200d","affectsGlobalScope":true,"impliedFormat":1},{"version":"cb9d366c425fea79716a8fb3af0d78e6b22ebbab3bd64d25063b42dc9f531c1e","affectsGlobalScope":true,"impliedFormat":1},{"version":"500934a8089c26d57ebdb688fc9757389bb6207a3c8f0674d68efa900d2abb34","affectsGlobalScope":true,"impliedFormat":1},{"version":"689da16f46e647cef0d64b0def88910e818a5877ca5379ede156ca3afb780ac3","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc21cc8b6fee4f4c2440d08035b7ea3c06b3511314c8bab6bef7a92de58a2593","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ca53d13d2957003abb47922a71866ba7cb2068f8d154877c596d63c359fed25","affectsGlobalScope":true,"impliedFormat":1},{"version":"54725f8c4df3d900cb4dac84b64689ce29548da0b4e9b7c2de61d41c79293611","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5594bc3076ac29e6c1ebda77939bc4c8833de72f654b6e376862c0473199323","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f3eb332c2d73e729f3364fcc0c2b375e72a121e8157d25a82d67a138c83a95c","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f4427f9642ce8d500970e4e69d1397f64072ab73b97e476b4002a646ac743b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"48915f327cd1dea4d7bd358d9dc7732f58f9e1626a29cc0c05c8c692419d9bb7","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7bf9377723203b5a6a4b920164df22d56a43f593269ba6ae1fdc97774b68855","affectsGlobalScope":true,"impliedFormat":1},{"version":"db9709688f82c9e5f65a119c64d835f906efe5f559d08b11642d56eb85b79357","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b25b8c874acd1a4cf8444c3617e037d444d19080ac9f634b405583fd10ce1f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"37be57d7c90cf1f8112ee2636a068d8fd181289f82b744160ec56a7dc158a9f5","affectsGlobalScope":true,"impliedFormat":1},{"version":"a917a49ac94cd26b754ab84e113369a75d1a47a710661d7cd25e961cc797065f","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d3261badeb7843d157ef3e6f5d1427d0eeb0af0cf9df84a62cfd29fd47ac86e","affectsGlobalScope":true,"impliedFormat":1},{"version":"195daca651dde22f2167ac0d0a05e215308119a3100f5e6268e8317d05a92526","affectsGlobalScope":true,"impliedFormat":1},{"version":"8b11e4285cd2bb164a4dc09248bdec69e9842517db4ca47c1ba913011e44ff2f","affectsGlobalScope":true,"impliedFormat":1},{"version":"0508571a52475e245b02bc50fa1394065a0a3d05277fbf5120c3784b85651799","affectsGlobalScope":true,"impliedFormat":1},{"version":"8f9af488f510c3015af3cc8c267a9e9d96c4dd38a1fdff0e11dc5a544711415b","affectsGlobalScope":true,"impliedFormat":1},{"version":"fc611fea8d30ea72c6bbfb599c9b4d393ce22e2f5bfef2172534781e7d138104","affectsGlobalScope":true,"impliedFormat":1},{"version":"f128dae7c44d8f35ee42e0a437000a57c9f06cc04f8b4fb42eebf44954d53dc8","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ecb8e347cb6b2a8927c09b86263663289418df375f5e68e11a0ae683776978f","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ce14b81c5cc821994aa8ec1d42b220dd41b27fcc06373bce3958af7421b77d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3a048b3e9302ef9a34ef4ebb9aecfb28b66abb3bce577206a79fee559c230da","affectsGlobalScope":true,"impliedFormat":1},{"version":"7e29f41b158de217f94cb9676bf9cbd0cd9b5a46e1985141ed36e075c52bf6ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac51dd7d31333793807a6abaa5ae168512b6131bd41d9c5b98477fc3b7800f9f","impliedFormat":1},{"version":"dc0a7f107690ee5cd8afc8dbf05c4df78085471ce16bdd9881642ec738bc81fe","impliedFormat":1},{"version":"db7da89b083e353471f3911adb59288c2d4bda401b25433943e8128d654e0afc","impliedFormat":1},{"version":"024829c0b317972acf4f871bf701525f81896ad74015f1a52d46ae6036205cb9","impliedFormat":99},{"version":"a9373d52584b48809ffd61d74f5b3dfd127da846e3c4ee3c415560386df3994b","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"a9373d52584b48809ffd61d74f5b3dfd127da846e3c4ee3c415560386df3994b","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"0943a6e4e026d0de8a4969ee975a7283e0627bf41aa4635d8502f6f24365ac9b","impliedFormat":99},{"version":"1461efc4aefd3e999244f238f59c9b9753a7e3dfede923ebe2b4a11d6e13a0d0","impliedFormat":99},{"version":"a9373d52584b48809ffd61d74f5b3dfd127da846e3c4ee3c415560386df3994b","impliedFormat":99},{"version":"a9373d52584b48809ffd61d74f5b3dfd127da846e3c4ee3c415560386df3994b","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"7ec047b73f621c526468517fea779fec2007dd05baa880989def59126c98ef79","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"8dd450de6d756cee0761f277c6dc58b0b5a66b8c274b980949318b8cad26d712","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"904d6ad970b6bd825449480488a73d9b98432357ab38cf8d31ffd651ae376ff5","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"dfcf16e716338e9fe8cf790ac7756f61c85b83b699861df970661e97bf482692","impliedFormat":99},{"version":"31c30cc54e8c3da37c8e2e40e5658471f65915df22d348990d1601901e8c9ff3","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"36d8011f1437aecf0e6e88677d933e4fb3403557f086f4ac00c5a4cb6d028ac2","impliedFormat":99},{"version":"a9373d52584b48809ffd61d74f5b3dfd127da846e3c4ee3c415560386df3994b","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"8085954ba165e611c6230596078063627f3656fed3fb68ad1e36a414c4d7599a","impliedFormat":99},{"version":"42c169fb8c2d42f4f668c624a9a11e719d5d07dacbebb63cbcf7ef365b0a75b3","impliedFormat":1},{"version":"a9373d52584b48809ffd61d74f5b3dfd127da846e3c4ee3c415560386df3994b","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"2c57db2bf2dbd9e8ef4853be7257d62a1cb72845f7b976bb4ee827d362675f96","impliedFormat":99},{"version":"a9373d52584b48809ffd61d74f5b3dfd127da846e3c4ee3c415560386df3994b","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"a9373d52584b48809ffd61d74f5b3dfd127da846e3c4ee3c415560386df3994b","impliedFormat":99},{"version":"a9373d52584b48809ffd61d74f5b3dfd127da846e3c4ee3c415560386df3994b","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"6b5f886fe41e2e767168e491fe6048398ed6439d44e006d9f51cc31265f08978","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"56a87e37f91f5625eb7d5f8394904f3f1e2a90fb08f347161dc94f1ae586bdd0","impliedFormat":99},{"version":"6b863463764ae572b9ada405bf77aac37b5e5089a3ab420d0862e4471051393b","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"a9373d52584b48809ffd61d74f5b3dfd127da846e3c4ee3c415560386df3994b","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"68b6a7501a56babd7bcd840e0d638ee7ec582f1e70b3c36ebf32e5e5836913c8","impliedFormat":99},{"version":"89783bd45ab35df55203b522f8271500189c3526976af533a599a86caaf31362","impliedFormat":99},{"version":"6da2e0928bdab05861abc4e4abebea0c7cf0b67e25374ba35a94df2269563dd8","impliedFormat":99},{"version":"e7b00bec016013bcde74268d837a8b57173951add2b23c8fd12ffe57f204d88f","impliedFormat":99},{"version":"a9373d52584b48809ffd61d74f5b3dfd127da846e3c4ee3c415560386df3994b","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"26e6c521a290630ea31f0205a46a87cab35faac96e2b30606f37bae7bcda4f9d","impliedFormat":99},{"version":"a9373d52584b48809ffd61d74f5b3dfd127da846e3c4ee3c415560386df3994b","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"71acd198e19fa38447a3cbc5c33f2f5a719d933fccf314aaff0e8b0593271324","impliedFormat":99},{"version":"044047026c70439867589d8596ffe417b56158a1f054034f590166dd793b676b","impliedFormat":99},{"version":"a9373d52584b48809ffd61d74f5b3dfd127da846e3c4ee3c415560386df3994b","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"89ad9a4e8044299f356f38879a1c2176bc60c997519b442c92cc5a70b731a360","impliedFormat":99},{"version":"71acd198e19fa38447a3cbc5c33f2f5a719d933fccf314aaff0e8b0593271324","impliedFormat":99},{"version":"a9373d52584b48809ffd61d74f5b3dfd127da846e3c4ee3c415560386df3994b","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"fd4f58cd6b5fc8ce8af0d04bfef5142f15c4bafaac9a9899c6daa056f10bb517","impliedFormat":99},{"version":"a9373d52584b48809ffd61d74f5b3dfd127da846e3c4ee3c415560386df3994b","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"2a00cea77767cb26393ee6f972fd32941249a0d65b246bfcb20a780a2b919a21","impliedFormat":99},{"version":"440cb5b34e06fabe3dcb13a3f77b98d771bf696857c8e97ce170b4f345f8a26b","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"5bc7f0946c94e23765bd1b8f62dc3ab65d7716285ca7cf45609f57777ddb436f","impliedFormat":99},{"version":"7d5a5e603a68faea3d978630a84cacad7668f11e14164c4dd10224fa1e210f56","impliedFormat":99},{"version":"a9373d52584b48809ffd61d74f5b3dfd127da846e3c4ee3c415560386df3994b","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"2535fc1a5fe64892783ff8f61321b181c24f824e688a4a05ae738da33466605b","impliedFormat":99},{"version":"cbfd5ef0c8fdb4983202252b5f5758a579f4500edc3b9ad413da60cffb5c3564","impliedFormat":99},{"version":"a9373d52584b48809ffd61d74f5b3dfd127da846e3c4ee3c415560386df3994b","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"9f7a3c434912fd3feb87af4aabdf0d1b614152ecb5e7b2aa1fff3429879cdd51","impliedFormat":99},{"version":"a9373d52584b48809ffd61d74f5b3dfd127da846e3c4ee3c415560386df3994b","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"99d1a601593495371e798da1850b52877bf63d0678f15722d5f048e404f002e4","impliedFormat":99},{"version":"a9373d52584b48809ffd61d74f5b3dfd127da846e3c4ee3c415560386df3994b","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"1179ef8174e0e4a09d35576199df04803b1db17c0fb35b9326442884bc0b0cce","impliedFormat":99},{"version":"9c580c6eae94f8c9a38373566e59d5c3282dc194aa266b23a50686fe10560159","impliedFormat":99},{"version":"a9373d52584b48809ffd61d74f5b3dfd127da846e3c4ee3c415560386df3994b","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"cc3738ba01d9af5ba1206a313896837ff8779791afcd9869e582783550f17f38","impliedFormat":99},{"version":"a80ec72f5e178862476deaeed532c305bdfcd3627014ae7ac2901356d794fc93","impliedFormat":99},{"version":"a9373d52584b48809ffd61d74f5b3dfd127da846e3c4ee3c415560386df3994b","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"4a5aa16151dbec524bb043a5cbce2c3fec75957d175475c115a953aca53999a9","impliedFormat":99},{"version":"a9373d52584b48809ffd61d74f5b3dfd127da846e3c4ee3c415560386df3994b","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"7a14bf21ae8a29d64c42173c08f026928daf418bed1b97b37ac4bb2aa197b89b","impliedFormat":99},{"version":"a9373d52584b48809ffd61d74f5b3dfd127da846e3c4ee3c415560386df3994b","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"c5013d60cbff572255ccc87c314c39e198c8cc6c5aa7855db7a21b79e06a510f","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"69ec8d900cfec3d40e50490fedbbea5c1b49d32c38adbc236e73a3b8978c0b11","impliedFormat":99},{"version":"a9373d52584b48809ffd61d74f5b3dfd127da846e3c4ee3c415560386df3994b","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"7fd629484ba6772b686885b443914655089246f75a13dd685845d0abae337671","impliedFormat":99},{"version":"a9373d52584b48809ffd61d74f5b3dfd127da846e3c4ee3c415560386df3994b","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"9c580c6eae94f8c9a38373566e59d5c3282dc194aa266b23a50686fe10560159","impliedFormat":99},{"version":"13dcccb62e8537329ac0448f088ab16fe5b0bbed71e56906d28d202072759804","impliedFormat":99},{"version":"a9373d52584b48809ffd61d74f5b3dfd127da846e3c4ee3c415560386df3994b","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"233267a4a036c64aee95f66a0d31e3e0ef048cccc57dd66f9cf87582b38691e4","impliedFormat":99},{"version":"ccb9fbe369885d02cf6c2b2948fb5060451565d37b04356bbe753807f98e0682","impliedFormat":99},{"version":"c57b441e0c0a9cbdfa7d850dae1f8a387d6f81cbffbc3cd0465d530084c2417d","impliedFormat":99},{"version":"2fbe402f0ee5aa8ab55367f88030f79d46211c0a0f342becaa9f648bf8534e9d","impliedFormat":1},{"version":"b94258ef37e67474ac5522e9c519489a55dcb3d4a8f645e335fc68ea2215fe88","impliedFormat":1},{"version":"8658354b90861a76abc7b3c04ece2124295c7da0cc4c4d31c2c78d8607188d03","impliedFormat":1},{"version":"d05c276c74c39e8174c67c88ec0d8be0b84fb7586805a67e90360968ccf0c762","signature":"dc26dbc379a2e30e8736dc9871b9a78ed41274ba4801a4874dffcc2adc462eb2"},{"version":"87d8d57d40a725aaa5f2057ca981e767c3ad9b41d9792d256e2dc54b4a8cd55b","signature":"fb36f0226f503fab3c42d446aaa595607079073ba3f7518945f3b6f5dc6e11b4"},{"version":"e9ab4ae23fed53e9ebc280b4e259a146e45edf94cb756ed0c2a450b88e1b6d8b","signature":"653b44e0aa6872a38effc4e3b478c629406a08bb477e3775f83a1ada1f7fb12a"},{"version":"2085bd915049ac9b8707b5ef59c79415f16ed216d911091e5e7fa8d6232614b4","signature":"2b2c2207bce61a89bd4e5d1959a169a48baa5d969d3b4dafe9a67d04bbed3cba"},{"version":"e4f00cedf79b8936fac6a65f47a522e62f1bc554e8c394a7e4a7787c4e1c2795","signature":"6786baad70b6f469d0d1b7bcf9e3453af1de9c7d866fec9de471f89fcef7680b"},{"version":"a9373d52584b48809ffd61d74f5b3dfd127da846e3c4ee3c415560386df3994b","impliedFormat":99},{"version":"caf4af98bf464ad3e10c46cf7d340556f89197aab0f87f032c7b84eb8ddb24d9","impliedFormat":99},{"version":"8085954ba165e611c6230596078063627f3656fed3fb68ad1e36a414c4d7599a","impliedFormat":99},{"version":"00bacd53a5b51a56918f4aa067114d99a07cb3586daf6e6a20c9335b0661fd4f","signature":"37c85951612a7183d7a6062536684bd4bfc848a5833808951a9468b69a3b09e0"},{"version":"cbfd5ef0c8fdb4983202252b5f5758a579f4500edc3b9ad413da60cffb5c3564","impliedFormat":99},{"version":"fa18a2fa12602b411ec7b8c0016cea5746b5a1b3229254d6497c99e6f70bc0fe","signature":"eb7e21855f9757764d5246d677c4db559deaef14f17db5cd415c74763ad2d18b"},{"version":"6827fb8916a7d00d6ef8cf3cd461a1732dcd1652a8c6976c0fafdc8c0fd90f96","signature":"2178b29498335b631c9a52f61d587a0c69f057b79f5abddca178e5fcb81a7c23"},{"version":"c2386f38554cb204f78ca398b2ccee13134766aaa731a06358b240450690fa9b","signature":"2a2da90fe10f014151ac5a40e7fd9078da3b68bd7500b4315657bbe33b08f303"},{"version":"c3c7774ddf4f4a32ab260abe7001da57e0644d47ed7e6431466625c8c50e7ef9","signature":"fbd19726aea6f91edf930a11906a6f8d6bd69df64b448957693fcb87f0259588"},{"version":"57ae71d27ee71b7d1f2c6d867ddafbbfbaa629ad75565e63a508dbaa3ef9f859","impliedFormat":99},{"version":"60924ca0c60f0674f208bfa1eaaa54e6973ced7650df7c7a81ae069730ef665a","impliedFormat":99},{"version":"e3181c7595a89dd03ba9a20eb5065fa37e0b0a514261bed774f6ae2241634470","impliedFormat":99},{"version":"c42d5cbf94816659c01f7c2298d0370247f1a981f8ca6370301b7a03b3ced950","impliedFormat":99},{"version":"18c18ab0341fd5fdfefb5d992c365be1696bfe000c7081c964582b315e33f8f2","impliedFormat":99},{"version":"dafbd4199902d904e3d4a233b5faf5dc4c98847fcd8c0ddd7617b2aed50e90d8","impliedFormat":99},{"version":"9fc866f9783d12d0412ed8d68af5e4c9e44f0072d442b0c33c3bda0a5c8cae15","impliedFormat":99},{"version":"5fc13d24a2d0328eac00c4e73cc052a987fbced2151bc0d3b7eb8f3ba4d0f4e2","impliedFormat":99},{"version":"2cef84bf00cbdb452fdc5d8ecfe7b8c0aa3fa788bdc4ad8961e2e636530dbb60","impliedFormat":99},{"version":"24104650185414f379d5cc35c0e2c19f06684a73de5b472bae79e0d855771ecf","impliedFormat":99},{"version":"799003c0ab928582fca04977f47b8d85b43a8de610f4eef0ad2d069fbb9f9399","impliedFormat":99},{"version":"b13dd41c344a23e085f81b2f5cd96792e6b35ae814f32b25e39d9841844ad240","impliedFormat":99},{"version":"17d8b4e6416e48b6e23b73d05fd2fde407e2af8fddbe9da2a98ede14949c3489","impliedFormat":99},{"version":"6d17b2b41f874ab4369b8e04bdbe660163ea5c8239785c850f767370604959e3","impliedFormat":99},{"version":"04b4c044c8fe6af77b6c196a16c41e0f7d76b285d036d79dcaa6d92e24b4982b","impliedFormat":99},{"version":"30bdeead5293c1ddfaea4097d3e9dd5a6b0bc59a1e07ff4714ea1bbe7c5b2318","impliedFormat":99},{"version":"e7df226dcc1b0ce76b32f160556f3d1550124c894aae2d5f73cefaaf28df7779","impliedFormat":99},{"version":"f2b7eef5c46c61e6e72fba9afd7cc612a08c0c48ed44c3c5518559d8508146a2","impliedFormat":99},{"version":"00f0ba57e829398d10168b7db1e16217f87933e61bd8612b53a894bd7d6371da","impliedFormat":99},{"version":"126b20947d9fa74a88bb4e9281462bda05e529f90e22d08ee9f116a224291e84","impliedFormat":99},{"version":"40d9e43acee39702745eb5c641993978ac40f227475eacc99a83ba893ad995db","impliedFormat":99},{"version":"8a66b69b21c8de9cb88b4b6d12f655d5b7636e692a014c5aa1bd81745c8c51d5","impliedFormat":99},{"version":"ebbb846bdd5a78fdacff59ae04cea7a097912aeb1a2b34f8d88f4ebb84643069","impliedFormat":99},{"version":"7321adb29ffd637acb33ee67ea035f1a97d0aa0b14173291cc2fd58e93296e04","impliedFormat":99},{"version":"320816f1a4211188f07a782bdb6c1a44555b3e716ce13018f528ad7387108d5f","impliedFormat":99},{"version":"b2cc8a474b7657f4a03c67baf6bff75e26635fd4b5850675e8cad524a09ddd0c","impliedFormat":99},{"version":"0d081e9dc251063cc69611041c17d25847e8bdbe18164baaa89b7f1f1633c0ab","impliedFormat":99},{"version":"a64c25d8f4ec16339db49867ea2324e77060782993432a875d6e5e8608b0de1e","impliedFormat":99},{"version":"0739310b6b777f3e2baaf908c0fbc622c71160e6310eb93e0d820d86a52e2e23","impliedFormat":99},{"version":"37b32e4eadd8cd3c263e7ac1681c58b2ac54f3f77bb34c5e4326cc78516d55a9","impliedFormat":99},{"version":"9b7a8974e028c4ed6f7f9abb969e3eb224c069fd7f226e26fcc3a5b0e2a1eba8","impliedFormat":99},{"version":"e8100b569926a5592146ed68a0418109d625a045a94ed878a8c5152b1379237c","impliedFormat":99},{"version":"594201c616c318b7f3149a912abd8d6bdf338d765b7bcbde86bca2e66b144606","impliedFormat":99},{"version":"03e380975e047c5c6ded532cf8589e6cc85abb7be3629e1e4b0c9e703f2fd36f","impliedFormat":99},{"version":"fae14b53b7f52a8eb3274c67c11f261a58530969885599efe3df0277b48909e1","impliedFormat":99},{"version":"c41206757c428186f2e0d1fd373915c823504c249336bdc9a9c9bbdf9da95fef","impliedFormat":99},{"version":"e961f853b7b0111c42b763a6aa46fc70d06a697db3d8ed69b38f7ba0ae42a62b","impliedFormat":99},{"version":"3db90f79e36bcb60b3f8de1bc60321026800979c150e5615047d598c787a64b7","impliedFormat":99},{"version":"639b6fb3afbb8f6067c1564af2bd284c3e883f0f1556d59bd5eb87cdbbdd8486","impliedFormat":99},{"version":"49795f5478cb607fd5965aa337135a8e7fd1c58bc40c0b6db726adf186dd403f","impliedFormat":99},{"version":"7d8890e6e2e4e215959e71d5b5bd49482cf7a23be68d48ea446601a4c99bd511","impliedFormat":99},{"version":"d56f72c4bb518de5702b8b6ae3d3c3045c99e0fd48b3d3b54c653693a8378017","impliedFormat":99},{"version":"4c9ac40163e4265b5750510d6d2933fb7b39023eed69f7b7c68b540ad960826e","impliedFormat":99},{"version":"8dfab17cf48e7be6e023c438a9cdf6d15a9b4d2fa976c26e223ba40c53eb8da8","impliedFormat":99},{"version":"38bdf7ccacfd8e418de3a7b1e3cecc29b5625f90abc2fa4ac7843a290f3bf555","impliedFormat":99},{"version":"9819e46a914735211fbc04b8dc6ba65152c62e3a329ca0601a46ba6e05b2c897","impliedFormat":99},{"version":"50f0dc9a42931fb5d65cdd64ba0f7b378aedd36e0cfca988aa4109aad5e714cb","impliedFormat":99},{"version":"894f23066f9fafccc6e2dd006ed5bd85f3b913de90f17cf1fe15a2eb677fd603","impliedFormat":99},{"version":"abdf39173867e6c2d6045f120a316de451bbb6351a6929546b8470ddf2e4b3b9","impliedFormat":99},{"version":"aa2cb4053f948fbd606228195bbe44d78733861b6f7204558bbee603202ee440","impliedFormat":99},{"version":"6911b41bfe9942ac59c2da1bbcbe5c3c1f4e510bf65cae89ed00f434cc588860","impliedFormat":99},{"version":"7b81bc4d4e2c764e85d869a8dd9fe3652b34b45c065482ac94ffaacc642b2507","impliedFormat":99},{"version":"895df4edb46ccdcbce2ec982f5eed292cf7ea3f7168f1efea738ee346feab273","impliedFormat":99},{"version":"8692bb1a4799eda7b2e3288a6646519d4cebb9a0bddf800085fc1bd8076997a0","impliedFormat":99},{"version":"239c9e98547fe99711b01a0293f8a1a776fc10330094aa261f3970aaba957c82","impliedFormat":99},{"version":"34833ec50360a32efdc12780ae624e9a710dd1fd7013b58c540abf856b54285a","impliedFormat":99},{"version":"647538e4007dcc351a8882067310a0835b5bb8559d1cfa5f378e929bceb2e64d","impliedFormat":99},{"version":"992d6b1abcc9b6092e5a574d51d441238566b6461ade5de53cb9718e4f27da46","impliedFormat":99},{"version":"938702305649bf1050bd79f3803cf5cc2904596fc1edd4e3b91033184eae5c54","impliedFormat":99},{"version":"1e931d3c367d4b96fe043e792196d9c2cf74f672ff9c0b894be54e000280a79d","impliedFormat":99},{"version":"05bec322ea9f6eb9efcd6458bb47087e55bd688afdd232b78379eb5d526816ed","impliedFormat":99},{"version":"4c449a874c2d2e5e5bc508e6aa98f3140218e78c585597a21a508a647acd780a","impliedFormat":99},{"version":"dae15e326140a633d7693e92b1af63274f7295ea94fb7c322d5cbe3f5e48be88","impliedFormat":99},{"version":"c2b0a869713bca307e58d81d1d1f4b99ebfc7ec8b8f17e80dde40739aa8a2bc6","impliedFormat":99},{"version":"6e4b4ff6c7c54fa9c6022e88f2f3e675eac3c6923143eb8b9139150f09074049","impliedFormat":99},{"version":"69559172a9a97bbe34a32bff8c24ef1d8c8063feb5f16a6d3407833b7ee504cf","impliedFormat":99},{"version":"86b94a2a3edcb78d9bfcdb3b382547d47cb017e71abe770c9ee8721e9c84857f","impliedFormat":99},{"version":"e3fafafda82853c45c0afc075fea1eaf0df373a06daf6e6c7f382f9f61b2deb3","impliedFormat":99},{"version":"a4ba4b31de9e9140bc49c0addddbfaf96b943a7956a46d45f894822e12bf5560","impliedFormat":99},{"version":"d8a7926fc75f2ed887f17bae732ee31a4064b8a95a406c87e430c58578ee1f67","impliedFormat":99},{"version":"9886ffbb134b0a0059fd82219eba2a75f8af341d98bc6331b6ef8a921e10ec68","impliedFormat":99},{"version":"c2ead057b70d0ae7b87a771461a6222ebdb187ba6f300c974768b0ae5966d10e","impliedFormat":99},{"version":"46687d985aed8485ab2c71085f82fafb11e69e82e8552cf5d3849c00e64a00a5","impliedFormat":99},{"version":"999ca66d4b5e2790b656e0a7ce42267737577fc7a52b891e97644ec418eff7ec","impliedFormat":99},{"version":"ec948ee7e92d0888f92d4a490fdd0afb27fbf6d7aabebe2347a3e8ac82c36db9","impliedFormat":99},{"version":"03ef2386c683707ce741a1c30cb126e8c51a908aa0acc01c3471fafb9baaacd5","impliedFormat":99},{"version":"66a372e03c41d2d5e920df5282dadcec2acae4c629cb51cab850825d2a144cea","impliedFormat":99},{"version":"ddf9b157bd4c06c2e4646c9f034f36267a0fbd028bd4738214709de7ea7c548b","impliedFormat":99},{"version":"3e795aac9be23d4ad9781c00b153e7603be580602e40e5228e2dafe8a8e3aba1","impliedFormat":99},{"version":"98c461ec5953dfb1b5d5bca5fee0833c8a932383b9e651ca6548e55f1e2c71c3","impliedFormat":99},{"version":"5c42107b46cb1d36b6f1dee268df125e930b81f9b47b5fa0b7a5f2a42d556c10","impliedFormat":99},{"version":"7e32f1251d1e986e9dd98b6ff25f62c06445301b94aeebdf1f4296dbd2b8652f","impliedFormat":99},{"version":"2f7e328dda700dcb2b72db0f58c652ae926913de27391bd11505fc5e9aae6c33","impliedFormat":99},{"version":"3de7190e4d37da0c316db53a8a60096dbcd06d1a50677ccf11d182fa26882080","impliedFormat":99},{"version":"a9d6f87e59b32b02c861aade3f4477d7277c30d43939462b93f48644fa548c58","impliedFormat":99},{"version":"2bce8fd2d16a9432110bbe0ba1e663fd02f7d8b8968cd10178ea7bc306c4a5df","impliedFormat":99},{"version":"798bedbf45a8f1e55594e6879cd46023e8767757ecce1d3feaa78d16ad728703","impliedFormat":99},{"version":"62723d5ac66f7ed6885a3931dd5cfa017797e73000d590492988a944832e8bc2","impliedFormat":99},{"version":"03db8e7df7514bf17fc729c87fff56ca99567b9aa50821f544587a666537c233","impliedFormat":99},{"version":"9b1f311ba4409968b68bf20b5d892dbd3c5b1d65c673d5841c7dbde351bc0d0b","impliedFormat":99},{"version":"2d1e8b5431502739fe335ceec0aaded030b0f918e758a5d76f61effa0965b189","impliedFormat":99},{"version":"e725839b8f884dab141b42e9d7ff5659212f6e1d7b4054caa23bc719a4629071","impliedFormat":99},{"version":"4fa38a0b8ae02507f966675d0a7d230ed67c92ab8b5736d99a16c5fbe2b42036","impliedFormat":99},{"version":"50ec1e8c23bad160ddedf8debeebc722becbddda127b8fdce06c23eacd3fe689","impliedFormat":99},{"version":"9a0aea3a113064fd607f41375ade308c035911d3c8af5ae9db89593b5ca9f1f9","impliedFormat":99},{"version":"8d643903b58a0bf739ce4e6a8b0e5fb3fbdfaacbae50581b90803934b27d5b89","impliedFormat":99},{"version":"19de2915ccebc0a1482c2337b34cb178d446def2493bf775c4018a4ea355adb8","impliedFormat":99},{"version":"9be8fc03c8b5392cd17d40fd61063d73f08d0ee3457ecf075dcb3768ae1427bd","impliedFormat":99},{"version":"a2d89a8dc5a993514ca79585039eea083a56822b1d9b9d9d85b14232e4782cbe","impliedFormat":99},{"version":"f526f20cae73f17e8f38905de4c3765287575c9c4d9ecacee41cfda8c887da5b","impliedFormat":99},{"version":"d9ec0978b7023612b9b83a71fee8972e290d02f8ff894e95cdd732cd0213b070","impliedFormat":99},{"version":"7ab10c473a058ec8ac4790b05cae6f3a86c56be9b0c0a897771d428a2a48a9f9","impliedFormat":99},{"version":"451d7a93f8249d2e1453b495b13805e58f47784ef2131061821b0e456a9fd0e1","impliedFormat":99},{"version":"21c56fe515d227ed4943f275a8b242d884046001722a4ba81f342a08dbe74ae2","impliedFormat":99},{"version":"d8311f0c39381aa1825081c921efde36e618c5cf46258c351633342a11601208","impliedFormat":99},{"version":"6b50c3bcc92dc417047740810596fcb2df2502aa3f280c9e7827e87896da168a","impliedFormat":99},{"version":"18a6b318d1e7b31e5749a52be0cf9bbce1b275f63190ef32e2c79db0579328ca","impliedFormat":99},{"version":"6a2d0af2c27b993aa85414f3759898502aa198301bc58b0d410948fe908b07b0","impliedFormat":99},{"version":"2da11b6f5c374300e5e66a6b01c3c78ec21b5d3fec0748a28cc28e00be73e006","impliedFormat":99},{"version":"0729691b39c24d222f0b854776b00530877217bfc30aac1dc7fa2f4b1795c536","impliedFormat":99},{"version":"ca45bb5c98c474d669f0e47615e4a5ae65d90a2e78531fda7862ee43e687a059","impliedFormat":99},{"version":"c1c058b91d5b9a24c95a51aea814b0ad4185f411c38ac1d5eef0bf3cebec17dc","impliedFormat":99},{"version":"3ab0ed4060b8e5b5e594138aab3e7f0262d68ad671d6678bcda51568d4fc4ccc","impliedFormat":99},{"version":"e2bf1faba4ff10a6020c41df276411f641d3fdce5c6bae1db0ec84a0bf042106","impliedFormat":99},{"version":"80b0a8fe14d47a71e23d7c3d4dcee9584d4282ef1d843b70cab1a42a4ea1588c","impliedFormat":99},{"version":"a0f02a73f6e3de48168d14abe33bf5970fdacdb52d7c574e908e75ad571e78f7","impliedFormat":99},{"version":"c728002a759d8ec6bccb10eed56184e86aeff0a762c1555b62b5d0fa9d1f7d64","impliedFormat":99},{"version":"586f94e07a295f3d02f847f9e0e47dbf14c16e04ccc172b011b3f4774a28aaea","impliedFormat":99},{"version":"cfe1a0f4ed2df36a2c65ea6bc235dbb8cf6e6c25feb6629989f1fa51210b32e7","impliedFormat":99},{"version":"8ba69c9bf6de79c177329451ffde48ddab7ec495410b86972ded226552f664df","impliedFormat":99},{"version":"15111cbe020f8802ad1d150524f974a5251f53d2fe10eb55675f9df1e82dbb62","impliedFormat":99},{"version":"782dc153c56a99c9ed07b2f6f497d8ad2747764966876dbfef32f3e27ce11421","impliedFormat":99},{"version":"cc2db30c3d8bb7feb53a9c9ff9b0b859dd5e04c83d678680930b5594b2bf99cb","impliedFormat":99},{"version":"46909b8c85a6fd52e0807d18045da0991e3bdc7373435794a6ba425bc23cc6be","impliedFormat":99},{"version":"e4e511ff63bb6bd69a2a51e472c6044298bca2c27835a34a20827bc3ef9b7d13","impliedFormat":99},{"version":"2c86f279d7db3c024de0f21cd9c8c2c972972f842357016bfbbd86955723b223","impliedFormat":99},{"version":"112c895cff9554cf754f928477c7d58a21191c8089bffbf6905c87fe2dc6054f","impliedFormat":99},{"version":"8cfc293b33082003cacbf7856b8b5e2d6dd3bde46abbd575b0c935dc83af4844","impliedFormat":99},{"version":"d2c5c53f85ce0474b3a876d76c4fc44ff7bb766b14ed1bf495f9abac181d7f5f","impliedFormat":99},{"version":"3c523f27926905fcbe20b8301a0cc2da317f3f9aea2273f8fc8d9ae88b524819","impliedFormat":99},{"version":"9ca0d706f6b039cc52552323aeccb4db72e600b67ddc7a54cebc095fc6f35539","impliedFormat":99},{"version":"a64909a9f75081342ddd061f8c6b49decf0d28051bc78e698d347bdcb9746577","impliedFormat":99},{"version":"7d8d55ae58766d0d52033eae73084c4db6a93c4630a3e17f419dd8a0b2a4dcd8","impliedFormat":99},{"version":"b8b5c8ba972d9ffff313b3c8a3321e7c14523fc58173862187e8d1cb814168ac","impliedFormat":99},{"version":"9c42c0fa76ee36cf9cc7cc34b1389fbb4bd49033ec124b93674ec635fabf7ffe","impliedFormat":99},{"version":"6184c8da9d8107e3e67c0b99dedb5d2dfe5ccf6dfea55c2a71d4037caf8ca196","impliedFormat":99},{"version":"4030ceea7bf41449c1b86478b786e3b7eadd13dfe5a4f8f5fe2eb359260e08b3","impliedFormat":99},{"version":"7bf516ec5dfc60e97a5bde32a6b73d772bd9de24a2e0ec91d83138d39ac83d04","impliedFormat":99},{"version":"e6a6fb3e6525f84edf42ba92e261240d4efead3093aca3d6eb1799d5942ba393","impliedFormat":99},{"version":"45df74648934f97d26800262e9b2af2f77ef7191d4a5c2eb1df0062f55e77891","impliedFormat":99},{"version":"3fe361e4e567f32a53af1f2c67ad62d958e3d264e974b0a8763d174102fe3b29","impliedFormat":99},{"version":"28b520acee4bc6911bfe458d1ad3ebc455fa23678463f59946ad97a327c9ab2b","impliedFormat":99},{"version":"121b39b1a9ad5d23ed1076b0db2fe326025150ef476dccb8bf87778fcc4f6dd7","impliedFormat":99},{"version":"f791f92a060b52aa043dde44eb60307938f18d4c7ac13df1b52c82a1e658953f","impliedFormat":99},{"version":"df09443e7743fd6adc7eb108e760084bacdf5914403b7aac5fbd4dc4e24e0c2c","impliedFormat":99},{"version":"eeb4ff4aa06956083eaa2aad59070361c20254b865d986bc997ee345dbd44cbb","impliedFormat":99},{"version":"ed84d5043444d51e1e5908f664addc4472c227b9da8401f13daa565f23624b6e","impliedFormat":99},{"version":"146bf888b703d8baa825f3f2fb1b7b31bda5dff803e15973d9636cdda33f4af3","impliedFormat":99},{"version":"b4ec8b7a8d23bdf7e1c31e43e5beac3209deb7571d2ccf2a9572865bf242da7c","impliedFormat":99},{"version":"3fba0d61d172091638e56fba651aa1f8a8500aac02147d29bd5a9cc0bc8f9ec2","impliedFormat":99},{"version":"a5a57deb0351b03041e0a1448d3a0cc5558c48e0ed9b79b69c99163cdca64ad8","impliedFormat":99},{"version":"9bcecf0cbc2bfc17e33199864c19549905309a0f9ecc37871146107aac6e05ae","impliedFormat":99},{"version":"d6a211db4b4a821e93c978add57e484f2a003142a6aef9dbfa1fe990c66f337b","impliedFormat":99},{"version":"bd4d10bd44ce3f630dd9ce44f102422cb2814ead5711955aa537a52c8d2cae14","impliedFormat":99},{"version":"08e4c39ab1e52eea1e528ee597170480405716bae92ebe7a7c529f490afff1e0","impliedFormat":99},{"version":"625bb2bc3867557ea7912bd4581288a9fca4f3423b8dffa1d9ed57fafc8610e3","impliedFormat":99},{"version":"d1992164ecc334257e0bef56b1fd7e3e1cea649c70c64ffc39999bb480c0ecdf","impliedFormat":99},{"version":"a53ff2c4037481eb357e33b85e0d78e8236e285b6428b93aa286ceea1db2f5dc","impliedFormat":99},{"version":"4fe608d524954b6857d78857efce623852fcb0c155f010710656f9db86e973a5","impliedFormat":99},{"version":"b53b62a9838d3f57b70cc456093662302abb9962e5555f5def046172a4fe0d4e","impliedFormat":99},{"version":"9866369eb72b6e77be2a92589c9df9be1232a1a66e96736170819e8a1297b61f","impliedFormat":99},{"version":"43abfbdf4e297868d780b8f4cfdd8b781b90ecd9f588b05e845192146a86df34","impliedFormat":99},{"version":"582419791241fb851403ae4a08d0712a63d4c94787524a7419c2bc8e0eb1b031","impliedFormat":99},{"version":"18437eeb932fe48590b15f404090db0ab3b32d58f831d5ffc157f63b04885ee5","impliedFormat":99},{"version":"0c5eaedf622d7a8150f5c2ec1f79ac3d51eea1966b0b3e61bfdea35e8ca213a7","impliedFormat":99},{"version":"fac39fc7a9367c0246de3543a6ee866a0cf2e4c3a8f64641461c9f2dac0d8aae","impliedFormat":99},{"version":"3b9f559d0200134f3c196168630997caedeadc6733523c8b6076a09615d5dec8","impliedFormat":99},{"version":"932af64286d9723da5ef7b77a0c4229829ce8e085e6bcc5f874cb0b83e8310d4","impliedFormat":99},{"version":"adeb9278f11f5561157feee565171c72fd48f5fe34ed06f71abf24e561fcaa1e","impliedFormat":99},{"version":"2269fef79b4900fc6b08c840260622ca33524771ff24fda5b9101ad98ea551f3","impliedFormat":99},{"version":"73d47498a1b73d5392d40fb42a3e7b009ae900c8423f4088c4faa663cc508886","impliedFormat":99},{"version":"7efc34cdc4da0968c3ba687bc780d5cacde561915577d8d1c1e46c7ac931d023","impliedFormat":99},{"version":"3c20a3bb0c50c819419f44aa55acc58476dad4754a16884cef06012d02b0722f","impliedFormat":99},{"version":"4569abf6bc7d51a455503670f3f1c0e9b4f8632a3b030e0794c61bfbba2d13be","impliedFormat":99},{"version":"98b2297b4dc1404078a54b61758d8643e4c1d7830af724f3ed2445d77a7a2d57","impliedFormat":99},{"version":"952ba89d75f1b589e07070fea2d8174332e3028752e76fd46e1c16cc51e6e2af","impliedFormat":99},{"version":"b6c9a2deefb6a57ff68d2a38d33c34407b9939487fc9ee9f32ba3ecf2987a88a","impliedFormat":99},{"version":"f6b371377bab3018dac2bca63e27502ecbd5d06f708ad7e312658d3b5315d948","impliedFormat":99},{"version":"31947dd8f1c8eeb7841e1f139a493a73bd520f90e59a6415375d0d8e6a031f01","impliedFormat":99},{"version":"95cd83b807e10b1af408e62caf5fea98562221e8ddca9d7ccc053d482283ddda","impliedFormat":99},{"version":"19287d6b76288c2814f1633bdd68d2b76748757ffd355e73e41151644e4773d6","impliedFormat":99},{"version":"fc4e6ec7dade5f9d422b153c5d8f6ad074bd9cc4e280415b7dc58fb5c52b5df1","impliedFormat":99},{"version":"3aea973106e1184db82d8880f0ca134388b6cbc420f7309d1c8947b842886349","impliedFormat":99},{"version":"765e278c464923da94dda7c2b281ece92f58981642421ae097862effe2bd30fa","impliedFormat":99},{"version":"de260bed7f7d25593f59e859bd7c7f8c6e6bb87e8686a0fcafa3774cb5ca02d8","impliedFormat":99},{"version":"b5c341ce978f5777fbe05bc86f65e9906a492fa6b327bda3c6aae900c22e76c6","impliedFormat":99},{"version":"686ddbfaf88f06b02c6324005042f85317187866ca0f8f4c9584dd9479653344","impliedFormat":99},{"version":"7f789c0c1db29dd3aab6e159d1ba82894a046bf8df595ac48385931ae6ad83e0","impliedFormat":99},{"version":"8eb3057d4fe9b59b2492921b73a795a2455ebe94ccb3d01027a7866612ead137","impliedFormat":99},{"version":"1e43c5d7aee1c5ec20611e28b5417f5840c75d048de9d7f1800d6808499236f8","impliedFormat":99},{"version":"d42610a5a2bee4b71769968a24878885c9910cd049569daa2d2ee94208b3a7a5","impliedFormat":99},{"version":"f6ed95506a6ed2d40ed5425747529befaa4c35fcbbc1e0d793813f6d725690fa","impliedFormat":99},{"version":"a6fcc1cd6583939506c906dff1276e7ebdc38fbe12d3e108ba38ad231bd18d97","impliedFormat":99},{"version":"ed13354f0d96fb6d5878655b1fead51722b54875e91d5e53ef16de5b71a0e278","impliedFormat":99},{"version":"1193b4872c1fb65769d8b164ca48124c7ebacc33eae03abf52087c2b29e8c46c","impliedFormat":99},{"version":"af682dfabe85688289b420d939020a10eb61f0120e393d53c127f1968b3e9f66","impliedFormat":99},{"version":"0dca04006bf13f72240c6a6a502df9c0b49c41c3cab2be75e81e9b592dcd4ea8","impliedFormat":99},{"version":"79d6ac4a2a229047259116688f9cd62fda25422dee3ad304f77d7e9af53a41ef","impliedFormat":99},{"version":"64534c17173990dc4c3d9388d16675a059aac407031cfce8f7fdffa4ee2de988","impliedFormat":99},{"version":"ba46d160a192639f3ca9e5b640b870b1263f24ac77b6895ab42960937b42dcbb","impliedFormat":99},{"version":"5e5ddd6fc5b590190dde881974ab969455e7fad61012e32423415ae3d085b037","impliedFormat":99},{"version":"1c16fd00c42b60b96fe0fa62113a953af58ddf0d93b0a49cb4919cf5644616f0","impliedFormat":99},{"version":"eb240c0e6b412c57f7d9a9f1c6cd933642a929837c807b179a818f6e8d3a4e44","impliedFormat":99},{"version":"4a7bde5a1155107fc7d9483b8830099f1a6072b6afda5b78d91eb5d6549b3956","impliedFormat":99},{"version":"3c1baaffa9a24cc7ef9eea6b64742394498e0616b127ca630aca0e11e3298006","impliedFormat":99},{"version":"87ca1c31a326c898fa3feb99ec10750d775e1c84dbb7c4b37252bcf3742c7b21","impliedFormat":99},{"version":"d7bd26af1f5457f037225602035c2d7e876b80d02663ab4ca644099ad3a55888","impliedFormat":99},{"version":"2ad0a6b93e84a56b64f92f36a07de7ebcb910822f9a72ad22df5f5d642aff6f3","impliedFormat":99},{"version":"523d1775135260f53f672264937ee0f3dc42a92a39de8bee6c48c7ea60b50b5a","impliedFormat":99},{"version":"e441b9eebbc1284e5d995d99b53ed520b76a87cab512286651c4612d86cd408e","impliedFormat":99},{"version":"76f853ee21425c339a79d28e0859d74f2e53dee2e4919edafff6883dd7b7a80f","impliedFormat":99},{"version":"00cf042cd6ba1915648c8d6d2aa00e63bbbc300ea54d28ed087185f0f662e080","impliedFormat":99},{"version":"f57e6707d035ab89a03797d34faef37deefd3dd90aa17d90de2f33dce46a2c56","impliedFormat":99},{"version":"cc8b559b2cf9380ca72922c64576a43f000275c72042b2af2415ce0fb88d7077","impliedFormat":99},{"version":"1a337ca294c428ba8f2eb01e887b28d080ee4a4307ae87e02e468b1d26af4a74","impliedFormat":99},{"version":"5a15362fc2e72765a908c0d4dd89e3ab3b763e8bc8c23f19234a709ecfd202fe","impliedFormat":99},{"version":"2dffdfe62ac8af0943853234519616db6fd8958fc7ff631149fd8364e663f361","impliedFormat":99},{"version":"5dbdb2b2229b5547d8177c34705272da5a10b8d0033c49efbc9f6efba5e617f2","impliedFormat":99},{"version":"6fc0498cd8823d139004baff830343c9a0d210c687b2402c1384fb40f0aa461c","impliedFormat":99},{"version":"8492306a4864a1dc6fc7e0cc0de0ae9279cbd37f3aae3e9dc1065afcdc83dddc","impliedFormat":99},{"version":"c011b378127497d6337a93f020a05f726db2c30d55dc56d20e6a5090f05919a6","impliedFormat":99},{"version":"f4556979e95a274687ae206bbab2bb9a71c3ad923b92df241d9ab88c184b3f40","impliedFormat":99},{"version":"50e82bb6e238db008b5beba16d733b77e8b2a933c9152d1019cf8096845171a4","impliedFormat":99},{"version":"d6011f8b8bbf5163ef1e73588e64a53e8bf1f13533c375ec53e631aad95f1375","impliedFormat":99},{"version":"693cd7936ac7acfa026d4bcb5801fce71cec49835ba45c67af1ef90dbfd30af7","impliedFormat":99},{"version":"195e2cf684ecddfc1f6420564535d7c469f9611ce7a380d6e191811f84556cd2","impliedFormat":99},{"version":"1dc6b6e7b2a7f2962f31c77f4713f3a5a132bbe14c00db75d557568fe82e4311","impliedFormat":99},{"version":"add93b1180e9aaac2dae4ef3b16f7655893e2ecbe62bd9e48366c305f0063d89","impliedFormat":99},{"version":"594bd896fe37c970aafb7a376ebeec4c0d636b62a5f611e2e27d30fb839ad8a5","impliedFormat":99},{"version":"b1c6a6faf60542ba4b4271db045d7faea56e143b326ef507d2797815250f3afc","impliedFormat":99},{"version":"8c8b165beb794260f462679329b131419e9f5f35212de11c4d53e6d4d9cbedf6","impliedFormat":99},{"version":"ee5a4cf57d49fcf977249ab73c690a59995997c4672bb73fcaaf2eed65dbd1b2","impliedFormat":99},{"version":"f9f36051f138ab1c40b76b230c2a12b3ce6e1271179f4508da06a959f8bee4c1","impliedFormat":99},{"version":"9dc2011a3573d271a45c12656326530c0930f92539accbec3531d65131a14a14","impliedFormat":99},{"version":"091521ce3ede6747f784ae6f68ad2ea86bbda76b59d2bf678bcad2f9d141f629","impliedFormat":99},{"version":"202c2be951f53bafe943fb2c8d1245e35ed0e4dfed89f48c9a948e4d186dd6d4","impliedFormat":99},{"version":"c618aead1d799dbf4f5b28df5a6b9ce13d72722000a0ec3fe90a8115b1ea9226","impliedFormat":99},{"version":"9b0bf59708549c3e77fddd36530b95b55419414f88bbe5893f7bc8b534617973","impliedFormat":99},{"version":"7e216f67c4886f1bde564fb4eebdd6b185f262fe85ad1d6128cad9b229b10354","impliedFormat":99},{"version":"cd51e60b96b4d43698df74a665aa7a16604488193de86aa60ec0c44d9f114951","impliedFormat":99},{"version":"b63341fb6c7ba6f2aeabd9fc46b43e6cc2d2b9eec06534cfd583d9709f310ec2","impliedFormat":99},{"version":"be2af50c81b15bcfe54ad60f53eb1c72dae681c72d0a9dce1967825e1b5830a3","impliedFormat":99},{"version":"be5366845dfb9726f05005331b9b9645f237f1ddc594c0def851208e8b7d297b","impliedFormat":99},{"version":"5ddd536aaeadd4bf0f020492b3788ed209a7050ce27abec4e01c7563ff65da81","impliedFormat":99},{"version":"e243b24da119c1ef0d79af2a45217e50682b139cb48e7607efd66cc01bd9dcda","impliedFormat":99},{"version":"5b1398c8257fd180d0bf62e999fe0a89751c641e87089a83b24392efda720476","impliedFormat":99},{"version":"1588b1359f8507a16dbef67cd2759965fc2e8d305e5b3eb71be5aa9506277dff","impliedFormat":99},{"version":"4c99f2524eee1ec81356e2b4f67047a4b7efaf145f1c4eb530cd358c36784423","impliedFormat":99},{"version":"b30c6b9f6f30c35d6ef84daed1c3781e367f4360171b90598c02468b0db2fc3d","impliedFormat":99},{"version":"79c0d32274ccfd45fae74ac61d17a2be27aea74c70806d22c43fc625b7e9f12a","impliedFormat":99},{"version":"1b7e3958f668063c9d24ac75279f3e610755b0f49b1c02bb3b1c232deb958f54","impliedFormat":99},{"version":"779d4022c3d0a4df070f94858a33d9ebf54af3664754536c4ce9fd37c6f4a8db","impliedFormat":99},{"version":"e662f063d46aa8c088edffdf1d96cb13d9a2cbf06bc38dc6fc62b4d125fb7b49","impliedFormat":99},{"version":"d1d612df1e41c90d9678b07740d13d4f8e6acec2f17390d4ff4be5c889a6d37d","impliedFormat":99},{"version":"c95933fe140918892d569186f17b70ef6b1162f851a0f13f6a89e8f4d599c5a1","impliedFormat":99},{"version":"1d8d30677f87c13c2786980a80750ac1e281bdb65aa013ea193766fe9f0edd74","impliedFormat":99},{"version":"4661673cbc984b8a6ee5e14875a71ed529b64e7f8e347e12c0db4cecc25ad67d","impliedFormat":99},{"version":"7f980a414274f0f23658baa9a16e21d828535f9eac538e2eab2bb965325841db","impliedFormat":99},{"version":"20fb747a339d3c1d4a032a31881d0c65695f8167575e01f222df98791a65da9b","impliedFormat":99},{"version":"dd4e7ebd3f205a11becf1157422f98db675a626243d2fbd123b8b93efe5fb505","impliedFormat":99},{"version":"43ec6b74c8d31e88bb6947bb256ad78e5c6c435cbbbad991c3ff39315b1a3dba","impliedFormat":99},{"version":"b27242dd3af2a5548d0c7231db7da63d6373636d6c4e72d9b616adaa2acef7e1","impliedFormat":99},{"version":"e0ee7ba0571b83c53a3d6ec761cf391e7128d8f8f590f8832c28661b73c21b68","impliedFormat":99},{"version":"072bfd97fc61c894ef260723f43a416d49ebd8b703696f647c8322671c598873","impliedFormat":99},{"version":"e70875232f5d5528f1650dd6f5c94a5bed344ecf04bdbb998f7f78a3c1317d02","impliedFormat":99},{"version":"8e495129cb6cd8008de6f4ff8ce34fe1302a9e0dcff8d13714bd5593be3f7898","impliedFormat":99},{"version":"0345bc0b1067588c4ea4c48e34425d3284498c629bc6788ebc481c59949c9037","impliedFormat":99},{"version":"e30f5b5d77c891bc16bd65a2e46cd5384ea57ab3d216c377f482f535db48fc8f","impliedFormat":99},{"version":"f113afe92ee919df8fc29bca91cab6b2ffbdd12e4ac441d2bb56121eb5e7dbe3","impliedFormat":99},{"version":"49d567cc002efb337f437675717c04f207033f7067825b42bb59c9c269313d83","impliedFormat":99},{"version":"1d248f707d02dc76555298a934fba0f337f5028bb1163ce59cd7afb831c9070f","impliedFormat":99},{"version":"5d8debffc9e7b842dc0f17b111673fe0fc0cca65e67655a2b543db2150743385","impliedFormat":99},{"version":"5fccbedc3eb3b23bc6a3a1e44ceb110a1f1a70fa8e76941dce3ae25752caa7a9","impliedFormat":99},{"version":"f4031b95f3bab2b40e1616bd973880fb2f1a97c730bac5491d28d6484fac9560","impliedFormat":99},{"version":"dbe75b3c5ed547812656e7945628f023c4cd0bc1879db0db3f43a57fb8ec0e2b","impliedFormat":99},{"version":"b754718a546a1939399a6d2a99f9022d8a515f2db646bab09f7d2b5bff3cbb82","impliedFormat":99},{"version":"2eef10fb18ed0b4be450accf7a6d5bcce7b7f98e02cac4e6e793b7ad04fc0d79","impliedFormat":99},{"version":"c46f471e172c3be12c0d85d24876fedcc0c334b0dab48060cdb1f0f605f09fed","impliedFormat":99},{"version":"7d6ddeead1d208588586c58c26e4a23f0a826b7a143fb93de62ed094d0056a33","impliedFormat":99},{"version":"7c5782291ff6e7f2a3593295681b9a411c126e3736b83b37848032834832e6b9","impliedFormat":99},{"version":"3a3f09df6258a657dd909d06d4067ee360cd2dccc5f5d41533ae397944a11828","impliedFormat":99},{"version":"ea54615be964503fec7bce04336111a6fa455d3e8d93d44da37b02c863b93eb8","impliedFormat":99},{"version":"2a83694bc3541791b64b0e57766228ea23d92834df5bf0b0fcb93c5bb418069c","impliedFormat":99},{"version":"b5913641d6830e7de0c02366c08b1d26063b5758132d8464c938e78a45355979","impliedFormat":99},{"version":"46c095d39c1887979d9494a824eda7857ec13fb5c20a6d4f7d02c2975309bf45","impliedFormat":99},{"version":"f6e02ca076dc8e624aa38038e3488ebd0091e2faea419082ed764187ba8a6500","impliedFormat":99},{"version":"4d49e8a78aba1d4e0ad32289bf8727ae53bc2def9285dff56151a91e7d770c3e","impliedFormat":99},{"version":"63315cf08117cc728eab8f3eec8801a91d2cd86f91d0ae895d7fd928ab54596d","impliedFormat":99},{"version":"a14a6f3a5636bcaebfe9ec2ccfa9b07dc94deb1f6c30358e9d8ea800a1190d5e","impliedFormat":99},{"version":"21206e7e81876dabf2a7af7aa403f343af1c205bdcf7eff24d9d7f4eee6214c4","impliedFormat":99},{"version":"cd0a9f0ffec2486cad86b7ef1e4da42953ffeb0eb9f79f536e16ff933ec28698","impliedFormat":99},{"version":"f609a6ec6f1ab04dba769e14d6b55411262fd4627a099e333aa8876ea125b822","impliedFormat":99},{"version":"6d8052bb814be030c64cb22ca0e041fe036ad3fc8d66208170f4e90d0167d354","impliedFormat":99},{"version":"851f72a5d3e8a2bf7eeb84a3544da82628f74515c92bdf23c4a40af26dcc1d16","impliedFormat":99},{"version":"59692a7938aab65ea812a8339bbc63c160d64097fe5a457906ea734d6f36bcd4","impliedFormat":99},{"version":"8cb3b95e610c44a9986a7eab94d7b8f8462e5de457d5d10a0b9c6dd16bde563b","impliedFormat":99},{"version":"f571713abd9a676da6237fe1e624d2c6b88c0ca271c9f1acc1b4d8efeea60b66","impliedFormat":99},{"version":"16c5d3637d1517a3d17ed5ebcfbb0524f8a9997a7b60f6100f7c5309b3bb5ac8","impliedFormat":99},{"version":"ca1ec669726352c8e9d897f24899abf27ad15018a6b6bcf9168d5cd1242058ab","impliedFormat":99},{"version":"bffb1b39484facf6d0c5d5feefe6c0736d06b73540b9ce0cf0f12da2edfd8e1d","impliedFormat":99},{"version":"f1663c030754f6171b8bb429096c7d2743282de7733bccd6f67f84a4c588d96e","impliedFormat":99},{"version":"dd09693285e58504057413c3adc84943f52b07d2d2fd455917f50fa2a63c9d69","impliedFormat":99},{"version":"d94c94593d03d44a03810a85186ae6d61ebeb3a17a9b210a995d85f4b584f23d","impliedFormat":99},{"version":"c7c3bf625a8cb5a04b1c0a2fbe8066ecdbb1f383d574ca3ffdabe7571589a935","impliedFormat":99},{"version":"7a2f39a4467b819e873cd672c184f45f548511b18f6a408fe4e826136d0193bb","impliedFormat":99},{"version":"f8a0ae0d3d4993616196619da15da60a6ec5a7dfaf294fe877d274385eb07433","impliedFormat":99},{"version":"2cca80de38c80ef6c26deb4e403ca1ff4efbe3cf12451e26adae5e165421b58d","impliedFormat":99},{"version":"0070d3e17aa5ad697538bf865faaff94c41f064db9304b2b949eb8bcccb62d34","impliedFormat":99},{"version":"53df93f2db5b7eb8415e98242c1c60f6afcac2db44bce4a8830c8f21eee6b1dd","impliedFormat":99},{"version":"d67bf28dc9e6691d165357424c8729c5443290367344263146d99b2f02a72584","impliedFormat":99},{"version":"932557e93fbdf0c36cc29b9e35950f6875425b3ac917fa0d3c7c2a6b4f550078","impliedFormat":99},{"version":"e3dc7ec1597fb61de7959335fb7f8340c17bebf2feb1852ed8167a552d9a4a25","impliedFormat":99},{"version":"b64e15030511c5049542c2e0300f1fe096f926cf612662884f40227267f5cd9f","impliedFormat":99},{"version":"1932796f09c193783801972a05d8fb1bfef941bb46ac76fbe1abb0b3bfb674fa","impliedFormat":99},{"version":"d9575d5787311ee7d61ad503f5061ebcfaf76b531cfecce3dc12afb72bb2d105","impliedFormat":99},{"version":"5b41d96c9a4c2c2d83f1200949f795c3b6a4d2be432b357ad1ab687e0f0de07c","impliedFormat":99},{"version":"38ec829a548e869de4c5e51671245a909644c8fb8e7953259ebb028d36b4dd06","impliedFormat":99},{"version":"20c2c5e44d37dac953b516620b5dba60c9abd062235cdf2c3bfbf722d877a96b","impliedFormat":99},{"version":"875fe6f7103cf87c1b741a0895fda9240fed6353d5e7941c8c8cbfb686f072b4","impliedFormat":99},{"version":"c0ccccf8fbcf5d95f88ed151d0d8ce3015aa88cf98d4fd5e8f75e5f1534ee7ae","impliedFormat":99},{"version":"1b1f4aba21fd956269ced249b00b0e5bfdbd5ebd9e628a2877ab1a2cf493c919","impliedFormat":99},{"version":"939e3299952dff0869330e3324ba16efe42d2cf25456d7721d7f01a43c1b0b34","impliedFormat":99},{"version":"f0a9b52faec508ba22053dedfa4013a61c0425c8b96598cef3dea9e4a22637c6","impliedFormat":99},{"version":"d5b302f50db61181adc6e209af46ae1f27d7ef3d822de5ea808c9f44d7d219fd","impliedFormat":99},{"version":"19131632ba492c83e8eeadf91a481def0e0b39ffc3f155bc20a7f640e0570335","impliedFormat":99},{"version":"4581c03abea21396c3e1bb119e2fd785a4d91408756209cbeed0de7070f0ab5b","impliedFormat":99},{"version":"ebcd3b99e17329e9d542ef2ccdd64fddab7f39bc958ee99bbdb09056c02d6e64","impliedFormat":99},{"version":"4b148999deb1d95b8aedd1a810473a41d9794655af52b40e4894b51a8a4e6a6d","impliedFormat":99},{"version":"1781cc99a0f3b4f11668bb37cca7b8d71f136911e87269e032f15cf5baa339bf","impliedFormat":99},{"version":"33f1b7fa96117d690035a235b60ecd3cd979fb670f5f77b08206e4d8eb2eb521","impliedFormat":99},{"version":"01429b306b94ff0f1f5548ce5331344e4e0f5872b97a4776bd38fd2035ad4764","impliedFormat":99},{"version":"c1bc4f2136de7044943d784e7a18cb8411c558dbb7be4e4b4876d273cbd952af","impliedFormat":99},{"version":"5470f84a69b94643697f0d7ec2c8a54a4bea78838aaa9170189b9e0a6e75d2cf","impliedFormat":99},{"version":"36aaa44ee26b2508e9a6e93cd567e20ec700940b62595caf962249035e95b5e3","impliedFormat":99},{"version":"f8343562f283b7f701f86ad3732d0c7fd000c20fe5dc47fa4ed0073614202b4d","impliedFormat":99},{"version":"a53c572630a78cd99a25b529069c1e1370f8a5d8586d98e798875f9052ad7ad1","impliedFormat":99},{"version":"4ad3451d066711dde1430c544e30e123f39e23c744341b2dfd3859431c186c53","impliedFormat":99},{"version":"8069cbef9efa7445b2f09957ffbc27b5f8946fdbade4358fb68019e23df4c462","impliedFormat":99},{"version":"cd8b4e7ad04ba9d54eb5b28ac088315c07335b837ee6908765436a78d382b4c3","impliedFormat":99},{"version":"d533d8f8e5c80a30c51f0cbfe067b60b89b620f2321d3a581b5ba9ac8ffd7c3a","impliedFormat":99},{"version":"33f49f22fdda67e1ddbacdcba39e62924793937ea7f71f4948ed36e237555de3","impliedFormat":99},{"version":"710c31d7c30437e2b8795854d1aca43b540cb37cefd5900f09cfcd9e5b8540c4","impliedFormat":99},{"version":"b2c03a0e9628273bc26a1a58112c311ffbc7a0d39938f3878837ab14acf3bc41","impliedFormat":99},{"version":"a93beb0aa992c9b6408e355ea3f850c6f41e20328186a8e064173106375876c2","impliedFormat":99},{"version":"efdcba88fcd5421867898b5c0e8ea6331752492bd3547942dea96c7ebcb65194","impliedFormat":99},{"version":"a98e777e7a6c2c32336a017b011ba1419e327320c3556b9139413e48a8460b9a","impliedFormat":99},{"version":"ea44f7f8e1fe490516803c06636c1b33a6b82314366be1bd6ffa4ba89bc09f86","impliedFormat":99},{"version":"c25f22d78cc7f46226179c33bef0e4b29c54912bde47b62e5fdaf9312f22ffcb","impliedFormat":99},{"version":"d57579cfedc5a60fda79be303080e47dfe0c721185a5d95276523612228fcefc","impliedFormat":99},{"version":"a41630012afe0d4a9ff14707f96a7e26e1154266c008ddbd229e3f614e4d1cf7","impliedFormat":99},{"version":"298a858633dfa361bb8306bbd4cfd74f25ab7cc20631997dd9f57164bc2116d1","impliedFormat":99},{"version":"921782c45e09940feb232d8626a0b8edb881be2956520c42c44141d9b1ddb779","impliedFormat":99},{"version":"06117e4cc7399ce1c2b512aa070043464e0561f956bda39ef8971a2fcbcdbf2e","impliedFormat":99},{"version":"daccf332594b304566c7677c2732fed6e8d356da5faac8c5f09e38c2f607a4ab","impliedFormat":99},{"version":"4386051a0b6b072f35a2fc0695fecbe4a7a8a469a1d28c73be514548e95cd558","impliedFormat":99},{"version":"78e41de491fe25947a7fd8eeef7ebc8f1c28c1849a90705d6e33f34b1a083b90","impliedFormat":99},{"version":"3ccd198e0a693dd293ed22e527c8537c76b8fe188e1ebf20923589c7cfb2c270","impliedFormat":99},{"version":"2ebf2ee015d5c8008428493d4987e2af9815a76e4598025dd8c2f138edc1dcae","impliedFormat":99},{"version":"0dcc8f61382c9fcdafd48acc54b6ffda69ca4bb7e872f8ad12fb011672e8b20c","impliedFormat":99},{"version":"9db563287eb527ead0bcb9eb26fbec32f662f225869101af3cabcb6aee9259cf","impliedFormat":99},{"version":"068489bec523be43f12d8e4c5c337be4ff6a7efb4fe8658283673ae5aae14b85","impliedFormat":99},{"version":"838212d0dc5b97f7c5b5e29a89953de3906f72fce13c5ae3c5ade346f561d226","impliedFormat":99},{"version":"ddc78d29af824ad7587152ea523ed5d60f2bc0148d8741c5dacf9b5b44587b1b","impliedFormat":99},{"version":"019b522e3783e5519966927ceeb570eefcc64aba3f9545828a5fb4ae1fde53c6","impliedFormat":99},{"version":"b34623cc86497a5123de522afba770390009a56eebddba38d2aa5798b70b0a87","impliedFormat":99},{"version":"d2a8cbeb0c0caaf531342062b4b5c227118862879f6a25033e31fad00797b7eb","impliedFormat":99},{"version":"14891c20f15be1d0d42ecbbd63de1c56a4d745e3ea2b4c56775a4d5d36855630","impliedFormat":99},{"version":"e55a1f6b198a39e38a3cea3ffe916aab6fde7965c827db3b8a1cacf144a67cd9","impliedFormat":99},{"version":"f7910ccfe56131e99d52099d24f3585570dc9df9c85dd599a387b4499596dd4d","impliedFormat":99},{"version":"9409ac347c5779f339112000d7627f17ede6e39b0b6900679ce5454d3ad2e3c9","impliedFormat":99},{"version":"22dfe27b0aa1c669ce2891f5c89ece9be18074a867fe5dd8b8eb7c46be295ca1","impliedFormat":99},{"version":"684a5c26ce2bb7956ef6b21e7f2d1c584172cd120709e5764bc8b89bac1a10eb","impliedFormat":99},{"version":"93761e39ce9d3f8dd58c4327e615483f0713428fa1a230883eb812292d47bbe8","impliedFormat":99},{"version":"c66be51e3d121c163a4e140b6b520a92e1a6a8a8862d44337be682e6f5ec290a","impliedFormat":99},{"version":"66e486a9c9a86154dc9780f04325e61741f677713b7e78e515938bf54364fee2","impliedFormat":99},{"version":"d211bc80b6b6e98445df46fe9dd3091944825dd924986a1c15f9c66d7659c495","impliedFormat":99},{"version":"8dd2b72f5e9bf88939d066d965144d07518e180efec3e2b6d06ae5e725d84c7d","impliedFormat":99},{"version":"949cb88e315ab1a098c3aa4a8b02496a32b79c7ef6d189eee381b96471a7f609","impliedFormat":99},{"version":"bc43af2a5fa30a36be4a3ed195ff29ffb8067bf4925aa350ace9d9f18f380cc2","impliedFormat":99},{"version":"36844f94161a10af6586f50b95d40baa244215fea31055f27bcbea42cd30373e","impliedFormat":99},{"version":"8428e71f6d1b63acf55ceb56244aad9cf07678cf9626166e4aded15e3d252f8a","impliedFormat":99},{"version":"11505212ab24aa0f06d719a09add4be866e26f0fc15e96a1a2a8522c0c6a73a8","impliedFormat":99},{"version":"55828c4ddfee3bc66d533123ff52942ae67a2115f7395b2a2e0a22cea3ca64e7","impliedFormat":99},{"version":"c44bb0071cededc08236d57d1131c44339c1add98b029a95584dfe1462533575","impliedFormat":99},{"version":"7a4935af71877da3bbc53938af00e5d4f6d445ef850e1573a240447dcb137b5c","impliedFormat":99},{"version":"4e313033202712168ecc70a6d830964ad05c9c93f81d806d7a25d344f6352565","impliedFormat":99},{"version":"8a1fc69eaf8fc8d447e6f776fbfa0c1b12245d7f35f1dbfb18fbc2d941f5edd8","impliedFormat":99},{"version":"afb9b4c8bd38fb43d38a674de56e6f940698f91114fded0aa119de99c6cd049a","impliedFormat":99},{"version":"1d277860f19b8825d027947fca9928ee1f3bfaa0095e85a97dd7a681b0698dfc","impliedFormat":99},{"version":"6d32122bb1e7c0b38b6f126d166dff1f74c8020f8ba050248d182dcafc835d08","impliedFormat":99},{"version":"cfac5627d337b82d2fbeff5f0f638b48a370a8d72d653327529868a70c5bc0f8","impliedFormat":99},{"version":"8a826bc18afa4c5ed096ceb5d923e2791a5bae802219e588a999f535b1c80492","impliedFormat":99},{"version":"73e94021c55ab908a1b8c53792e03bf7e0d195fee223bdc5567791b2ccbfcdec","impliedFormat":99},{"version":"5f73eb47b37f3a957fe2ac6fe654648d60185908cab930fc01c31832a5cb4b10","impliedFormat":99},{"version":"cb6372a2460010a342ba39e06e1dcfd722e696c9d63b4a71577f9a3c72d09e0a","impliedFormat":99},{"version":"1e289698069f553f36bbf12ee0084c492245004a69409066faceb173d2304ec4","impliedFormat":99},{"version":"f1ca71145e5c3bba4d7f731db295d593c3353e9a618b40c4af0a4e9a814bb290","impliedFormat":99},{"version":"ac12a6010ff501e641f5a8334b8eaf521d0e0739a7e254451b6eea924c3035c7","impliedFormat":99},{"version":"97395d1e03af4928f3496cc3b118c0468b560765ab896ce811acb86f6b902b5c","impliedFormat":99},{"version":"7dcfbd6a9f1ce1ddf3050bd469aa680e5259973b4522694dc6291afe20a2ae28","impliedFormat":99},{"version":"6e545419ad200ae4614f8e14d32b7e67e039c26a872c0f93437b0713f54cde53","impliedFormat":99},{"version":"efc225581aae9bb47d421a1b9f278db0238bc617b257ce6447943e59a2d1621e","impliedFormat":99},{"version":"8833b88e26156b685bc6f3d6a014c2014a878ffbd240a01a8aee8a9091014e9c","impliedFormat":99},{"version":"7a2a42a1ac642a9c28646731bd77d9849cb1a05aa1b7a8e648f19ab7d72dd7dc","impliedFormat":99},{"version":"4d371c53067a3cc1a882ff16432b03291a016f4834875b77169a2d10bb1b023e","impliedFormat":99},{"version":"99b38f72e30976fd1946d7b4efe91aa227ecf0c9180e1dd6502c1d39f37445b4","impliedFormat":99},{"version":"df1bcf0b1c413e2945ce63a67a1c5a7b21dbbec156a97d55e9ea0eed90d2c604","impliedFormat":99},{"version":"6e2011a859fa435b1196da1720be944ed59c668bb42d2f2711b49a506b3e4e90","impliedFormat":99},{"version":"b4bfa90fac90c6e0d0185d2fe22f059fec67587cc34281f62294f9c4615a8082","impliedFormat":99},{"version":"036d363e409ebe316a6366aff5207380846f8f82e100c2e3db4af5fe0ad0c378","impliedFormat":99},{"version":"5ae6642588e4a72e5a62f6111cb750820034a7fbe56b5d8ec2bcb29df806ce52","impliedFormat":99},{"version":"6fca09e1abc83168caf36b751dec4ddda308b5714ec841c3ff0f3dc07b93c1b8","impliedFormat":99},{"version":"2f7268e6ac610c7122b6b416e34415ce42b51c56d080bef41786d2365f06772d","impliedFormat":99},{"version":"9a07957f75128ed0be5fc8a692a14da900878d5d5c21880f7c08f89688354aa4","impliedFormat":99},{"version":"8b6f3ae84eab35c50cf0f1b608c143fe95f1f765df6f753cd5855ae61b3efbe2","impliedFormat":99},{"version":"992491d83ff2d1e7f64a8b9117daee73724af13161f1b03171f0fa3ffe9b4e3e","impliedFormat":99},{"version":"12bcf6af851be8dd5f3e66c152bb77a83829a6a8ba8c5acc267e7b15e11aa9ab","impliedFormat":99},{"version":"e2704efc7423b077d7d9a21ddb42f640af1565e668d5ec85f0c08550eff8b833","impliedFormat":99},{"version":"e0513c71fd562f859a98940633830a7e5bcd7316b990310e8bb68b1d41d676a3","impliedFormat":99},{"version":"712071b9066a2d8f4e11c3b8b3d5ada6253f211a90f06c6e131cff413312e26d","impliedFormat":99},{"version":"5a187a7bc1e7514ef1c3d6eaafa470fc45541674d8fca0f9898238728d62666a","impliedFormat":99},{"version":"0c06897f7ab3830cef0701e0e083b2c684ed783ae820b306aedd501f32e9562d","impliedFormat":99},{"version":"56cc6eae48fd08fa709cf9163d01649f8d24d3fea5806f488d2b1b53d25e1d6c","impliedFormat":99},{"version":"57a925b13947b38c34277d93fb1e85d6f03f47be18ca5293b14082a1bd4a48f5","impliedFormat":99},{"version":"9d9d64c1fa76211dd529b6a24061b8d724e2110ee55d3829131bca47f3fe4838","impliedFormat":99},{"version":"c13042e244bb8cf65586e4131ef7aed9ca33bf1e029a43ed0ebab338b4465553","impliedFormat":99},{"version":"54be9b9c71a17cb2519b841fad294fa9dc6e0796ed86c8ac8dd9d8c0d1c3a631","impliedFormat":99},{"version":"10881be85efd595bef1d74dfa7b9a76a5ab1bfed9fb4a4ca7f73396b72d25b90","impliedFormat":99},{"version":"925e71eaa87021d9a1215b5cf5c5933f85fe2371ddc81c32d1191d7842565302","impliedFormat":99},{"version":"faed0b3f8979bfbfb54babcff9d91bd51fda90931c7716effa686b4f30a09575","impliedFormat":99},{"version":"53c72d68328780f711dbd39de7af674287d57e387ddc5a7d94f0ffd53d8d3564","impliedFormat":99},{"version":"51129924d359cdebdccbf20dbabc98c381b58bfebe2457a7defed57002a61316","impliedFormat":99},{"version":"7270a757071e3bc7b5e7a6175f1ac9a4ddf4de09f3664d80cb8805138f7d365b","impliedFormat":99},{"version":"ea7b5c6a79a6511cdeeedc47610370be1b0e932e93297404ef75c90f05fc1b61","impliedFormat":99},{"version":"ea7a1b1f7a1d44d222d98a01a836f19ac22602324d1c3faf755303adf270f0fb","signature":"5082e81bd410ad4a84d3529c3c0c46cff61e9b6ca34043585124acae4d39d430"},{"version":"183e02d315b3fc619b0dcd0a5762647534473f62a4e9018b76744f3ba55967bc","signature":"6bbd79f5aaa017affd6a2106b9ce09f432fbb6a3b630ba21d20f763d9676c613"},{"version":"e516240bc1e5e9faef055432b900bc0d3c9ca7edce177fdabbc6c53d728cced8","impliedFormat":99},{"version":"5402765feacf44e052068ccb4535a346716fa1318713e3dae1af46e1e85f29a9","impliedFormat":99},{"version":"e16ec5d4796e7a765810efee80373675cedc4aa4814cf7272025a88addf5f0be","impliedFormat":99},{"version":"1f57157fcd45f9300c6efcfc53e2071fbe43396b0a7ed2701fbd1efb5599f07f","impliedFormat":99},{"version":"9f1886f3efddfac35babcada2d454acd4e23164345d11c979966c594af63468b","impliedFormat":99},{"version":"a3541c308f223863526df064933e408eba640c0208c7345769d7dc330ad90407","impliedFormat":99},{"version":"59af208befeb7b3c9ab0cb6c511e4fec54ede11922f2ffb7b497351deaf8aa2e","impliedFormat":99},{"version":"928b16f344f6cddaba565da8238f4cf2ddf12fe03eb426ab46a7560e9b3078fa","impliedFormat":99},{"version":"120bdf62bccef4ea96562a3d30dd60c9d55481662f5cf31c19725f56c0056b34","impliedFormat":99},{"version":"39e0da933908de42ba76ea1a92e4657305ae195804cfaa8760664e80baac2d6a","impliedFormat":99},{"version":"55ce6ca8df9d774d60cef58dd5d716807d5cc8410b8b065c06d3edac13f2e726","impliedFormat":99},{"version":"788a0faf3f28d43ce3793b4147b7539418a887b4a15a00ffb037214ed8f0b7f6","impliedFormat":99},{"version":"a3e66e7b8ccdab967cd4ada0f178151f1c42746eabb589a06958482fd4ed354e","impliedFormat":99},{"version":"bf45a2964a872c9966d06b971d0823daecbd707f97e927f2368ba54bb1b13a90","impliedFormat":99},{"version":"39973a12c57e06face646fb79462aabe8002e5523eec4e86e399228eb34b32c9","impliedFormat":99},{"version":"f01091e9b5028acfb38208113ae051fad8a0b4b8ec1f7137a2a5cf903c47eefc","impliedFormat":99},{"version":"b3e87824c9e7e3a3be7f76246e45c8d603ce83d116733047200b3aa95875445b","impliedFormat":99},{"version":"7e1f7f9ae14e362d41167dc861be6a8d76eca30dde3a9893c42946dc5a5fc686","impliedFormat":99},{"version":"9308ef3b9433063ac753a55c3f36d6d89fa38a8e6c51e05d9d8329c7f1174f24","impliedFormat":99},{"version":"cd3bb1aa24726a0abd67558fde5759fe968c3c6aa3ec7bad272e718851502894","impliedFormat":99},{"version":"1ae0f22c3b8420b5c2fec118f07b7ebd5ae9716339ab3477f63c603fe7a151c8","impliedFormat":99},{"version":"919ff537fff349930acc8ad8b875fd985a17582fb1beb43e2f558c541fd6ecd9","impliedFormat":99},{"version":"4e67811e45bae6c44bd6f13a160e4188d72fd643665f40c2ac3e8a27552d3fd9","impliedFormat":99},{"version":"3d1450fd1576c1073f6f4db9ebae5104e52e2c4599afb68d7d6c3d283bdbaf4f","impliedFormat":99},{"version":"c072af873c33ff11af126c56a846dfada32461b393983a72b6da7bff373e0002","impliedFormat":99},{"version":"de66e997ea5376d4aeb16d77b86f01c7b7d6d72fbb738241966459d42a4089e0","impliedFormat":99},{"version":"d77ea3b91e4bc44d710b7c9487c2c6158e8e5a3439d25fc578befeb27b03efd7","impliedFormat":99},{"version":"a3d5c695c3d1ebc9b0bd55804afaf2ac7c97328667cbeedf2c0861b933c45d3e","impliedFormat":99},{"version":"270724545d446036f42ddea422ee4d06963db1563ccc5e18b01c76f6e67968ae","impliedFormat":99},{"version":"85441c4f6883f7cfd1c5a211c26e702d33695acbabec8044e7fa6831ed501b45","impliedFormat":99},{"version":"0f268017a6b1891fdeea69c2a11d576646d7fd9cdfc8aac74d003cd7e87e9c5a","impliedFormat":99},{"version":"9ece188c336c80358742a5a0279f2f550175f5a07264349d8e0ce64db9701c0b","impliedFormat":99},{"version":"cf41b0fc7d57643d1a8d21af07b0247db2f2d7e2391c2e55929e9c00fbe6ab9a","impliedFormat":99},{"version":"11e7ddddd9eddaac56a6f23d8699ae7a94c2a55ae8c986fdabc719d3c3e875a1","impliedFormat":99},{"version":"dd129c2d348be7dbf9f15d34661defdfc11ee00628ca6f7161bead46095c6bc3","impliedFormat":99},{"version":"c38d8e7cfc64bbfc14a63346388249c1cfa2cc02166c5f37e5a57da4790ce27f","impliedFormat":99},{"version":"0c018ef233861ab82b9807d4e50fd7c22ee5a4c7f9387e17abf5272b8c80b58a","signature":"9a62eaccfc18c3ff712ad8a93b191be6de57e386696760d3982ff967bd793016"},{"version":"56208c500dcb5f42be7e18e8cb578f257a1a89b94b3280c506818fed06391805","impliedFormat":1},{"version":"0c94c2e497e1b9bcfda66aea239d5d36cd980d12a6d9d59e66f4be1fa3da5d5a","impliedFormat":1},{"version":"eb9271b3c585ea9dc7b19b906a921bf93f30f22330408ffec6df6a22057f3296","impliedFormat":1},{"version":"aa4a927d0c7239dff845a64e676c71aeed2bbda89a7fb486baab22eb7688ba1d","impliedFormat":1},{"version":"340a990742a00862049b378aaa482b5bb8323d443c799dded51ce711f4f8eb51","impliedFormat":1},{"version":"89eeeebbc612a079c6e7ebe0bde08e06fbc46cfeaebf6157ea3051ed55967b10","impliedFormat":1},{"version":"4c72f66622e266b542fb097f4d1fe88eb858b88b98414a13ef3dd901109e03a1","impliedFormat":1},{"version":"23a933d83f3a8d595b35f3827c5e68239fb4f6eb44e96389269d183fe7ff09ba","impliedFormat":1},{"version":"2acad3ae616a9fb5a8c3d4d7bb5edb11d1d0102372ee939e7fc64359fec4046e","impliedFormat":1},{"version":"c812eabb7d2e13c8e72e216208448f92341a4094dd107cbb0bdb2cb23d1a83e7","impliedFormat":1},{"version":"f734b58ea162765ff4d4a36f671ee06da898921e985a2064510f4925ec1ed062","affectsGlobalScope":true,"impliedFormat":1},{"version":"55c0569d0b70dbc0bb9a811469a1e2a7b8e2bab2d70c013f2e40dfb2d2803d05","impliedFormat":1},{"version":"37f96daaddc2dd96712b2e86f3901f477ac01a5c2539b1bc07fd609d62039ee1","impliedFormat":1},{"version":"9c5c84c449a3d74e417343410ba9f1bd8bfeb32abd16945a1b3d0592ded31bc8","impliedFormat":1},{"version":"a7f09d2aaf994dbfd872eda4f2411d619217b04dbe0916202304e7a3d4b0f5f8","impliedFormat":1},{"version":"a66ebe9a1302d167b34d302dd6719a83697897f3104d255fe02ff65c47c5814e","impliedFormat":99},{"version":"a7f23fecdccf1504dae27c359db676d0a1fbaaeb400b55959078924e4c3a4992","impliedFormat":1},{"version":"bee66a62aa1da254412bb2c3c8c1a0dd12efea0722d35cc6ea7b5fdaa6778fd1","impliedFormat":1},{"version":"05d80364872e31465f8a1eaf2697e4fc418f78aa336f4cea68620a23f1379f6f","impliedFormat":1},{"version":"7345ba3b9eb2182d8cdc4c961b62847c3c9918985179ddefd5ca58a80d8b9e6a","impliedFormat":1},{"version":"81c4a0e6de3d5674ec3a721e04b3eb3244180bda86a22c4185ecac0e3f051cd8","impliedFormat":1},{"version":"39975a01d837394bcac2559639e88ecdc4cfd22433327b46ea6f78eb2c584813","impliedFormat":1},{"version":"7261cabedede09ebfd50e135af40be34f76fb9dbc617e129eaec21b00161ae86","impliedFormat":1},{"version":"ea554794a0d4136c5c6ea8f59ae894c3c0848b17848468a63ed5d3a307e148ae","impliedFormat":1},{"version":"2c378d9368abcd2eba8c29b294d40909845f68557bc0b38117e4f04fc56e5f9c","impliedFormat":1},{"version":"9b048390bcffe88c023a4cd742a720b41d4cd7df83bc9270e6f2339bf38de278","affectsGlobalScope":true,"impliedFormat":1},{"version":"c60b14c297cc569c648ddaea70bc1540903b7f4da416edd46687e88a543515a1","impliedFormat":1},{"version":"acfa00e5599216bcb8c9f3095e5fec4aeddfcc65aabe0eac7e8dbc51e33691c9","impliedFormat":1},{"version":"922d8f0f46dbe9fb80def96f7bcd9d5c1a6c0022d71023afa9eb7b45189d61f2","impliedFormat":1},{"version":"90588fb5ef85f4a8a4234e8062eb97bd3c8114dfb86a0c67f62685969222da8b","impliedFormat":1},{"version":"6ce50ada4bc9d2ad69927dce35cead36da337a618de0a2daaaeeafe38c692597","impliedFormat":1},{"version":"13b8d0a9b0493191f15d11a5452e7c523f811583a983852c1c8539ab2cfdae7c","impliedFormat":1},{"version":"8932771f941e3f8f153a950c65707d0611f30f577256aa59d4b92eda1c3d8f32","impliedFormat":1},{"version":"df6251bd4b5fad52759bfe96e8ab8f2ce625d0b6739b825209b263729a9c321e","impliedFormat":1},{"version":"846068dbe466864be6e2cae9993a4e3ac492a5cb05a36d5ce36e98690fde41f4","impliedFormat":1},{"version":"94c8c60f751015c8f38923e0d1ae32dd4780b572660123fa087b0cf9884a68a8","impliedFormat":1},{"version":"db8747c785df161ef65237bac36a7716168e5ebf18976ab16fd2fff69cf9c6ce","impliedFormat":1},{"version":"3085abdf921a6d225ad037c89eb2ba26a4c3b2c262f842dd3061949d1969b784","impliedFormat":1},{"version":"8e8f7b36675be31c4e9538529c30a552538c42ff866ba59fe70f23ba18479c5a","impliedFormat":1},{"version":"f4f7fbf0e5bf2097ddee2c998cca04b063f6f9cdcb255e728c0e85967119f9e5","impliedFormat":1},{"version":"c5b47653a15ec7c0bde956e77e5ca103ddc180d40eb4b311e4a024ef7c668fb0","impliedFormat":1},{"version":"223709d7c096b4e2bb00390775e43481426c370ac8e270de7e4c36d355fc8bc9","impliedFormat":1},{"version":"0528a80462b04f2f2ad8bee604fe9db235db6a359d1208f370a236e23fc0b1e0","impliedFormat":1},{"version":"17fb3716df78592be07500e9a90bd8c9424dd70c6201226886a8e71b9d2af396","impliedFormat":1},{"version":"82ef7d775e89b200380d8a14dc6af6d985a45868478773d98850ea2449f1be56","impliedFormat":1},{"version":"b86720947f763bbb869c2b183f8e58bca9fa089ed8f9c5a1574b2bea18cfbc02","impliedFormat":1},{"version":"fb7e20b94d23d989fa7c7d20fccebef31c1ef2d3d9ca179cadba6516e4e918ad","impliedFormat":1},{"version":"8326f735a1f0d2b4ad20539cda4e0d2e7c5fc0b534e3c0d503d5ed20a5711009","impliedFormat":1},{"version":"8d720cd4ee809af1d81f4ce88f02168568d5fded574d89875afd8fe7afd9549e","impliedFormat":1},{"version":"df87c2628c5567fd71dc0b765c845b0cbfef61e7c2e56961ac527bfb615ea639","impliedFormat":1},{"version":"659a83f1dd901de4198c9c2aa70e4a46a9bd0c41ce8a42ee26f2dbff5e86b1f3","impliedFormat":1},{"version":"1db5c2491eebd894eb9be03408601cddfe1b08357d021aeb86c3fb6c329a7843","impliedFormat":1},{"version":"224f85b48786de61fb0b018fbea89620ebec6289179daa78ed33c0f83014fc75","impliedFormat":1},{"version":"05fbfcb5c5c247a8b8a1d97dd8557c78ead2fff524f0b6380b4ac9d3e35249fb","impliedFormat":1},{"version":"322f70408b4e1f550ecc411869707764d8b28da3608e4422587630b366daf9de","impliedFormat":1},{"version":"acb93abc527fa52eb2adc5602a7c3c0949861f8e4317a187bb5c3372f872eff4","impliedFormat":1},{"version":"c4ef9e9e0fcb14b52c97ce847fb26a446b7d668d9db98a7de915a22c46f44c37","impliedFormat":1},{"version":"0e447b14e81b5b3e5d83cbea58b734850f78fb883f810e46d3dedba1a5124658","impliedFormat":1},{"version":"045f36d3a830b5ae1b7586492e1a2368d0e4b4209fa656f529fd6f6bb9ac7ced","impliedFormat":1},{"version":"929939785efdef0b6781b7d3a7098238ea3af41be010f18d6627fd061b6c9edf","impliedFormat":1},{"version":"fca68ac3b92725dbf3dac3f9fbc80775b66d2a9c642e75595a4a11a2095b3c9a","impliedFormat":1},{"version":"245d13141d7f9ec6edd36b14844b247e0680950c1c3289774d431cbbd47e714e","impliedFormat":1},{"version":"4326dc453ff5bf36ad778e93b7021cdd9abcfc4efe75a5c04032324f404af558","impliedFormat":1},{"version":"27b47fbd2f2d0d3cd44b8c7231c800f8528949cc56f421093e2b829d6976f173","impliedFormat":1},{"version":"0795a213434963328e8b60e65a9d03a88efc138ae171bbcca39d9000c040e7a4","impliedFormat":1},{"version":"fc745bebefc96e2a518a2d559af6850626cada22a75f794fd40a17aae11e2d54","impliedFormat":1},{"version":"2b0fe9ba00d0d593fb475d4204214a0f604ad8a56f22a5f05c378b52205ef36b","impliedFormat":1},{"version":"3d94a259051acf8acd2108cee57ad58fee7f7b278de76a7a5746f0656eecbff6","impliedFormat":1},{"version":"46097d076be332463ea64865c41d232865614cf358a11af75095dd9cef2871cc","impliedFormat":1},{"version":"6e18a70a7c64e6fe578a8f3ecc1dd562cd0bf6843bbf8e65fde37cf63b9a8ea8","impliedFormat":1},{"version":"3f3526aea8d29f0c53f8fb99201c770c87c357b5e87349aca8494bfd0c145c26","impliedFormat":1},{"version":"6ee92d844e5a1c0eb562d110676a3a17f00d2cd2ea2aaaff0a98d7881b9a4041","impliedFormat":1},{"version":"b9dc36d1f7c5c2350feafb55c090127104e59b7d2a20729b286dab00d70e283d","impliedFormat":1},{"version":"45d3f1d53fa99783a5e3c29debb065d6060d0db650a6a1055308a8619bd6b263","impliedFormat":1},{"version":"a14febaf38fd75a88620a0808732cf9841afc403da2dc3de7a6fc9a49d36bdbc","impliedFormat":1},{"version":"6052522a593f094cfee0e99c76312a229cf2d49ac2e75095af83813ec9f4b109","impliedFormat":1},{"version":"a0ceb6ce93981581494bae078b971b17e36b67502a36a056966940377517091d","impliedFormat":1},{"version":"a63ce903dd08c662702e33700a3d28ca66ed21ac0591e1dbf4a0b309ae80e690","impliedFormat":1},{"version":"2b63d2725550866e0f2b56b2394ce001ebf1145cb4b04dc9daa29d73867b878c","impliedFormat":1},{"version":"e885933b92f26fa3204403999eddc61651cd3109faf8bffa4f6b6e558b0ab2fa","impliedFormat":1},{"version":"bd834465d4395ac3d8d55e94bf2a39c1f5e9be719c99340957b3b6a3a85ec66a","impliedFormat":1},{"version":"fca1059bad0f439021325957b33c933bca31475e4a3a36dda02140f47ffaf8ed","impliedFormat":1},{"version":"6e2d2b63c278fd1c8dd54da2328622c964f50afa62978ed1a73ccd85e99a4fc7","impliedFormat":1},{"version":"e151e41c82004cf09b7ea863f591348c9035e0f7a69d4189cbac89cc9611b89d","impliedFormat":1},{"version":"0778cfe0d671f153a9d30655b81d5721dc7af6ebe4b654c57417b7cba3649b1c","impliedFormat":1},{"version":"b83ffe71adbac91c5596133251e5ec0c9e6664017ee5b776841effe93de8f466","impliedFormat":1},{"version":"61ecf051972c69e7c992bab9cf74c511ecba51b273c4e1590574d97a542bd4ea","impliedFormat":1},{"version":"068f5afbae92a20a5fcd9cfce76f7b90de2c59a952396b5da225b61f95a1d60a","impliedFormat":1},{"version":"bdf5e07a22e661de2c7115e8364b98ef399c24c9fe62035dc1ac945a9dd3372a","impliedFormat":1},{"version":"4e024e2530feda4719448af6bdd0c0c7cfa28d1a4887900f4886bec70cd48fea","impliedFormat":1},{"version":"99c88ea4f93e883d10c04961dbf37c403c4f3c8444948b86effec0bf52176d0e","impliedFormat":1},{"version":"e88f3729fcc3d38d2a1b3cdcbd773d13d72ea3bdf4d0c0c784818e3bfbe7998d","impliedFormat":1},{"version":"f25b1264b694a647593b0a9a044a267098aaf249d646981a7f0503b8bb185352","impliedFormat":1},{"version":"964d0862660f8e46675c83793f42ab2af336f3d6106dee966a4053d5dc433063","impliedFormat":1},{"version":"292ad4203c181f33beb9eb8fe7c6aaae29f62163793278a7ffc2fcc0d0dbed19","impliedFormat":1},{"version":"aa8e5ac3f73eede931d5da74ef1797c174b00854ac701ead5c4a7d6ce4a49029","impliedFormat":1},{"version":"f1a4ca3688d951daa2d7740da5a0827fa34d4a7709eed7b8225215986ee87108","impliedFormat":1},{"version":"08e159b5ef9d14bdd329457c5cbe181e84f13c4ff2546a24b9eb9129b0c71c46","impliedFormat":1},{"version":"f8453a3fe0fe49ab718357120bec2b8205e15eb91ff62eada60a4780458fa91e","impliedFormat":1},{"version":"06f186bb9a6408ef8563dbf17d53cbe23e68422518b49b96afac732844ddbaa1","impliedFormat":1},{"version":"525f9c06245b5b43b1237cfd757396fd7fd8090e5d6a4ded758c7ce17a04bf42","impliedFormat":1},{"version":"04bc74b8fa987f140989e9f4d6dc37f04a307417af3e0a3767baa1eef4964e10","impliedFormat":1},{"version":"6a9d3aa58228faa62ec3d9e305f472a24441f22a8d028234577beb592ec295b2","impliedFormat":1},{"version":"683e2d454f64394931d233740b762dabc379e3ce5c4c4ad4747cdbd6d5fd8e8d","impliedFormat":1},{"version":"18594ddc7900f3e477645819bce4d824989ad296e3d70bdcdce13cabc5d97335","impliedFormat":1},{"version":"9376cce4d849f1d6ad2cb0048807c77cfeb78cee6e29b61dcfe74c7ab2980e18","impliedFormat":1},{"version":"2698935791615907eb632186119dfc307363d6a163f26017084009e44ea261f2","impliedFormat":1},{"version":"4edfc4848068bf58016856dfeb27341c15679884575e1a501e2389a1fea5c579","impliedFormat":1},{"version":"0c3d7a094ef401b3c36c8e3d88382a7e7a8b1e4f702769eba861d03db559876b","impliedFormat":1},{"version":"d3c3280f081f28e846239d27c2f77a41417e6a19f39267d20a282fd07ef36b96","impliedFormat":1},{"version":"7e3a4800683a39375bc99f0d53b21328b0a0377ab7cbb732c564ca7ca04d9b37","impliedFormat":1},{"version":"c777b498a93261d6caa5dbd1187090b79f0263a03526c64ea4f844a679e8299e","impliedFormat":1},{"version":"b4677e9d8802a82455a0f03a211b85f5d4b04cfbc89fc9aa691695b8e70df326","impliedFormat":1},{"version":"7cb0d946957daea11f78a31b85de435e00bcd8964eba66d3e8056ba9d14b9c55","impliedFormat":1},{"version":"b3e441cdb9d9e55e6e120052fe8bf2a8b5e5a46287f21d5bc39561594574e1a9","impliedFormat":1},{"version":"0870e8eb0527c044e844a1d83127f020aa7f79048218a62b2875e818355f8cb2","impliedFormat":1},{"version":"6b7446f89f9e5d47835117416e6d7656bac2bf700513d330254ae979260ce99f","impliedFormat":1},{"version":"9750752db342b88df1b860958a20fac9fd6a507f67c5cfb6bd5cfa8759338b1e","impliedFormat":1},{"version":"946de511c5e04659d9dfaf5ef83770122846d26d3ffe30e636d3339482bbf35a","impliedFormat":1},{"version":"fbcc201a8fc377a92714567491e3f81e204750b612d51a1720af452f1a254760","impliedFormat":1},{"version":"6dd704b0ba0131eb9e707aeedc39be6a224b4669544e518217a75eb7f5dd65c2","impliedFormat":1},{"version":"6effa89f483e5c83c0e0063df5f1d8b006d9d0f1de7eed2233886642424dc8fb","impliedFormat":1},{"version":"84a8c844f9562da8994c07b44dd2777178a147e06020c62a7f6e349e695e7149","impliedFormat":1},{"version":"d43130c35762a80da2299f8b59a4321b6e64acfb0b11a36183379b4c7b83314b","impliedFormat":1},{"version":"6bf44b890824799af8e20c0387ffa987e890fac5c5954a3a7352351eefe55d5d","impliedFormat":1},{"version":"892b19153694b7a3c9a69bcedb54e1c8ad3b9fa370076db4d3522838afd2cd60","impliedFormat":1},{"version":"5461fca70947a4d8fa272d3dda4c729317cec825141313352adf33bc94de142a","impliedFormat":1},{"version":"f83afa274e0f11860c6609198ecca220f5df60690923b990ca06cae21771016e","impliedFormat":1},{"version":"af31f37264ea5d5349eec50786ceca75c572ed3be91bdd7cb428fdd8cd14b17c","impliedFormat":1},{"version":"85e4673ec8507aef18afd4a9acfae0294bdfaac29458ede0b8b56f5a63738486","impliedFormat":1},{"version":"40683566071340b03c74d0a4ffa84d49fedb181a691ce04c97e11b231a7deee4","impliedFormat":1},{"version":"81c8ab81daa2286241ad27468d6fc7ad3ecc62da04b18b77ce9b9b437f6b0863","impliedFormat":1},{"version":"f158721f7427976b5510660c8e53389d5033c915496c028558c66caaf3d1db1c","impliedFormat":1},{"version":"8e56db8febfe127a9142435940c9a5a1ad17ddb2b2a6d8e9e8984785a76db1fd","impliedFormat":1},{"version":"6113c2f172a875db117357f0aa35aa7c1b6316516e813977ef98dc3b4b8baf2a","impliedFormat":1},{"version":"f25c9802b1316afbf667dd8fa6db4ed23aa5e7acc076a1054ca45d7bc9c8e811","impliedFormat":1},{"version":"e99285f74c22ad823c0b9fac55316b84144e15eb91830034badd9eb0fafe71bf","impliedFormat":1},{"version":"fb8c051c994dffd3d099651789cbb6736ca39745c710f38463fca9faa0090063","signature":"344cde246e306dce00906a604be400c350a5c966173357420fb949546ad963ee"},{"version":"f16272ee586be4ad380e30a943ef44518910519c676a3be5e0208d23afff658c","signature":"0b91628583280ebe6005671cf7b08e8473625a6de367aadc3355066ef13064be"},{"version":"72558c21409eca7e4b927e731da5b32a3308de64b6ab45eece203905eb3e8b85","signature":"32db74670d8be6ab7f8e70c50ab7602c41f2ec636fffa09abba18f160b11e002"},{"version":"7459d85c80f2971be954b562724106b13d5a2a57e8bfde51723e94e838f6fcbf","impliedFormat":99},{"version":"c24ab9ac84d65b417a807ada25456697bb2adf1189fa80cb240625dfb3e61c42","impliedFormat":99},{"version":"2f0fa19ebe34e7d2cf7823063555ee4439857c69edb03b6a705b97ce95a69070","impliedFormat":99},{"version":"959ffb2edd511f72c17bb07c9192443bc512f7dd707b0127c513ef3fe13b397f","impliedFormat":99},{"version":"4a950137dbff496fdca742066964f48efdaa748794668dd552419d43a6125603","impliedFormat":99},{"version":"4b15cc0373f1ca84bdb230115a283869f9016d7246b22ee76d2b93af5d2f1004","impliedFormat":99},{"version":"4d857105510df8011cfb5b3769dec55624a1df92e85d399cd03bc82bb89d090c","impliedFormat":99},{"version":"0027415abaae3a127e25fabad82bb581b09d89235c553a1eb847fa14faf69bc9","impliedFormat":99},{"version":"2e10e08e6ab5ebb88025cb0309457f86f59af9e4ae87186df0d096b53802445c","impliedFormat":99},{"version":"21e5c69ad89ff162b5de9fee105994d98d63fa3fe7a5673ba8fe8e366a75d7da","impliedFormat":99},{"version":"cfaf4f60b3290259d7cb24e27644fe868da003713f3f389602e6607ed7a9b1c6","impliedFormat":99},{"version":"61d1912d86dffc312be80f1126bd65f1f6dd2e3ca6b4539eb029a209a77f408f","impliedFormat":99},{"version":"97bc6fd88a4a101f9132ae93bc684a0c195a4ee401eab1492c6248f6bf012375","impliedFormat":99},{"version":"00ec6732d15b24c301e967de238c4a75cf7b8b87d5b0e9924052d0bc97978193","impliedFormat":99},{"version":"eb7f907ec09c730f66cfaef2aee237c86e43eed68bcb794db7f81fcecb01c577","impliedFormat":99},{"version":"59a69685139ba76cc6e0c9a0a596ac5aff1041f3874949c5e89decb555e43cff","impliedFormat":99},{"version":"144a4e5780b800c0553949169f50be285eccbdb0298afd83ef2ae03fef77e2d2","impliedFormat":99},{"version":"66aeb47bf8638d6767f7b4ff684c2d794391c981590073025e98f98e1afed499","impliedFormat":99},{"version":"26748898fec8579096c776866e8e6f07754845b3d08f5ae98c3a59baa9e85c2e","impliedFormat":99},{"version":"6d805abd62920edbd9ed4b20be26d040d01529f3ce53fdab9ca4d0fa9b589f02","impliedFormat":99},{"version":"9cb3e4826879023518628e2d6b3cc936a1dc1c558e3e65c450263886dd060703","impliedFormat":99},{"version":"7009f30d921edd039a57942d50060fd7f856159384075a53e6405a5c03fd603f","impliedFormat":99},{"version":"97b02501eb45f487174d5a0ff89b6a95690d50e9eae242e2162118edd5f2705c","impliedFormat":99},{"version":"2b4276dde46aa2faf0dd86119999c76b81e6488cd6b0d0fcf9fb985769cd11c0","impliedFormat":99},{"version":"38d4cff03e87dc58bfd50ffe5a3fb25e6e6d4136a1282883285baf71d35967c5","impliedFormat":99},{"version":"5ecea63968444d55f7c3cf677cbec9525db9229953b34f06be0386a24b0fffd2","impliedFormat":99},{"version":"6ea9c8bf2ae4d47a0dbc2a1f9ac1e36c639b2ac9225c4d271c2f63a2faf24831","impliedFormat":99},{"version":"a3d603c46b55d51493799241b8a456169d36301cc926ff72c75f5480e7eb25bf","impliedFormat":99},{"version":"ad98c359284db8c984e88949b2c3394e4a35158880767b772491489788a6c5a0","impliedFormat":99},{"version":"5c117cca0b75ed634fe3085142a931df2e2214e26f2bbcb34c592b767f13c1e8","impliedFormat":99},{"version":"773c18e2bcc18598df8f8b2be930eb26b22608edf368e42e9ca3484828ec4122","impliedFormat":99},{"version":"c385a1392fbde5ad2e29d1bda89b5438ba11d99f03108d4465cb3af50a26fdff","impliedFormat":99},{"version":"425a03d68f43164e0214b1c333cd58e777d4186f412b530467c18ef0d2b37a80","impliedFormat":99},{"version":"26cfaec143443411bc7d5363f274f885ced430b8f4bee25a81f7827248848d7b","impliedFormat":99},{"version":"f9a591e5fe0be6728cc84e70325aacafffcf203b051ddef37d65651b43c05056","impliedFormat":99},{"version":"4594572155e436ee22bff36cd0c41990b644797530e1d5ac0ae44d7bd9a9b6d7","impliedFormat":99},{"version":"de8b4c367880fe92a0a740b706f08a46d1cf9e3981d55c2701e82423e81ef0ef","impliedFormat":99},{"version":"4a056a71ffda9ff3f2adec60c0189c906f7e46976a0c6650fa196674ff8c4dff","impliedFormat":99},{"version":"3a3fd6f5ca85ceeb293f2a010125f9455404958122b6dd0ba0b34f7dab74feb5","impliedFormat":99},{"version":"42b58bc8da11e9181ecf4ac498d41c74930c73c8ebef091474d0f8cf971b50ac","impliedFormat":99},{"version":"0458fbed073aeebfe0ce055b9bcc450627f5fc9aaec7634a6b9c44ff10431d8e","impliedFormat":99},{"version":"fc30f37a98ab20a8db1309801095f4f7234f4840f0a9281dc63251e9dd75fad1","impliedFormat":99},{"version":"951e9556f7441d86eef0b6160779e2f97c0d43da6110951b4fff87d493143ac7","impliedFormat":99},{"version":"d2746ea0021f79365dcff95fc255ac529b6ef7f51981fc8e9cff62e65a2087a6","impliedFormat":99},{"version":"9fe94c8f6b36cb41acd30d89567761a52246932dece21e1ce104baa2e84b07ac","impliedFormat":99},{"version":"d0d58671b91fad1b24b87186a81bac181d07a6d61c58dc067f79b38c8c1e2b88","impliedFormat":99},{"version":"c5aa3449a1a90686b5bb9e9c389b88e9a6fd8ed410289fff3c8d9359e4d510aa","impliedFormat":99},{"version":"e96bd939a55117abe6ccbc02839f2f4d9ce3893368fea528ca91c59ebddf496f","impliedFormat":99},{"version":"81f6bf27eedb1ed92466abfcee33795a6b2304691ae01f42e60f8c76894fade7","impliedFormat":99},{"version":"4b05275d33bc4acbc41634e6c38d95da3771c23182ca12c00139b6069c66a15c","impliedFormat":99},{"version":"26a0c2d883e1ed55ba00810d957dedcde5d16d637e33063686e2bc3f58a5c64a","impliedFormat":99},{"version":"b2c697a96a297c1a207d9bc9b3fd4cb92b95bac1c0717c94a364f3590c25fda6","impliedFormat":99},{"version":"bfb900f7de2066a4be644c269285fda8ccca40b065476a27b082173014d00467","impliedFormat":99},{"version":"0817f58fceb66836eb354fb16f1b20093f9bc3d475995b2d20f3621a2e5dd3f0","impliedFormat":99},{"version":"7e2b8299e85423435784cc6244e2d559ea862d226e7b0ec871c6a53f88e5139f","impliedFormat":99},{"version":"8eca47167dadd486582ecd4e41f7fba6ae66cc4a4c5202f1f7acf34129a0dadf","impliedFormat":99},{"version":"5f6aa85935176c45e47cfed4d6af31c2c53fa4a24ccb92ea32ff9c9a915a1908","impliedFormat":99},{"version":"fea899959c19f5d41eb556cfb29e0d6722c470463b27036b23e672aaa4da70f5","impliedFormat":99},{"version":"062c0cf9641ca90ff3ad8edc61c2e06299fe6585fb9a4014a8acdf7f11810d51","impliedFormat":99},{"version":"745db40747b91a21d6b87a140dbf26c995545994c87ad2297a4033d6192113a8","impliedFormat":99},{"version":"5db46b90fabb0e78d84d231fe090aff47e09d2cacb4a38b6b06bc5a2f9c73cb0","impliedFormat":99},{"version":"0eb30dfdea5fb0bc646ece93f7e368e39f63a846c28728eaa3714ae67ebf4a4b","impliedFormat":99},{"version":"533fe789a14f6087b274308c257964da60cce305b42f55f5e9483315e5ac19b6","impliedFormat":99},{"version":"2a1fc3ab59c5d74c4e7bec3880b98c1e11d48276173b314eaccd9b34c4aceaa7","impliedFormat":99},{"version":"112c5c25a4e75f0bd1bcdda0630afddd634d96f74263c0d0c98a14505577c7ba","impliedFormat":99},{"version":"0751c7fbc7fd80df189156cd8b277d1b537e6b711b316db0b6aa35b9c674a6fa","impliedFormat":99},{"version":"d8f7ba1d7a0eb2191ac0b656a4ff4624cc7c615c9f0209760a664aa4f2993ba4","impliedFormat":99},{"version":"62d30429d222ea6faafe408fe136c3a1e9df0cde180b0dba5fa4ebd77c0807ee","impliedFormat":99},{"version":"ea2276e4ce7ceab26d8a340f53554db2ace013d85903d7b5e781ace26c3eee41","impliedFormat":99},{"version":"dbe63b3e06a26a1a3e74b407474745d3a9148775f2bf96588863099d64d1e54c","impliedFormat":99},{"version":"fd41f8da8f9ee3606b5460e3810572ada02d29726e2f0180fcdac1be260a6da7","impliedFormat":99},{"version":"3bbde357e5d8d70cd29460e158586f4ff7c57e12d4ae997ad5368d6431a5e892","impliedFormat":99},{"version":"d2000199162496a4e85e7ddc9ea0ab05286737b6acb6b8390100fac220e8cb77","impliedFormat":99},{"version":"aaebbcd44c28c0e088dda4bd1c94aabc126318a96938dc849c0fc21d5ce0afc7","impliedFormat":99},{"version":"faf9a217d8d237b02ab6d95508d8736ae431bbeb38d98885eb5b8fb6dbe48cec","impliedFormat":99},{"version":"d5633ef9a26db101247322db090e95c7b0eef123503cc53099850d35fcb4fe8b","impliedFormat":99},{"version":"838c1878bc1ec773ca2b72ecc544d0f5b8913711fa8cb2b7f14cef8259743669","impliedFormat":99},{"version":"74b564cd3da8f83d5e472a5b0cc53bf7e276b25576097cb89e6f67caf95b12dc","impliedFormat":99},{"version":"68333289edbcca548c7f8370f9c1dcb71694136a11f418e38691f05bd2c299ce","impliedFormat":99},{"version":"ae3a1d96127f7c759d2b6c466d2f3e96657c830356bde016f89c44075add8da6","impliedFormat":99},{"version":"cce820aba9ba9d1984461c67d0d543d8eba7ea25c6a1be7a47c31cc18907a631","impliedFormat":99},{"version":"6a1e5cea457be906011d1736eea8d0ae82e883cff9fe4a91f3218c5c9cd84e13","impliedFormat":99},{"version":"51b6335f5a8e177306647558a3eefa1f6abe259b283c6462223be3d7d0f33300","impliedFormat":99},{"version":"4674cb63fb87b9ccd97b95106de31583132dac5ab544c414e5902d10db34699a","impliedFormat":99},{"version":"3ffe7d5bb7b38b8133e65f41e7b17d8799479418fdae3e352c891a64d14f65ac","impliedFormat":99},{"version":"474dcc8f8d16e3b9c43fddd9b1930fbed50d26a66dc75cf17a2888ffc654c0bb","impliedFormat":99},{"version":"cbf0390e81de86db9f6979227deaa5cf4f6bc4df00d1b034716a5adf1044e079","impliedFormat":99},{"version":"136bde95f389f316a60b40bbf0f53c2a30474d8941b3554dba2d246f14dd254b","impliedFormat":99},{"version":"be31399eb87d9773cdf0d109ff2af942a6a22c82efdaa3c389102c287c419e8b","impliedFormat":99},{"version":"079a563e723579e9f4b37c0a26e88437fae2716e976273425615c939b821cdff","impliedFormat":99},{"version":"667d3df98d1432158d20452fd0c175b0fffade57db9c7cecdd3922567f23c7e8","impliedFormat":99},{"version":"d16321086fd36596aaf00d9590c2de1812f8204c6f870ac8f0d8fecde70570b5","impliedFormat":99},{"version":"46a2c32879b8082fb031f575977bbdec9f3041167bf8acc9abba34b498e49443","impliedFormat":99},{"version":"2d09c2f8b415e6973baa6b314f9023612c47f76fda13d542c711b08eba4b6f6e","impliedFormat":99},{"version":"f5593ebceb9e3ea81f78c9ea001d8b22e86210a03ba1de9c6d66eaddc667b797","impliedFormat":99},{"version":"2c285a3af1b420020956dc9d315bd73861aa943df786143d0aab6580053d0b77","impliedFormat":99},{"version":"fb732d4dfd6387d8efd99f0757c3a68a1664e9b16a0461e4572bb2cf1b1f978b","impliedFormat":99},{"version":"7804e6d8dd4e50c1ee6b4466eca30dedcff424c04113c23a0083afb5a588b9b8","impliedFormat":99},{"version":"a79f09851a1353dc376b19bedf96bb7191402ec01890308119f6ab8cb33b9726","impliedFormat":99},{"version":"d5897465eb4696de9518faa21172441ee95ce80a0b1d7c8b90dbcf70d3db7e67","impliedFormat":99},{"version":"e8d2d8e7bf7eb324f9e5c9f323384d4066f508f7182a0506dbf7336cf70e1f4e","impliedFormat":99},{"version":"b6bdd50d0e977f5fb48d01ec58387c4ea4ca4061180896d92667a121d8c359ce","impliedFormat":99},{"version":"aaa93af07b03d69f6d7f49380ef42d13b41a2c6169b248c2e07552bb94c08faf","impliedFormat":99},{"version":"b62d96002ec0c8710d0e99aa3175434e1df0f22f5a09291b19e5ec05e8a877e6","impliedFormat":99},{"version":"d93c145cb04df5d21c2d0f66194700d2f1d6f8e04abe7ef723651e915bc6bc4e","impliedFormat":99},{"version":"6e085274a812504f697c8130336ad47a6b249eab56a547a2a34f9b2c294e9a3a","impliedFormat":99},{"version":"5834c68c6e0f55055514834fe00e65ebe8d0ed8f8e127ab071ce2ced36eb0967","impliedFormat":99},{"version":"433839016857a5a785134d2d5e760fdcc9819d241a3ffb5cb76985e666a34a8c","impliedFormat":99},{"version":"fe75ad82fe44452125aba2301647fb1197bd611ecc5857e225d022f9d95469eb","impliedFormat":99},{"version":"23a55ad8067538d0d1cb0b55b1aff47b6a5979b9ef2e46c6e9b0160377a46616","impliedFormat":99},{"version":"66cd137411911fea6db4b352a98279470e386eb3b1cac5db3de1efad678a9015","impliedFormat":99},{"version":"f8d95db2d66d268765d447b554dffdb3f1cd2a22e8da7f6f57dfdcad6a19a1e8","impliedFormat":99},{"version":"bdceae6ab40835cb0a1fa08e0367ec3fc43cfcecb1840d3a90ea75bcfe605ddf","impliedFormat":99},{"version":"e38a172f8912eebc79671e07b81687a304a9d366a47933fde9f97ad79f8ac08a","impliedFormat":99},{"version":"42f60dc9ecd3ef8ae7ef6c883f648243cdc645ea7f539d16eb2ce043f9ca3d27","impliedFormat":99},{"version":"6082ee8fee6b3736c8bcd0a1d9dfff7125a406039020316f9512d88ab21b4206","impliedFormat":99},{"version":"f6ba66f3f6c4409e878f48161529c585b3c0e687c8917dd8f6c6464fc5cd4f8e","impliedFormat":99},{"version":"0366e97d9c966d748ad91b782e8ce843ebb692d93a1d211ef5b84cccbe8f53a8","impliedFormat":99},{"version":"aa74551dc1eea3e902560acc832ac63a78ae05fe5f3b04c6813fe2ec57511456","impliedFormat":99},{"version":"b86777df5a816b1b1a2b12a017a8ef8f14ea2fb1a533d1e18e956ced70ac9d28","impliedFormat":99},{"version":"ce9e6f87c3a69558b58fe849abe2ed9a105cd5195809851d99397395a4442bc0","impliedFormat":99},{"version":"8c85110d99da8adc0da3cc811023d6f7e0f6ee28564d10a26b27c190f34e200c","impliedFormat":99},{"version":"ab95baa99c5dc2a49bd1d1c00d90955088463e675f4eb869008a357b5b02d6fe","impliedFormat":99},{"version":"7980ab0dad3e7e1eb6e9873231d45f3860864c84c48608267864e4774c4bf39d","impliedFormat":99},{"version":"845b523a3ca13e3fbd496a579aaf51875d60e15ee56f4be60a358dfd87699afe","impliedFormat":99},{"version":"53c3302d92c8cf76bc6557a1f762fc2f7ee6156af5bc7a2ef22c591d53cbc4cf","impliedFormat":99},{"version":"32c98d5e98a05f108f4e405c853db481f83c5a1a9cd6c53870501d8248f9afad","impliedFormat":99},{"version":"d7ce891d302b15d9f28cae31eddc6a88be37c290c512fb1247735e7f923b1104","impliedFormat":99},{"version":"147ca4dfd1729f9b34c3c074589cdf518c0b80fd1efa29ef75bdb39507b23153","impliedFormat":99},{"version":"ea8f093cdf681d9487034f80323bdd4168c727eb9d5c985f250e3c4488d64639","impliedFormat":99},{"version":"09b8b299789b2ac464776895e96f64cca0ffa6449a178d775adea0401d9b49fb","impliedFormat":99},{"version":"15abcaa279117eb516a90c09c4b60c53fb29c1242c7f67bb1003e0cce06f7d19","impliedFormat":99},{"version":"df506f8ab6bcab64cd24be5e65bcf12b959d1d00cd9127d73afc59ba4062867c","impliedFormat":99},{"version":"ecb5aeb3771bea2795b5f4c0f79036c061c3a2bfe0b1d5a83d9183a43e38cd9c","impliedFormat":99},{"version":"8a5ff6c3f290223a222cd540136d2bf4880d1c13d94f62503d7029ff74533b41","impliedFormat":99},{"version":"eabb41775a846406c423449b13eca4e43214c0bab2ab00b4e22b01e39d510023","impliedFormat":99},{"version":"015ed10c7e81ea426199e7d9b92978416f420466088487b25577bea09b469a54","impliedFormat":99},{"version":"d5da26af31358a4883edb6112879018b14c7c1fbcc457aa36961b03ee17bedea","impliedFormat":99},{"version":"4e93fb2d2c59bbc1f1a5211b36c447efe4d0af568d682ef1e5eb5f84ca6ccc2e","impliedFormat":99},{"version":"3d13fe973e92e708ad3dbbf1b2385bb799f8e70c8da71a1ac72fcb5521c8a5e9","impliedFormat":99},{"version":"16f3f66b5182e57c554d0e374e29fdc0a899c1321b3f94fa997d19abf9faf931","impliedFormat":99},{"version":"a8d6a3a562196c0a6e193e303ff1b2c6932a6a16a631ce14f2110dcb1667f622","impliedFormat":99},{"version":"556079af6cfdcb562e1a7408e73ac2203ed8fad6cc768d498238b137ac06247d","impliedFormat":99},{"version":"17096b785db48bd6b340542cf9752db28508b637e9721022e9993aa15372367a","impliedFormat":99},{"version":"e177a7a7a17e5d282c4379cc20c3b21f3bcd22abdb88557695eb83c4d51b186b","impliedFormat":99},{"version":"49f41e28b536a2a1722017672ef24a0720b2d0a37f66f1a272c7d8595b3b3a39","impliedFormat":99},{"version":"dfa5ecdeea6492f56d1a1b7905fe3fc24a2ab44a5420ca23fc9133da991015e7","impliedFormat":99},{"version":"ca359d684454111a2118c60f361166ad3595b74fd7b9c8eea5c7de05d9ba13a3","impliedFormat":99},{"version":"c61abe93e13d89322bef06b0d2063ffcca5e0c547722fcea7a57c6f435cd58a4","impliedFormat":99},{"version":"2ab01a0368f65b3b891e25416ae785dca54808f70d8f6204b99589ed4f7f1d2f","impliedFormat":99},{"version":"43b5886036965659dae63950130d2aa6c4728c336fe1ffd09b0832fbeb027b15","impliedFormat":99},{"version":"0e93b1f86d8778076f04fe97295548d6d10b31d29daaa3980568929da4c94b5f","impliedFormat":99},{"version":"2984438b44f77f375cf80075b7c26e84d593aa56490e3703ebe094e34626e183","impliedFormat":99},{"version":"b594999319e34d99ba2048dbdeb0fb2660044d4fd2e26456275f4d6a43f61f65","impliedFormat":99},{"version":"7bae4a3f50a844fcbdc504d717f5f13dd7178ca99f131b230305db6b55e1dbc3","impliedFormat":99},{"version":"214c393513df9438d6956ad5b738efcb1538c301c81d60e0adb9f2113c780265","impliedFormat":99},{"version":"58977c552caa6b5993e10d48a8d97bb7e636516b1526cfbcfd045c144476597d","impliedFormat":99},{"version":"2288fdc58bb7180154bf4e3e20b01f2f0a279a5ff253679baa8d326bbc3c0020","impliedFormat":99},{"version":"dbf382db41bc652896fe67296a9bd1880836cd2ddc16a3811bfd7bb9c2fec1ea","impliedFormat":99},{"version":"f49e8feb6d7473579a5ceb5872598bbc1be3723da653993472720629c72fa0ba","impliedFormat":99},{"version":"14c727434cfe6a078b51a88d005033ad01a76bec36292d7b47369d82e48e1cb0","impliedFormat":99},{"version":"d909cc4d55736652a82d5f76be92980a1cfb14b6beb65137171deb4c7cbb608c","impliedFormat":99},{"version":"0a37887a4d2c6a6ed5e5ddd3619d04165079eda5477340fa56e635510333e8a3","impliedFormat":99},{"version":"53adb1224146150628fd59d35c5a3f3f69629a649052c34ef6ee5186cc911c81","impliedFormat":99},{"version":"f645ed7ab08689c3fc4afec989000af708f562adb32819d1079762c027f225e7","impliedFormat":99},{"version":"b03aa91aef645f9856216a2223a47001a84954caf37b7ffb1d63d1327b4231fe","impliedFormat":99},{"version":"2d982c7dba93b9bcabb045898b00e62dd09919b2b35ee63c42880b22494a7ad8","impliedFormat":99},{"version":"cfcb85724714ed6320c09fddcffed5ac71069125cd5b9957406c920dfd4c16ec","impliedFormat":99},{"version":"7142177cf3158dad7b42726ea15c78512dbad6370117509c8eadefcedae72534","impliedFormat":99},{"version":"9322da0c85b107feebedf3005249cb863f4e03736c4b8ab3edcbfcc29981d13b","impliedFormat":99},{"version":"54a730e06094b37f96436ccc8e736bb65b74d256439bf1663344e3fab16d2246","impliedFormat":99},{"version":"e502cb97a6fa3ea9268d2c2b2bcad7a1c8cfaade589f501a30cbf542e098f4a8","impliedFormat":99},{"version":"19586f37701483574eb9615faa417281f9b417225c0595c2a242031f6c86e267","impliedFormat":99},{"version":"4e8b929462a5c46c53151f6e7519a06e31ea6754a735c942d9ac5d8b535a46fd","impliedFormat":99},{"version":"d2e6d9f45141863efb1ce3846875ca23fca7b731496c45006e4931837c3ff3e4","impliedFormat":99},{"version":"d06ad53b5004aefc1adffde50247af521e0e10d334392fc0cdfa8fa965d7243f","impliedFormat":99},{"version":"8f1eceb25b3591bc9222483317ca1bd13d4be70aff908d9d26fa3c18b7f7ce2b","impliedFormat":99},{"version":"b56026fce41fba17e89346ef0ad03b2f5fcd04c1120176e4eac77a7d72dcd8e9","impliedFormat":99},{"version":"d3aa309128e84a97c160e41f2cd9408e19e43e3a6373b72b37fcec94fd3f2c7d","impliedFormat":99},{"version":"0513d6c3cb14947d45f1471345eab07dfa5b9237124f639c9e0dc056df236584","impliedFormat":99},{"version":"a4a1f24de17edfa0b47c4e939390b38f229d9e42ded4f53639e9df475fe453be","impliedFormat":99},{"version":"366c1b30d171d42458d361430d16dac31854cff2db854abb59ff4a5df3e349c3","impliedFormat":99},{"version":"ab2dc76864097e3d2dc5a0553376474ebf026fc5f25e10adbb5e81b1247b03d7","impliedFormat":99},{"version":"8e68a48d38419d478b823e2f04c8418fc348fb6d4d370b15743cde4d48392506","impliedFormat":99},{"version":"a93626ded4c88421ac4e27150b0e11a514683a25f54d6639347a66652e118c9a","impliedFormat":99},{"version":"5804ffbc65b78751fd510218b90827a7ca677ca34a45b4709a00783b658cbaba","impliedFormat":99},{"version":"5bc28e22162587d3940c3f73668bfd191a65d7381ad7c242901ed7a395e04198","impliedFormat":99},{"version":"31dad812abb967c21c2ba11f6c1ade44ed75a7441c2df7e6fa78f6af0f112eba","impliedFormat":99},{"version":"ff9e2545e5c4e207179f01a1ec905d0fbbfa1d162501679a01cc75591fd5bfe1","impliedFormat":99},{"version":"1c247df73ee92991ea75d19419b5625e37a9da3bef05f015d7097a35c66a1fc0","impliedFormat":99},{"version":"c29921af69f3db7348ed27915972a51cddde446ac029fface772271c085eacbb","impliedFormat":99},{"version":"e4a58769bce747f03a3606f55e84690c2003f754ab4354a27ac6aba30eef01bb","impliedFormat":99},{"version":"78bd82da60d7021316b170afa284acb4a0400d52eb34ed089e38861bd3c53d10","impliedFormat":99},{"version":"1ce699f32fea004f388368e19e9cadb41dd52ecc72c9d6b353c9d9e01abe2cf4","impliedFormat":99},{"version":"597fc3b46d5654c4f8361c36ded591d5f12826dd1df9e7643e8bcf1f0803cbd9","impliedFormat":99},{"version":"b56a743deaeb1ec9be37a9a8e5599e1cccd267267d4fc41c01e0c5371892a70b","impliedFormat":99},{"version":"d8fbed05640e6df144bbc9bc1ce7586d6e020119968f9491c157ab670c97f003","impliedFormat":99},{"version":"ac782435f9434aeda13f2d65fe840eb282bdbe2405549b166b2a89bcdea2396e","impliedFormat":99},{"version":"98ef9c3f5f15c18abcd6fa9f12e93e1bbd608225501151603cce97642dbc961d","impliedFormat":99},{"version":"c80a56a10f1a8e01c4b7f08df6e9260ae076c910402dae8173fa6c7dcacc51fe","impliedFormat":99},{"version":"809cabbaee3df008c5c31e842047b487417eca144d2f4a4b0e04940827a3d062","impliedFormat":99},{"version":"30d726e77d959648e8f6fe104bacdc29ee4e1cfc6e8ea7c952141b3a3482d007","impliedFormat":99},{"version":"7dfcc5f32fd73d26d849530d15ab3459a60d296c13dee963fb2cbc5b78052d0f","impliedFormat":99},{"version":"930c6bd33500b62b1338a60a9a5bc3a2d57267ac49ba66d75917cb1fda319238","impliedFormat":99},{"version":"3612c99dd83ed479d269970994dac77984c951cd7b9a52a291051517cc09e6de","impliedFormat":99},{"version":"32b344c3765dc7c383516f3326c108ca84c33df44ece8ac789fce47d47ba8810","impliedFormat":99},{"version":"88a44d532be7c83da9c55d744c23721edd5c7401e7319207d957cc0afa36a341","impliedFormat":99},{"version":"ae8a68cf0adad59ea1b6e86f51588d809fca647b917bb0f92c155b6023b09e4d","impliedFormat":99},{"version":"606d6d2855288bbd8da341607890f38aae30cd54be6a13246b901db07dc0b041","impliedFormat":99},{"version":"6ae92eaaaef30fae975de604d3af31d5b00eca7f02d89fab589152df926685fd","impliedFormat":99},{"version":"cef2c14946e957c2c4a5d99837c6a9f730390158c08ce313fc7248baeee0cde3","impliedFormat":99},{"version":"f1363ec1f8aafcad89a89c7cfaf805dc709107294c32ffcca1cede004ccfbba0","impliedFormat":99},{"version":"9f074f00a892947b04f99252866ce01cbdad4899eab96d1ea2d090419b9d0383","impliedFormat":99},{"version":"94f793b66dcb1a755800090817a189e5ffa519d524f0223e6b918f9e20df92e8","impliedFormat":99},{"version":"b96130e763eeb5392b6501ffabcec57fe110780ffcaeeef061e7cdeca4d65960","impliedFormat":99},{"version":"4a0be6234a190079827c8909b3ec1949d44434ada4d898450b5fb330cc64551d","impliedFormat":99},{"version":"28bdaf936bc3792e20a906ce59550aa56fbe62ec1a575421202cca5bb347941c","impliedFormat":99},{"version":"52d0e4a995a1328cafd0c0a9441b729136bbdeea7896789c253aece60e4ec2c7","impliedFormat":99},{"version":"68337576317652e5fccf4c687020c06c00728c1bb0dc60a10fd8d78cc15091bc","impliedFormat":99},{"version":"06ef9e335bec6e052d9df473a06a08552d34dca231a5a31a04fe0e05c194e933","impliedFormat":99},{"version":"8fd2aa139269a583dc70ef2f34fbbf57bbfa7490136ddead980ee23a408029f5","impliedFormat":99},{"version":"89dba06f08c33ff2006e6ca98e01284846927a6be23a9aa7be6856a8d7242939","impliedFormat":99},{"version":"8e551cda9ceaeac0ed69fa73b16de6ec53b41a07309b2af1922425132e90ca8f","impliedFormat":99},{"version":"706b3fd6ff575b15077a97851686c5a8d4f563f096050a397c5fb15cd9ce0b78","impliedFormat":99},{"version":"2ca97aeaca4ac5be7b3815c3468c86f512e3c8504ab6ad0599e418d2feef1b5c","impliedFormat":99},{"version":"85a60f3f0491c3c835a7679464349048513bb8e4d61fe865a9b1833229ebc9e9","impliedFormat":99},{"version":"7194c45f80a22684e43fea3a9aeaeb69845361d8039d6f013f50230c78792f21","impliedFormat":99},{"version":"4f81fb228ca91355a6210787a2db9fb9ebeb7b45fda1b577af6b2da1cc40702a","impliedFormat":99},{"version":"57b1def459ec822d42eba31a62d69cc6d0329a88d45331ec987c6ec60d46ed82","impliedFormat":99},{"version":"2ae910ab09cdf74168412a94bdb35966a1f62fe396e478cd20a734c98a360782","impliedFormat":99},{"version":"2b5177892e7b27a3597ecb4769c9e048dff0610ac1a5312202f2ba595f2b09d2","impliedFormat":99},{"version":"dffbd270006e6d1eb7e54019953f568f745fbad1f286e6b6f9700c713dd9d71d","impliedFormat":99},{"version":"3209d42dcb86b35a13c127fc39981a644b61a1fb0e59524038d0f3bd7fe25768","impliedFormat":99},{"version":"a165816fd744d55bb0b17e7851eb07c3e372081f0de12b37ab18b5241bb8777a","impliedFormat":99},{"version":"e8da9d04f0bb044998c238d339d6fce0afbd773827eb0921fa5b11b804740242","impliedFormat":99},{"version":"415295fdda8d3f2630dcba09d2c6ac1ad737e9b5c8e91880514029953eb629dd","impliedFormat":99},{"version":"57a75ba33c112c59a783a2e7595294b86c6ab4a5fcc65a537ff9356a3b23abc2","impliedFormat":99},{"version":"f846b7cc91e29c0ddd12b8d817abc81f4e3ba1c37dceaaacc82a896031a771a1","impliedFormat":99},{"version":"070062b01eed7a9d7c7763eb25d98c6581182edcd39bfe6d84aa64ffb9b980be","impliedFormat":99},{"version":"128cd80e8980123fd5174b2ab5c1295add61e51a5659a1e8d4fcfb82884edbda","impliedFormat":99},{"version":"fa6df0af2818d39dcccafa76a485baf0944292ecaf7acc623acdc5832149f796","impliedFormat":99},{"version":"bf2f4914e8b356a9907f7b347f984d4cb8efd2fd359d443793c52d55d9f2abb6","impliedFormat":99},{"version":"f8d6e2784bb518d523898f614b8c0ae55341968c982d4617f08867b5d11cf354","impliedFormat":99},{"version":"b47f1dc9eccc82752263ec4d70ff7464f0412469102bd22537a5005ec298aa68","impliedFormat":99},{"version":"7b75a17e8586b0d83e4d3732ffe41a10812873a89eafec329b879988537fa83e","impliedFormat":99},{"version":"768989d7bcc666427495223f2e78c1e5b541e16b6542e64abb92d54f0f37b7cb","impliedFormat":99},{"version":"a171b8cb18c8c2e92ed5c39ca1ed713b803722352829b948e3c84cd463b2b617","impliedFormat":99},{"version":"a2c7210b0f2be82aed4cdfc51ca084b3ac017a2d2e9baf5b519732fafb6feff7","impliedFormat":99},{"version":"f10d4445bd7db9939402b239776287476b42d1ac4bc8e6b80a7ab7013b9c9981","impliedFormat":99},{"version":"4df8dc56ba9be273bee231caa239d04fb28293b92c109c32f4fc027f65e5aca8","impliedFormat":99},{"version":"7458750d4c17b31f538c9faa569a75ece0bad5ff89be08b54aa7ebf485ec1dcb","impliedFormat":99},{"version":"2dc42bdd932c6f6c33203ef3adf9a3c3f9c92e55119967c4b8eca75048527ec8","impliedFormat":99},{"version":"a8a30971ee06a579685d25fa7135d8226f1faf0fa6571a3dadeceacb9291f2ed","impliedFormat":99},{"version":"e2aafc728d8f60a248d640eb447028edcf9b80d9d99f50c465b06011d885bd6a","impliedFormat":99},{"version":"3015667b8858f86fee317668c4572b9bddc3b14df96d23383507d618edcdc577","impliedFormat":99},{"version":"f46d9c50782b5c3d0d0a1114188c704288224e91dec2d078fb50180621d58c1d","impliedFormat":99},{"version":"edf1398a29effd40893b4e850271ea22bdeb0d3d6a901eb08ad2516f13b8bd05","impliedFormat":99},{"version":"73421be7cc17957418f22a7be68c4e6b8d818f1597585bb3020aeb6ef7006f9c","impliedFormat":99},{"version":"d80c3265f6b0717428e089d897e503d19debb1f5348dc5d286f3a850e93d5061","impliedFormat":99},{"version":"5bb81a9aa2387411321b9f1f5c021b6303428634bee563c9a8f1cd388b1be443","impliedFormat":99},{"version":"30522d15d4f6aadebfabfa0d23ad5adf467335a6ef7bc8508db50e8dc388b3fa","impliedFormat":99},{"version":"9c160cf18020aec7bd1deac84fb3bda1a03c590ceae2bc5c150ab037dd226886","impliedFormat":99},{"version":"4b966b4f48c930b166a0058b0d8aadcf0b111135b99a6297aaaad1528c42ed97","impliedFormat":99},{"version":"113fd627693c4050016f9da31114c196ed3e55d1a94ea023bd6bc829dca4c550","impliedFormat":99},{"version":"bd90ad1350bb360f83082e98021e7cfbeb6bbc75565b76c70bd2ebf9ba936a23","impliedFormat":99},{"version":"c2ef4463c7d697365ca578709c801077009dd3caef689c5dba0a8521969a95eb","impliedFormat":99},{"version":"15b34f0a2bc3d983723e394aa54333b2f4cd41e391a5e68aa5bb782351e359fe","impliedFormat":99},{"version":"ac5b9f2d5cbd50ec86d5856917c5eb5ab6fc7152fb182598c9b9fc2bf458b8d4","impliedFormat":99},{"version":"1d44832eaee499d791379ab65c32f9b72ed807613b72d7efe0e4dabec955d21b","impliedFormat":99},{"version":"db17327ad596824321aefdfa22cc1d45d9fe3192fc8fefe4ad17dafe93c739c3","impliedFormat":99},{"version":"0819b4f64eb1b87f884d52895505d8e913a3f84e1eb164bdf96ea2b50354e7d6","impliedFormat":99},{"version":"60e6c7ed01a617453bb91682fe4958e698292ec3ab2e8473a3123c3b6daf0676","impliedFormat":99},{"version":"8d426454bc1da7cdd3408c926c58228bce4dcc30c8a962bb0141cc13b1d81018","impliedFormat":99},{"version":"f04c3edcb4544775f079ade30ad601d9e50aef13a19fcc0325bb1d33fadc3f58","impliedFormat":99},{"version":"025c17c748488159fcafcd87b95b08a029ecdbd25000f598804bdd7788b1b6f6","impliedFormat":99},{"version":"4c22848e2508e85af2c9f8e895d5ed64d92e1b02711f45c751e709086e4da919","impliedFormat":99},{"version":"7b928049f4bb3f15bca40fc7d57ff661cdb6c24a7b235fc8fa083f4dc863ede3","impliedFormat":99},{"version":"2693d3e219283d2bb133924f0bdfd8aed628ff62b3857a6de107282a4c145dd9","impliedFormat":99},{"version":"d1a2690ce0378c3d377e7bd07614bb3c7e2bec52dd7f660198475a550dc13cc6","impliedFormat":99},{"version":"46b171ad2ab9b534979ea5086fbe669948fb8e31eeb2b7ad3d45d6a9ded78748","impliedFormat":99},{"version":"2e73ce1cc735fa0c03af07b0dd40b90bfc7bd5cc11d6271a9a965f0403cf69d9","impliedFormat":99},{"version":"753b3efbdc07a3d9993a8fff8295f7b4f95663e308ea85efc7a0c1ffd2ef116f","impliedFormat":99},{"version":"b08d54872af7b7df6fa9533cfe07b2e7aa2f50f5a84f172d292d53c75a54f8cc","impliedFormat":99},{"version":"e9e0b502312db594634de99abc4a0becaa67c69faf5531f66d7495e0bd5f5e0b","impliedFormat":99},{"version":"427bcc746c725d19ef8e041226bf8a60e20acc421e08cc723b0239b599a97482","impliedFormat":99},{"version":"bd012f6cfbb374e40d238c255eacd604243d1bf5bb065e216bd72bbb57aa2182","impliedFormat":99},{"version":"29ea832df7ac71578ed701393fb6e3e158cc643dfd1d3cc80b41a4c289e86524","impliedFormat":99},{"version":"df7600c69bc9611d77639d13248b087203b232e2acba76b3b4cdaa4cbc25d0e4","impliedFormat":99},{"version":"8be849acfdb4ade6d987865b17febdda1b9a6e320e87c746deec0e555121567b","impliedFormat":99},{"version":"cdc0b51f289385c35e0befb4db66c36821431bc4275369d51b2e2d3f3652049d","impliedFormat":99},{"version":"c79752b70dcb13137ee7bf01e6add89298c15e0d773d4c6faf56c1caa5d997bb","impliedFormat":99},{"version":"7e44cb4862e072b762134c46b95bc3e86124439931ae85159e845d0ca2166bb0","impliedFormat":99},{"version":"eb76bb4ca060b378e6bab61d7dd24e2cd7ca61a5c448e1bb327c63baa96ea6c3","impliedFormat":99},{"version":"9376146c27f8e0cace730fbf789648da353877c78e990e173391befa191e70ed","impliedFormat":99},{"version":"c7f6096a62192ee567f7de6cba63e1a19e32e6cf51e11725126446ae6ffa3d31","impliedFormat":99},{"version":"e8682dbf2be4ee767cc14576f3e461a8b8c2b1e59a7f787e89d22d1cb6876377","impliedFormat":99},{"version":"f9791fdca540b14eb2d745e95ce1904716f1f81f7b8955bccc96e4a0501fba00","impliedFormat":99},{"version":"2673620ee9cb5e62777ceeea4e84f0c53a2bea44d74f103ece49bfb7efe95aec","impliedFormat":99},{"version":"525f82081df6786aee16931dbb571de908e7235f3d0e55a774e71eb855cd4ae3","impliedFormat":99},{"version":"87fed3456418e122f03bde7afa0c512c55bfcd2ba6d6305385dd6c5e3c71ff6d","impliedFormat":99},{"version":"2ea4160e3867a56867f27637c7ecc3ab01a1d7534f892493582af82b24bff97f","impliedFormat":99},{"version":"dc9875d80504e711826648ca27882ffc145a136db37031e6f250b31fd357b8f0","impliedFormat":99},{"version":"e73198b060fba5d556b7b411073ac48383a539227522afbe5a3a9156edea2fdf","impliedFormat":99},{"version":"bd40604dce7f9329f800afebad8601fe708f32012c464fcab62c68cbf2fd39d7","impliedFormat":99},{"version":"b95561e98ee78519d7c2e98f86da7a9342b936b0e52cbc42894a517c38682f4b","impliedFormat":99},{"version":"91a9ebdd32734499d34fc812087ff1f59a70d2c6185981f229fcc2679a33b8e8","impliedFormat":99},{"version":"c0ff7336db1bb822f6e38dd91d58ba77f107309f453e8d5ed85d7bccaaa7863e","impliedFormat":99},{"version":"c42858690ca5e76a83277a2234057c126033a927b1419228f98011caf9332e22","impliedFormat":99},{"version":"b8b9141324d97526669e3b9c2914d5707c5fc2d1f4842d76f74c902b7a03549e","impliedFormat":99},{"version":"80b6ab00ab7bd0bfdebe92d387ca33446a7102ec4f5ae67a7aa392311f0647ab","impliedFormat":99},{"version":"3c9e08a6171b77f9409f6fbeee92cc7cec90295165305f4749c15b66984094b7","impliedFormat":99},{"version":"d5f52fef25eebd772b28fe3acd0ef103cb3d338c73fd23dae81235aa3d3216f3","impliedFormat":99},{"version":"a1d51984613f1b5faef052fb04f81743b8209fce70f8d1a1d73f2fb9be6d6912","impliedFormat":99},{"version":"e313dde308495525f7e18a1e3a62d49407e562d389661bff3def7aa6718547b4","impliedFormat":99},{"version":"b6fc849fefcf2d80c9f877a4b609da4e913a1b960adf9b8ee78dcebf2ccb1a18","impliedFormat":99},{"version":"ad93293f86fb21b8941415ebc7785f728d4fe8389f855f185dbc77dba548fe53","impliedFormat":99},{"version":"d582707b4fbb409fd9e62253e66631a521a79e57ec8a79ba205e6364877d3c0f","impliedFormat":99},{"version":"a1d1ddfa2b0d806b2778b931ef3221e5a16cf993005eed4b74b2561d7020864f","impliedFormat":99},{"version":"c71b08b656ec67568f366241678b35569c65fe7df5b1b1d450bee7e9b06f8ff5","impliedFormat":99},{"version":"4866caa6f66072a9029b8081a0b0614ddff5995126486d8b96414a8d2a22285c","impliedFormat":99},{"version":"6d37cb963c5288b5225af7fa9d072c429920718fa87d8352f72b5b80978aaf0b","impliedFormat":99},{"version":"e429692aefa26a42888b1e63959688bc0c75ef34fd3eb7c246f32b8872aeeb31","impliedFormat":99},{"version":"d97cf67eb2772d68fbc0ba44ac3c6d6f4d5ae620d8980084690acd049be0cc28","impliedFormat":99},{"version":"79182cb8300ae458110b9014011f3bce7a1f5983223128b1635f429ca4962b81","impliedFormat":99},{"version":"9bb8a03e0015254999c1e96830242fa3764856fd14958d3b097149f4491b1fa6","impliedFormat":99},{"version":"21655de6cf9d8df920b2dd8aaa5d6b4f88630c5c6f4df66947f4a2c4e59f7c79","impliedFormat":99},{"version":"7db915f07d1dec500718675edd2881ccd140132b7954eecb1bbc4313597ab4b0","impliedFormat":99},{"version":"7981d90e43327e29911a56c198f090dd816c5f2a15335c294c3f010f02b8f01b","impliedFormat":99},{"version":"5819a2787a272ae1b20f1cc8c81d98ddf09b163ad24cd1318719113a61205970","impliedFormat":99},{"version":"7f45ae699788ef0d76c10eaf0ed2fd3843ae12514355842c7ec6d5403925ace1","impliedFormat":99},{"version":"c565deb632ba928f5ca6e1ad8fea0410a7695b6fabbd1132618f0d329cda0f50","impliedFormat":99},{"version":"111346e95c27db969bebdf620d68008685571fb01e07c4f9c722f600f5fdda3e","impliedFormat":99},{"version":"a482905e0aed325e2f3cfd61de96fbf7c11e068e79c65f1974948d8962b85c2e","impliedFormat":99},{"version":"21ba214033e94c069266f184870db915957890ba80ee669cdca6f2c2346644d7","impliedFormat":99},{"version":"8dd2b29d482fb6746cfdcff57c1441d105f41ee91daaf346e1d11fd47650c783","impliedFormat":99},{"version":"4b3035f436869dc5da9815cb51a371a972fe31e2515c5dc594b3d74ddb701bee","impliedFormat":99},{"version":"13e18664181a3e017dcd8d6da49baf9d039092717810b0c7ca28fa50e3c8734f","impliedFormat":99},{"version":"8d2a9a4b17120c5c34ff1016a92b33b90e72f9430d8f58f16504beac3f5eba81","impliedFormat":99},{"version":"580307f6deb46c1f0045f9e74281cc285d2e7e39c96b378e31c251ba09521c9b","impliedFormat":99},{"version":"5b800f6a5c739360992423332074038edd736bc74b5565373448162289e933af","impliedFormat":99},{"version":"b78a24b52dea49fa0b8651db08e733debc94c4289700d1ebc89601972daabcbe","impliedFormat":99},{"version":"e1ce38cfb5b10848859e3c4dfbe9c42521967c4e91042e1f3c40c59c17432dda","impliedFormat":99},{"version":"a6835ba7439febe71eb3106bb4d26584794dc0f4855cd4c2af3ac2c9f5b25377","impliedFormat":99},{"version":"85948b36914a06d93bd22ee8580794b8e8486fcd814c301ffbbdce2371dea86d","impliedFormat":99},{"version":"ec455fb31d11dc3782f7c7bc81bc1ffee91e360b66ee6a55ee8135c896a9b0cd","impliedFormat":99},{"version":"d8f1e5f8e2f59c9ace3deedff9f1d5fd9aea1fd6abea384dde6f9ca132b5fe79","impliedFormat":99},{"version":"7022da6a9c58eee4317bc9ed61af467e92ade72a59f9e3785ab7fe8badcb9a35","impliedFormat":99},{"version":"5692c147dca7d616c0c8f2e8c533515c94457b7232fa255970102aebebaf3fc2","impliedFormat":99},{"version":"e75a927cc44a75ceadbe2e95ed18cf0b9ba904e14d37c1e2bd24b17b9ae7843b","impliedFormat":99},{"version":"a97e0fea0ab50bceccc582e21eab30bdcfb4336df84ba51ac633fc1331ad6e90","impliedFormat":99},{"version":"2ae624226a9bcb73293716bf1054b244938ba91eb3926f4cbc81157e3252513e","impliedFormat":99},{"version":"59ec53aae4cb5a602660390aab1cbddfc30a8ade8827395ee2e3b30e579377a5","impliedFormat":99},{"version":"2dca9b2566990a7508270b19ff7a36bce81d829509214a4ac87564ae2bb386fd","impliedFormat":99},{"version":"cd0c217d59afc04deccdffbe56c75fcfd86170e18252990c7bd8c67725e07132","impliedFormat":99},{"version":"9737c5818211975651a00a350f9dd836dd13c4de1fd8e5557e208bcecf5a6cea","impliedFormat":99},{"version":"2d0a4e661dac6ba0e8b6b8e0672d62e5dafea155223d185d9a9298acf2d14665","impliedFormat":99},{"version":"d6828477d01712f5841330b674ce2f6a76ae298a926f6fdbe67ba7660ec3ace3","impliedFormat":99},{"version":"347290356c13d55723dd8a866f9f1c85c463b2d00463a72ad072a55600fc8616","impliedFormat":99},{"version":"642899659eb387a4ced2f61d5d6a2fd20d792b68a3ee4321c446e014da5bf9e1","impliedFormat":99},{"version":"8fc9c4434476710427388af587998bac7a347cc68329b7da3a57fb11b72d12f3","impliedFormat":99},{"version":"d64fd4bea85624039b7b0441454419bbedd4501b553395a71bcbf8656f8df237","impliedFormat":99},{"version":"016e62f3268bdd7223c7ae9b9dc48acad3703ab46d83551b40c448bf24988426","impliedFormat":99},{"version":"ec3602337c24adb3702d9057f07a2b8751783059303663316736830011d4b474","impliedFormat":99},{"version":"c8a2414eda9226c6c50af454a9ea1536c176e58432e755ba5fcb229f996d9133","impliedFormat":99},{"version":"d14328f8d67ccb14c3cff684f2232433977c7eea206444561fa2f379702408eb","impliedFormat":99},{"version":"6c924e274aa22a4e099fc378a61cadbc90c4fbea075cd1fd577e2a0e9afaf182","impliedFormat":99},{"version":"393d1b40f1541ea9861b860564c623e3a40e3d959147382af1f49eed8b84be43","impliedFormat":99},{"version":"7ffda1567fdd3b535ef60e5b8cbab6bb2d11f8fc998e88060c30e595bf61452f","impliedFormat":99},{"version":"164af37e5cde8d2d830b5a5f2aaa6be547b8004e4e98b33fd6977581f8be4d4a","impliedFormat":99},{"version":"3f677da0a7ddc370dcab43603da691955a7e0479dac12086696355af9741b5ac","impliedFormat":99},{"version":"e0ace1698102560c3b8090c2dd1f63ecd0a2b8601b4cb4b16df8642793fd036f","impliedFormat":99},{"version":"cfb10af0ff7ca1449f9cfe9ab9ea22717f78e7b7d1ca41a88095c584316a4515","impliedFormat":99},{"version":"e038fcb79d0716bd68af2421b6ed71d35f665b9c6f54948688366284e264c1bd","impliedFormat":99},{"version":"9052804c912704d31ad2107e130ceca04774b52abaf25735b0b3bdea8e1494b2","impliedFormat":99},{"version":"9c31f13604ee809712dd2c1e5c78283ec52cdad5b8713f5664c554b8d772e71b","impliedFormat":99},{"version":"d0f4e9c0edcd72cfe7618d93ac8a1f693b193b90c5d3a2247ab05e9993c6e85e","signature":"7f0b5ad7b776b26dcdbb05d8733b1650686b4ac97a0ae5702941328938386702"},{"version":"bb703864a1bc9ca5ac3589ffd83785f6dc86f7f6c485c97d7ffd53438777cb9e","impliedFormat":1},{"version":"ee487439f7946c510aee90e571a926a0692c4996f563e134b39266ae2aaa6984","signature":"fc365a2325b510b85ed891a19687b1a142a56e21e0b60a77008b764f3e69bd89"},{"version":"7836a6339a3e3794cec8ded8e146264ce62c9e885139486cdd80a403a121c14b","signature":"e26e97b3e9509864f189a45ebf4f7a2b553969ece494c7b78f6329456e1b5665"},{"version":"545bc2f1778a9388f3ee1ac904f043e18cc2d4cea56b062423a6967bc4ac1694","signature":"97ab3d72293f31959e6da1e4b452f0ad45ad752cc8a4766c55395a07adac44c2"},{"version":"e7441be68f390975c6155c805cea8f54cc1b7f3656b6b9440ecbbbd7753499e6","impliedFormat":99},{"version":"4be7765c14449bb7885f7a79e2b6b8b635138d56bb52d9f221f75263417d6428","signature":"3e971614c1be9fd60dcf26fcdb62c745c73d82dfec80018276a7670720ced01c"},{"version":"ef8c41cd5beef2fed32d6f7e1995d94e3330dd61f892c3042f266f6692df3a40","signature":"3f2aa2982c492af79f3dfd2ee1fe3c6a76fb0412d9db9433f7261adf80c5a6d5"},{"version":"36790362365485fc1916026197f00e5a705a7ef6d61f75ed8f4773d9c4003dfb","signature":"089f81dbdd87f0311d4c6b40eda7d3db691cbc7f8609b2256bbd1be9f8e40f94"},{"version":"a29dba1b765b22b9a8fa48ca9a4b8da3f2f89be3ea7641b1a416b485d3e8d2c3","signature":"b5707471b824d7baa4359a3b6e553a97fbc35ee76d2a0364169735833ee1f228"},{"version":"71acd198e19fa38447a3cbc5c33f2f5a719d933fccf314aaff0e8b0593271324","impliedFormat":99},{"version":"6ce55335012d76737df504baabc950805760acf3be988142d1985aa4893f919e","impliedFormat":1},{"version":"88efe27bebddb62da9655a9f093e0c27719647e96747f16650489dc9671075d6","impliedFormat":1},{"version":"e348f128032c4807ad9359a1fff29fcbc5f551c81be807bfa86db5a45649b7ba","impliedFormat":1},{"version":"8ee6b07974528da39b7835556e12dd3198c0a13e4a9de321217cd2044f3de22e","impliedFormat":1},{"version":"deefd8c43b40f9797c3921d78d3f9243959621a17b817be7f5d95c149f23a9dd","impliedFormat":1},{"version":"5f12132800d430adbe59b49c2c0354d85a71ada7d756e34250a655baa8ad4ae5","impliedFormat":1},{"version":"1996d1cd7d585a8359a35878f67abdd73cc35b1f675c9c6b147b202fdd8dfc3f","impliedFormat":1},{"version":"b16e757e4c35434065120a2b3bf13a518fc9e621dc9c2ed668f91635a9dc4e75","impliedFormat":1},{"version":"d22cd2e880dc30d21cf20b26b6341e0478f3505ea645d1504c7e9c14cdff1198","impliedFormat":1},{"version":"d02ced7accb512e6198b796b8d284e7979abde0f089b0a77969747a5f27bfb23","impliedFormat":1},{"version":"4374cefdde5c6e9bad52b0436e887b8325b8f407c12035194ad02c28f1553a3a","impliedFormat":1},{"version":"5f1ba0898eb0a54a644cb9c95c2240beaa961d87fd080cbb90807a6cc03daeb3","impliedFormat":1},{"version":"8e92ee8710ba85b158c5d91b0bbc9d0d033f5e062b6e70178063f01b20f63a14","impliedFormat":1},{"version":"ee933420aacba1f60aa70fb8ba47c5e69001b005073b71973114587089a13c7f","impliedFormat":1},{"version":"0a0714999d0a5bdfacd15c7b34cffbcc6f263f6cb0ccb42076cdc541c6987797","impliedFormat":1},{"version":"56584bfc655f9df64afc0f22f7d1122c29e5b74b342c203b891e19de9fa37de8","impliedFormat":1},{"version":"40ec58f0fadd0b3981b3d383e1c12fa0680115ae9f018387fc2cfc0bbcf23204","impliedFormat":1},{"version":"849b9e7283b7309a4556c9b90bb8e2dfc27751f157798065bbc513dcddb09a8c","impliedFormat":1},{"version":"76bba0c97594248c1be19af32d5799f7eff51cec2926d8e4dd59267d7636a0b4","impliedFormat":1},{"version":"10e109212c7be8a9f66e988e5d6c2a8900c9d14bf6beadf5fa70d32ada3425cf","impliedFormat":1},{"version":"2b821aeb31e690092f8eae671dd961a9d0fd598ff4883ce0a600c90e9e8fa716","impliedFormat":1},{"version":"26602933b613e4df3868a6c82e14fffa2393a08531cb333ed27b151923462981","impliedFormat":1},{"version":"f57a588d8f6b3ce5c8b494f2dc759a8885eaee18e80a4952df47de45403fedbe","impliedFormat":1},{"version":"34735727b3fe7a0ed0651a0f88d06449163d1989a2b2de7f047473adc7c1c383","impliedFormat":1},{"version":"a5b13abc88ab3186e713c445e59e2f6eee20c6167943517bc2f56985d89b8c55","impliedFormat":1},{"version":"c8a206a6ba4e32710ebb4a389187772423de0f4f6180b95a7ef1a5a1934c1be6","impliedFormat":1},{"version":"7ae65fe95b18205e241e6695cb2c61c0828d660aca7d08f68781b439a800e6b8","impliedFormat":1},{"version":"c2c8c166199d3a7bd093152437d1f6399d05e458a9ca9364456feecba920cda4","impliedFormat":1},{"version":"369b7270eeeb37982203b2cb18c7302947b89bf5818c1d3d2e95a0418f02b74e","impliedFormat":1},{"version":"94f95d223e2783b0aef4d15d7f6990a6a550fe17d099c501395f690337f7105e","impliedFormat":1},{"version":"039bd8d1e0d151570b66e75ee152877fb0e2f42eca43718632ac195e6884be34","impliedFormat":1},{"version":"d565d66b38d54de037c9d46dede1f12630010d9b45fd9c6b432c7a40b2e30502","impliedFormat":1},{"version":"d7386a1ebe9a3eae227a5561c898c10cacb61a49f941c5a18cdf593f979c693c","impliedFormat":1},{"version":"a346701ad6dcdaa58e388fe0995fc5304c09c395b8cba68ed872780f8c102004","impliedFormat":99},{"version":"c3c250bee5cd2746165b2eabe9a6bab69ccd163893358daf17d5b664820e6f74","signature":"3ad67ff709adaf35ac3a7122d0ecf6e8c988c190255ff4619f8d9fbffcc096c4"},{"version":"3634c42485b97e10d69b2ecf2f76bfbb57321ff7c21526f8623b86347a50b799","signature":"1446e732d7fbfa1e7285a2e4639209182c71b73e48873ab4d395246071b81148"},{"version":"0bae91f96a7bd8fbfce9143b6d00f643e551f901d6ab647cae5f499774f27648","impliedFormat":99},{"version":"bc3d7f494fe4d65c1bdbbb477ea77ac45c2e1cc29b5f4066ee951e732676d7eb","signature":"53dfd911fedbcbc220e09ce8a75da4fed832d54cb8662ad954134a540c2e0cf1"},{"version":"b98729fdca40c90c35ad0a40ff347db5c0978fea906734165cc07f24038e8987","signature":"56d943e5a49643902b8a8efd574c10634de66dc06c7324655772fa368c52be9d"},{"version":"1351c5de85e852c7d76e61da8c88e45ba4e9702db3e16ca7e8551cd695733038","signature":"e850e8d69f3ee607012456687e0cb29c98ffd47f640cb5598ea36dd6c695e5a2"},{"version":"b843496b17a2bbd79c83809c73fd9c59fab53d3e361e04e52e2d489524eea764","impliedFormat":1},{"version":"28250c0637710d7938fce47ff0d97bba4fc67baf639031d6980ed4001d874b06","signature":"eeb19c8ab43f4b0aab6315298ef4ee1c4e032fea2d4dafcc4d6120d880c4b35a"},{"version":"afdf385f625abefb53b45a084801a903f24e5b80463831cff09dbb69c9694489","signature":"9330373bd6720278b3e12c95e3232ff1c47ba1903ab9cbc4ed9fb7d6549bb1bd"},{"version":"a15cb518fd8432bbdeadee6055612deb8526af56b3ad289e837d473402b48296","signature":"3ba13a9ab01843a367d02b3b90da52cc04664c53f02e6f78ac0d5955172d311e"},{"version":"564feac3adc5230143f3fb9215e32020d1b4e1d46dc95e32760d5f0523b68445","signature":"f2f26d50753958ca131589b61cd800fee9d4bbb9854fbfa3cafb0f1751f85cdb"},{"version":"0437c634a2ef34f5c6b2f24237767398741915e9d21e709b2997e5064144c08c","signature":"1b9002afae4e440823d1570cba77f83d8c9aa9e57aea204fb4741c33e65818cf"},{"version":"8c79da4eeafe6f8f0a6497bf1c78cacd86089acb24c545652dff13b6954c0d30","signature":"0d7b1f025f079aa7af804fb8f9962db03dddb54cce7f2c9447ed27153300c7c8"},{"version":"639f94d3cf05fdcd46b57e78a08db2f129a31cded4ce6ace02bffeb591462305","signature":"e339b40716ad20840e20ba12ee81d21e3dfe1d9e3446b1e3a8d896c6cddae419"},{"version":"f69cdafb276ea3ccae23019833be1d0b71a0a7fde91e0342827ff87d564ba570","signature":"456f3cfab8925999c6f5a1f08522530d9030ee6755eab82bffb3c673c278ab45"},{"version":"d333cf34143897d92e5f742c0d25d8a144900e903aaf64ca132e6c63f2032840","signature":"0f178046fb569f85c02d8373f5aa698f67926fbef78e8d244955ee1907cfaa3d"},{"version":"6a335613be60cfdec5f899cb7c98007efba56dad7ec407bf8632cec4984b42f8","signature":"1c3c7335e8df240e6936629d39ad657ab786492e4b7f90487da4be57cdea0982"},{"version":"00039b853a6eaaad73d04d2d852dd7c9698538913fd9745c1b6b8a22b4922448","impliedFormat":99},{"version":"5831ebdf1208502dd05f90c32f42502bb26e15b6961c5c1597e5560a4519bb4a","signature":"c345505bb933e154f5000e56c2573899dda82044410be05902f14a03e7ccfd18"},{"version":"21436d726207cd9b449d396f4247693033aec12e815b8ea95747044c289b1de7","signature":"5e61081670045b871535b7c7c9080308e56216741240c7cb4d0253a8b01a9abb"},{"version":"83cb253963b268cd2ad25217d5a90781e0e7d69167dcc96d2dbf7325e3705852","signature":"becd142145b36c7d6082a95afe27afaba48fbb0cc96dfb4f7613993f10c6c649"},{"version":"9c580c6eae94f8c9a38373566e59d5c3282dc194aa266b23a50686fe10560159","impliedFormat":99},{"version":"0d9c4f9c9d061ca4b7213a2d5794ed23e7f5d160c553a5784b345e9f4f6b4ab5","signature":"6298178714b47a8cb83534e98a77d5582acd4971aee1bd5605125b95acfce77e"},{"version":"993e2b77accc3bac7482b83971c86657d70449a77c5185d2fc990d68b67357e6","signature":"f713a24969730d7d0d18c24bf043fdb0791080c9b8c9f764306c543ba2a8fc68"},{"version":"3aae2edbb08cdce30fbc6953a230f8b814bbbb1a74c107dd6e1f03484433b677","signature":"8a95d2635ff68a6be29d94fe2d5105d459bdc954f22299202239bbe1ff8f1d6d"},{"version":"7522c40c341060ead4fa689c369170ca08393d50ab3a1b2d33cca27dbca663c0","signature":"70c6c293c56b6654b948d94c17440f17d222597ce1f9361470df60c1c5aee177"},{"version":"ad50f00600024bd924e8065bbee0af25930a4ee157a499af4976b435522c042c","signature":"02461cb134256cd2f016e4e8d9d1c142c661c0292252faf0b2512d48d66a92ff"},{"version":"36dd4cc1fa7247c28a7e784ecffec7f33ba12c2f1ef9b41f729c251f2f47ecb9","signature":"dc80ccfe7884eedae23bf44da7e345e95bdbae36148cd79e0215f5dbeaaf5c9f"},{"version":"0ca61e8b1b9e77e107f454e9b56a3acbba83ba2536e20e92613deba351cf1c83","signature":"41929e20c5eb1f233d58f2598dedd435fb55b8795eeceee8936d6c7afd42735b"},{"version":"be1cc4d94ea60cbe567bc29ed479d42587bf1e6cba490f123d329976b0fe4ee5","impliedFormat":1},{"version":"4374e37ee7783045f80c7d1d1cd1ae197a5ffde2a8be945782ea542f2cdcbc77","signature":"e2c2b8eac53a08c7818635859c98171bb38e9dfb495e8ff4e59fe8671c7302ad"},{"version":"22fbb25b529af8fa3b79cabc63953d516e8b93c2add02a6068fe981d2fcfa674","signature":"170fc8dbfb526955952fc5b204653b8d57e45a9e950bcbfd22062d22af2212d0"},{"version":"2a1c8db0a32be18629a78dc6a9e723cf679ca37401bff5f02acec286638544e4","signature":"5abeffe585b05cbcc04c65f99186f4486a6cc1d46c4774f746953172dd271fff"},{"version":"4fa856fcdd6a51c36fcd73936440cf6475c371045306cd8320840842cce70c40","signature":"9e8febab625247e35e99921a98b24c1cdcd8c915a4d3281613da2049f520271e"},{"version":"1c26aa5b672d2445ea7e3bab054e8b43646a873e0620ca06ff49d178064ea26f","signature":"975e187539718b96ea8ce48d5cf916e1d3442f56a8b2813ef2e50e7f88fde118"},{"version":"6c05d0fcee91437571513c404e62396ee798ff37a2d8bef2104accdc79deb9c0","impliedFormat":1},{"version":"334aaea0825b30a6800492d87b60c626f5c727afbe1a3fbb3a0b0f7fddeaff2e","signature":"c0bcbfb00cc25cba8cad5a5eebe9fc1e537b4f19f297627c7e2925d6e37a4f27"},{"version":"6aa2859da46f726a22040725e684ea964d7469a6b26f1c0a6634bb65e79062b0","impliedFormat":99},{"version":"3a36847ae7d8aefdafa8121db60110079cb2c0988f8eea4da52cc51647831455","signature":"5e54a1a1fd73836dddb595b494548678f82f8a02361b99edef2b2b174f94c16a"},{"version":"16227338bb3238de48a072ad6c3c3b70301aa07cb8e4eb2b1a820f5d92bedacd","signature":"aa88680ef870db7aaee956764bd3c0319353b55e10c80ca4d01d57a5434061b9"},{"version":"f2769be875442889d0f65abb106f77001037ede201a5ba18f762012580f4e8b6","signature":"36a0688759f74337c72006b4be049a059dedabd193e35d2fbc0f271b6165e1c5"},{"version":"f7252c049fd5c34baf2eee07d0912e1020305e5dbbd4309d11ae48f91a1a06bf","signature":"589605e2ef801e3d129546cad9256a298eb3e4627c3c4f0e1b7e979b65e2183c"},{"version":"c964b9c32f581d676ce088c5db4a20c22954484d603e026533c56dfb9b974ca1","signature":"3f3e9512c4b95b3a0e4cc11b831d61b386e501a692bccf60a56191fd08be6a76"},{"version":"d061fd9f704108cb97ea5c475bbaf47544c9bab37a858a5b0fc55c0b57188053","signature":"2dd1e8ab777f910538544707d5a83625ac6a4c90d8129ddd141d8a779e7da0d2"},"3d49073fa197347bb741ea058e8ebc4e43876e717aa5c500ddd02a4168e7b184",{"version":"f28ef8758fd0f99ba378b95abbb780653f9996bbc6a04bd93a2185dfed43c3cb","signature":"a4b3ccee8dea4ccb0fa25fb7dfdf3b0f28b3463e29bcc607908fa1d2e92992f7"},{"version":"44c634567d7364c90736e4c51d4e0d3af8b86f6a173300c478cb44f3cef2f406","signature":"430fcfb32d4fa3d29e4b713496e3091561275fe7cbcfbc0b55505d45f84adbfe"},"da5bf71d48cf909584a01c80b445f730507068f5b34c920f352e2bfcf0315e4c",{"version":"3d35572d5483f724930f2c925d96a203c670bff536db24d328de9cd0ea43a292","signature":"87c5b92ff1aa474cf946f80b3991703d5a800ca5789dd274396727bf06569783"},{"version":"3a582c6e8906f5b094ccf0de6cc6f4f8a54b05a34f52517aba5c9c7f704f6b28","impliedFormat":99},{"version":"0528f6d21f7a02d4092895090d2dd86104bd5a3e79eced96d5a1a7dd90943d17","impliedFormat":99},{"version":"b5ce343886d23392be9c8280e9f24a87f1d7d3667f6672c2fe4aa61fa4ece7d4","impliedFormat":99},{"version":"72ce5b734c05da85c85a6f6dc05823b051d6aa41acaedeeb1d17c72f3b4efa72","impliedFormat":99},{"version":"b0857bb28fd5236ace84280f79a25093f919fd0eff13e47cc26ea03de60a7294","impliedFormat":99},{"version":"5e43e0824f10cd8c48e7a8c5c673638488925a12c31f0f9e0957965c290eb14c","impliedFormat":99},{"version":"ef13c73d6157a32933c612d476c1524dd674cf5b9a88571d7d6a0d147544d529","impliedFormat":99},{"version":"49ab4f1d153a252779958fc87b700743d32b5ffa42addd70ae23ad3f429daa5c","impliedFormat":99},{"version":"53cf4076f42b29b8d411259d168d51b3a0274c42c8814e5b44dfa8803a35d4fc","impliedFormat":99},{"version":"a39461ee1f27cf3e6cfd63d21045713d26d521da55ea4d8efccb705f689e6dbb","impliedFormat":99},{"version":"61bb64660ee150f3ab618340e15cca0a81664801bede7c966ca0eca3a952fe63","impliedFormat":99},{"version":"3b89216a7e38a454985ad17bb2ff85792837dc812f2a89fa5f60ad0a2e216fa7","impliedFormat":99},{"version":"16fe60bb544cfedfd2b5bb2f7d0b3957be7978706d57d9f06edc9c0c8dbdba23","impliedFormat":99},{"version":"de4a612aa8f1704af486f701e21993c786ba7d8cfed55fffa6684026aea2346e","impliedFormat":99},{"version":"4e003c868b0d8f8ad200b96cbc653e18e513fa23e1c19c4fe3cc25d4394efc47","impliedFormat":99},{"version":"8887e70871f697fa42ad7cdf32168db60ec2d6760c173c97973e35377fe5d83b","impliedFormat":99},{"version":"42a12f2faa483c9b48195ed794d22698162274e755f6e07219c2351c4f08d732","impliedFormat":99},{"version":"ec0c42bb0f465e4993f2bc68a6ce9df9a2dcbc7b83e21748f82f1b69561938e3","impliedFormat":99},{"version":"f50ff37a9cbbe74475f426474d9827083c7c2c138a954d28f1690df338f69291","impliedFormat":99},{"version":"61fd6c17235d530c40f543dd7c40afab091d91c1ef890baeed30db6d82b04b28","impliedFormat":99},{"version":"bcbd3becd08b4515225880abea0dbfbbf0d1181ce3af8f18f72f61edbe4febfb","impliedFormat":99},{"version":"091767bc841f937654ed597d49e023ed59850355e746ae1a6f20ab31076ee1fb","impliedFormat":99},{"version":"19c6d6135af59693698d384050b45a8a049493500add442f58e4bd7c8a255ab6","impliedFormat":99},{"version":"6a0dba12d55314638a8c51108b20fe2f68f1364a619d098918bda91c22dec154","impliedFormat":99},{"version":"c76c02846ba7d40b9b3488f0e8d75d02cbdee2f0bc5fcd55dd3bd2e1457646ea","impliedFormat":99},{"version":"4ead13a482c539b77394b2a97e3b877b809eac596390371cea490286f53b996a","impliedFormat":99},{"version":"06db2f8ba1d1dfacf04529cb731081ab23f133f29c7608ebdfbcab356996827c","impliedFormat":99},{"version":"bdd14f07b4eca0b4b5203b85b8dbc4d084c749fa590bee5ea613e1641dcd3b29","impliedFormat":99},{"version":"427fe2004642504828c1476d0af4270e6ad4db6de78c0b5da3e4c5ca95052a99","impliedFormat":1},{"version":"2eeffcee5c1661ddca53353929558037b8cf305ffb86a803512982f99bcab50d","impliedFormat":99},{"version":"9afb4cb864d297e4092a79ee2871b5d3143ea14153f62ef0bb04ede25f432030","affectsGlobalScope":true,"impliedFormat":99},{"version":"5c935b7fc4ddc1410ea1cd7cd4e35ed106a6e4920dd27a9480a40fd224359dc3","affectsGlobalScope":true,"impliedFormat":99},{"version":"2b39c6cf59088713babbfc3e20ee85f1375d40e66953156fa658346b8346f24f","impliedFormat":99},{"version":"69bf2422313487956e4dacf049f30cb91b34968912058d244cb19e4baa24da97","impliedFormat":99},{"version":"6987dfb4b0c4e02112cc4e548e7a77b3d9ddfeffa8c8a2db13ceac361a4567d9","impliedFormat":99},{"version":"4ffba3c5848b4fe62ee59b754fd5f256ad9656a0db6d37b9a2a8cb40dfc7ac21","impliedFormat":99},{"version":"c76c02846ba7d40b9b3488f0e8d75d02cbdee2f0bc5fcd55dd3bd2e1457646ea","impliedFormat":99},{"version":"5e2ba3d18d78aebbde1f34bde356e41e9c76eeaeaeee56a37036596a9eff4211","impliedFormat":99},{"version":"8280ae8ccc0493b32d1742d585357ab9f0a508ea050af25a5a20d64010d0a5cf","impliedFormat":99},{"version":"7adfd9f9056ecd4ae6c65fde2a98654960c662714c73f048478959d04c09e144","impliedFormat":99},{"version":"32b35cf0dc3a1b1a7118b61c34ce2ad1a29695851679f9ec34e0776f2ece2a69","impliedFormat":99},{"version":"b413fbc6658fe2774f8bf9a15cf4c53e586fc38a2d5256b3b9647da242c14389","impliedFormat":99},{"version":"59e5e964b84fdb2378e9455e4e59405030e4ed2b4c6f891ce395f17796af3cbb","impliedFormat":99},{"version":"c30a41267fc04c6518b17e55dcb2b810f267af4314b0b6d7df1c33a76ce1b330","impliedFormat":1},{"version":"72422d0bac4076912385d0c10911b82e4694fc106e2d70added091f88f0824ba","impliedFormat":1},{"version":"da251b82c25bee1d93f9fd80c5a61d945da4f708ca21285541d7aff83ecb8200","impliedFormat":1},{"version":"64db14db2bf37ac089766fdb3c7e1160fabc10e9929bc2deeede7237e4419fc8","impliedFormat":1},{"version":"98b94085c9f78eba36d3d2314affe973e8994f99864b8708122750788825c771","impliedFormat":1},{"version":"90ba95a763101bb61b8a799731a2ed60b5016b8135c1a2d5186862d4b534d4a1","impliedFormat":99},{"version":"ae77d81a5541a8abb938a0efedf9ac4bea36fb3a24cc28cfa11c598863aba571","impliedFormat":1},{"version":"f329dfad7970297cbf07ddc8fce2ad4a24e2a3855917c661922ef86eb24dd1f1","impliedFormat":1},{"version":"480f05e466e86ee6c80af99695d90079f9e2956a4986e930ebd3d578688ff05c","impliedFormat":1},"91a3c8962a0edcb956206a501d943fe99e1c78c6d4d8b5c9a948a3362c75978c",{"version":"bc03c3c352f689e38c0ddd50c39b1e65d59273991bfc8858a9e3c0ebb79c023b","impliedFormat":1},{"version":"3cfb7c0c642b19fb75132154040bb7cd840f0002f9955b14154e69611b9b3f81","impliedFormat":1},{"version":"8387ec1601cf6b8948672537cf8d430431ba0d87b1f9537b4597c1ab8d3ade5b","impliedFormat":1},{"version":"d16f1c460b1ca9158e030fdf3641e1de11135e0c7169d3e8cf17cc4cc35d5e64","impliedFormat":1},{"version":"a934063af84f8117b8ce51851c1af2b76efe960aa4c7b48d0343a1b15c01aedf","impliedFormat":1},{"version":"e3c5ad476eb2fca8505aee5bdfdf9bf11760df5d0f9545db23f12a5c4d72a718","impliedFormat":1},{"version":"462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","impliedFormat":1},{"version":"5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","impliedFormat":1},{"version":"d0570ce419fb38287e7b39c910b468becb5b2278cf33b1000a3d3e82a46ecae2","impliedFormat":1},{"version":"3aca7f4260dad9dcc0a0333654cb3cde6664d34a553ec06c953bce11151764d7","impliedFormat":1},{"version":"a0a6f0095f25f08a7129bc4d7cb8438039ec422dc341218d274e1e5131115988","impliedFormat":1},{"version":"b58f396fe4cfe5a0e4d594996bc8c1bfe25496fbc66cf169d41ac3c139418c77","impliedFormat":1},{"version":"45785e608b3d380c79e21957a6d1467e1206ac0281644e43e8ed6498808ace72","impliedFormat":1},{"version":"bece27602416508ba946868ad34d09997911016dbd6893fb884633017f74e2c5","impliedFormat":1},{"version":"2a90177ebaef25de89351de964c2c601ab54d6e3a157cba60d9cd3eaf5a5ee1a","impliedFormat":1},{"version":"82200e963d3c767976a5a9f41ecf8c65eca14a6b33dcbe00214fcbe959698c46","impliedFormat":1},{"version":"b4966c503c08bbd9e834037a8ab60e5f53c5fd1092e8873c4a1c344806acdab2","impliedFormat":1},{"version":"3d3208d0f061e4836dd5f144425781c172987c430f7eaee483fadaa3c5780f9f","impliedFormat":1},{"version":"34a8a5b4c21e7a6d07d3b6bce72371da300ec1aed58961067e13f1f4dc849712","impliedFormat":1},{"version":"9f69c48b21e54a34f68fea3627fdc52652dee1db857995a17f1e05606a10b68a","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"0ccdaa19852d25ecd84eec365c3bfa16e7859cadecf6e9ca6d0dbbbee439743f","affectsGlobalScope":true,"impliedFormat":1},{"version":"438b41419b1df9f1fbe33b5e1b18f5853432be205991d1b19f5b7f351675541e","affectsGlobalScope":true,"impliedFormat":1},{"version":"096116f8fedc1765d5bd6ef360c257b4a9048e5415054b3bf3c41b07f8951b0b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5e01375c9e124a83b52ee4b3244ed1a4d214a6cfb54ac73e164a823a4a7860a","affectsGlobalScope":true,"impliedFormat":1},{"version":"f90ae2bbce1505e67f2f6502392e318f5714bae82d2d969185c4a6cecc8af2fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b58e207b93a8f1c88bbf2a95ddc686ac83962b13830fe8ad3f404ffc7051fb4","affectsGlobalScope":true,"impliedFormat":1},{"version":"1fefabcb2b06736a66d2904074d56268753654805e829989a46a0161cd8412c5","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"c18a99f01eb788d849ad032b31cafd49de0b19e083fe775370834c5675d7df8e","affectsGlobalScope":true,"impliedFormat":1},{"version":"5247874c2a23b9a62d178ae84f2db6a1d54e6c9a2e7e057e178cc5eea13757fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"156a859e21ef3244d13afeeba4e49760a6afa035c149dda52f0c45ea8903b338","impliedFormat":1},{"version":"10ec5e82144dfac6f04fa5d1d6c11763b3e4dbbac6d99101427219ab3e2ae887","impliedFormat":1},{"version":"615754924717c0b1e293e083b83503c0a872717ad5aa60ed7f1a699eb1b4ea5c","impliedFormat":1},{"version":"074de5b2fdead0165a2757e3aaef20f27a6347b1c36adea27d51456795b37682","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"24371e69a38fc33e268d4a8716dbcda430d6c2c414a99ff9669239c4b8f40dea","impliedFormat":1},{"version":"ccab02f3920fc75c01174c47fcf67882a11daf16baf9e81701d0a94636e94556","impliedFormat":1},{"version":"3e11fce78ad8c0e1d1db4ba5f0652285509be3acdd519529bc8fcef85f7dafd9","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"9c32412007b5662fd34a8eb04292fb5314ec370d7016d1c2fb8aa193c807fe22","impliedFormat":1},{"version":"7fd1b31fd35876b0aa650811c25ec2c97a3c6387e5473eb18004bed86cdd76b6","impliedFormat":1},{"version":"4d327f7d72ad0918275cea3eee49a6a8dc8114ae1d5b7f3f5d0774de75f7439a","impliedFormat":1},{"version":"6ebe8ebb8659aaa9d1acbf3710d7dae3e923e97610238b9511c25dc39023a166","impliedFormat":1},{"version":"e85d7f8068f6a26710bff0cc8c0fc5e47f71089c3780fbede05857331d2ddec9","impliedFormat":1},{"version":"7befaf0e76b5671be1d47b77fcc65f2b0aad91cc26529df1904f4a7c46d216e9","impliedFormat":1},{"version":"0a60a292b89ca7218b8616f78e5bbd1c96b87e048849469cccb4355e98af959a","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"40cd35c95e9cf22cfa5bd84e96408b6fcbca55295f4ff822390abb11afbc3dca","impliedFormat":1},{"version":"b1616b8959bf557feb16369c6124a97a0e74ed6f49d1df73bb4b9ddf68acf3f3","impliedFormat":1},{"version":"5b03a034c72146b61573aab280f295b015b9168470f2df05f6080a2122f9b4df","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"249b9cab7f5d628b71308c7d9bb0a808b50b091e640ba3ed6e2d0516f4a8d91d","impliedFormat":1},{"version":"80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e","impliedFormat":1},{"version":"f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"8aee8b6d4f9f62cf3776cda1305fb18763e2aade7e13cea5bbe699112df85214","impliedFormat":1},{"version":"c63b9ada8c72f95aac5db92aea07e5e87ec810353cdf63b2d78f49a58662cf6c","impliedFormat":1},{"version":"1cc2a09e1a61a5222d4174ab358a9f9de5e906afe79dbf7363d871a7edda3955","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"b64d4d1c5f877f9c666e98e833f0205edb9384acc46e98a1fef344f64d6aba44","impliedFormat":1},{"version":"adf27937dba6af9f08a68c5b1d3fce0ca7d4b960c57e6d6c844e7d1a8e53adae","impliedFormat":1},{"version":"12950411eeab8563b349cb7959543d92d8d02c289ed893d78499a19becb5a8cc","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"c9381908473a1c92cb8c516b184e75f4d226dad95c3a85a5af35f670064d9a2f","impliedFormat":1},{"version":"c3f5289820990ab66b70c7fb5b63cb674001009ff84b13de40619619a9c8175f","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3275d55fac10b799c9546804126239baf020d220136163f763b55a74e50e750","affectsGlobalScope":true,"impliedFormat":1},{"version":"fa68a0a3b7cb32c00e39ee3cd31f8f15b80cac97dce51b6ee7fc14a1e8deb30b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1cf059eaf468efcc649f8cf6075d3cb98e9a35a0fe9c44419ec3d2f5428d7123","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c36e755bced82df7fb6ce8169265d0a7bb046ab4e2cb6d0da0cb72b22033e89","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"7a93de4ff8a63bafe62ba86b89af1df0ccb5e40bb85b0c67d6bbcfdcf96bf3d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"90e85f9bc549dfe2b5749b45fe734144e96cd5d04b38eae244028794e142a77e","affectsGlobalScope":true,"impliedFormat":1},{"version":"e0a5deeb610b2a50a6350bd23df6490036a1773a8a71d70f2f9549ab009e67ee","affectsGlobalScope":true,"impliedFormat":1},{"version":"3fad5618174d74a34ee006406d4eb37e8d07dd62eb1315dbf52f48d31a337547","impliedFormat":1},{"version":"7e49f52a159435fc8df4de9dc377ef5860732ca2dc9efec1640531d3cf5da7a3","impliedFormat":1},{"version":"dd4bde4bdc2e5394aed6855e98cf135dfdf5dd6468cad842e03116d31bbcc9bc","impliedFormat":1},{"version":"4d4e879009a84a47c05350b8dca823036ba3a29a3038efed1be76c9f81e45edf","affectsGlobalScope":true,"impliedFormat":1},{"version":"8b50a819485ffe0d237bf0d131e92178d14d11e2aa873d73615a9ec578b341f5","impliedFormat":1},{"version":"9ba13b47cb450a438e3076c4a3f6afb9dc85e17eae50f26d4b2d72c0688c9251","impliedFormat":1},{"version":"b64cd4401633ea4ecadfd700ddc8323a13b63b106ac7127c1d2726f32424622c","impliedFormat":1},{"version":"37c6e5fe5715814412b43cc9b50b24c67a63c4e04e753e0d1305970d65417a60","impliedFormat":1},{"version":"1d024184fb57c58c5c91823f9d10b4915a4867b7934e89115fd0d861a9df27c8","impliedFormat":1},{"version":"ee0e4946247f842c6dd483cbb60a5e6b484fee07996e3a7bc7343dfb68a04c5d","impliedFormat":1},{"version":"ef051f42b7e0ef5ca04552f54c4552eac84099d64b6c5ad0ef4033574b6035b8","impliedFormat":1},{"version":"853a43154f1d01b0173d9cbd74063507ece57170bad7a3b68f3fa1229ad0a92f","impliedFormat":1},{"version":"56231e3c39a031bfb0afb797690b20ed4537670c93c0318b72d5180833d98b72","impliedFormat":1},{"version":"5cc7c39031bfd8b00ad58f32143d59eb6ffc24f5d41a20931269011dccd36c5e","impliedFormat":1},{"version":"12d602a8fe4c2f2ba4f7804f5eda8ba07e0c83bf5cf0cda8baffa2e9967bfb77","affectsGlobalScope":true,"impliedFormat":1},{"version":"a856ab781967b62b288dfd85b860bef0e62f005ed4b1b8fa25c53ce17856acaf","impliedFormat":1},{"version":"cc25940cfb27aa538e60d465f98bb5068d4d7d33131861ace43f04fe6947d68f","impliedFormat":1},{"version":"8db46b61a690f15b245cf16270db044dc047dce9f93b103a59f50262f677ea1f","impliedFormat":1},{"version":"01ff95aa1443e3f7248974e5a771f513cb2ac158c8898f470a1792f817bee497","impliedFormat":1},{"version":"757227c8b345c57d76f7f0e3bbad7a91ffca23f1b2547cbed9e10025816c9cb7","impliedFormat":1},{"version":"959d0327c96dd9bb5521f3ed6af0c435996504cc8dd46baa8e12cb3b3518cef1","impliedFormat":1},{"version":"e1c1a0b4d1ead0de9eca52203aeb1f771f21e6238d6fcd15aa56ac2a02f1b7bf","impliedFormat":1},{"version":"101f482fd48cb4c7c0468dcc6d62c843d842977aea6235644b1edd05e81fbf22","impliedFormat":1},{"version":"266bee0a41e9c3ba335583e21e9277ae03822402cf5e8e1d99f5196853613b98","affectsGlobalScope":true,"impliedFormat":1},{"version":"386606f8a297988535cb1401959041cfa7f59d54b8a9ed09738e65c98684c976","impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"3ef397f12387eff17f550bc484ea7c27d21d43816bbe609d495107f44b97e933","impliedFormat":1},{"version":"1023282e2ba810bc07905d3668349fbd37a26411f0c8f94a70ef3c05fe523fcf","impliedFormat":1},{"version":"b214ebcf76c51b115453f69729ee8aa7b7f8eccdae2a922b568a45c2d7ff52f7","impliedFormat":1},{"version":"429c9cdfa7d126255779efd7e6d9057ced2d69c81859bbab32073bad52e9ba76","impliedFormat":1},{"version":"e236b5eba291f51bdf32c231673e6cab81b5410850e61f51a7a524dddadc0f95","impliedFormat":1},{"version":"ce8653341224f8b45ff46d2a06f2cacb96f841f768a886c9d8dd8ec0878b11bd","affectsGlobalScope":true,"impliedFormat":1},{"version":"7f2c62938251b45715fd2a9887060ec4fbc8724727029d1cbce373747252bdd7","impliedFormat":1},{"version":"e3ace08b6bbd84655d41e244677b474fd995923ffef7149ddb68af8848b60b05","impliedFormat":1},{"version":"132580b0e86c48fab152bab850fc57a4b74fe915c8958d2ccb052b809a44b61c","impliedFormat":1},{"version":"90a278f5fab7557e69e97056c0841adf269c42697194f0bd5c5e69152637d4b3","impliedFormat":1},{"version":"69c9a5a9392e8564bd81116e1ed93b13205201fb44cb35a7fde8c9f9e21c4b23","impliedFormat":1},{"version":"5f8fc37f8434691ffac1bfd8fc2634647da2c0e84253ab5d2dd19a7718915b35","impliedFormat":1},{"version":"5981c2340fd8b076cae8efbae818d42c11ffc615994cb060b1cd390795f1be2b","impliedFormat":1},{"version":"f263485c9ca90df9fe7bb3a906db9701997dc6cae86ace1f8106ac8d2f7f677b","impliedFormat":1},{"version":"1edcf2f36fc332615846bde6dcc71a8fe526065505bc5e3dcfd65a14becdf698","affectsGlobalScope":true,"impliedFormat":1},{"version":"0250da3eb85c99624f974e77ef355cdf86f43980251bc371475c2b397ba55bcd","impliedFormat":1},{"version":"f1c93e046fb3d9b7f8249629f4b63dc068dd839b824dd0aa39a5e68476dc9420","impliedFormat":1},{"version":"3d3a5f27ffbc06c885dd4d5f9ee20de61faf877fe2c3a7051c4825903d9a7fdc","impliedFormat":1},{"version":"12806f9f085598ef930edaf2467a5fa1789a878fba077cd27e85dc5851e11834","impliedFormat":1},{"version":"1dbca38aa4b0db1f4f9e6edacc2780af7e028b733d2a98dd3598cd235ca0c97d","impliedFormat":1},{"version":"a43fe41c33d0a192a0ecaf9b92e87bef3709c9972e6d53c42c49251ccb962d69","impliedFormat":1},{"version":"a177959203c017fad3ecc4f3d96c8757a840957a4959a3ae00dab9d35961ca6c","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fc727ccf9b36e257ff982ea0badeffbfc2c151802f741bddff00c6af3b784cf","impliedFormat":1},{"version":"19143c930aef7ccf248549f3e78992f2f1049118ec5d4622e95025057d8e392b","impliedFormat":1},{"version":"4844a4c9b4b1e812b257676ed8a80b3f3be0e29bf05e742cc2ea9c3c6865e6c6","impliedFormat":1},{"version":"064878a60367e0407c42fb7ba02a2ea4d83257357dc20088e549bd4d89433e9c","impliedFormat":1},{"version":"cca8917838a876e2d7016c9b6af57cbf11fdf903c5fdd8e613fa31840b2957bf","impliedFormat":1},{"version":"d91ae55e4282c22b9c21bc26bd3ef637d3fe132507b10529ae68bf76f5de785b","impliedFormat":1},{"version":"b484ec11ba00e3a2235562a41898d55372ccabe607986c6fa4f4aba72093749f","impliedFormat":1},{"version":"7e8a671604329e178bb479c8f387715ebd40a091fc4a7552a0a75c2f3a21c65c","impliedFormat":1},{"version":"41ef7992c555671a8fe54db302788adefa191ded810a50329b79d20a6772d14c","impliedFormat":1},{"version":"041a7781b9127ab568d2cdcce62c58fdea7c7407f40b8c50045d7866a2727130","impliedFormat":1},{"version":"4c5e90ddbcd177ad3f2ffc909ae217c87820f1e968f6959e4b6ba38a8cec935e","impliedFormat":1},{"version":"b70dd9a44e1ac42f030bb12e7d79117eac7cb74170d72d381a1e7913320af23a","impliedFormat":1},{"version":"55cdbeebe76a1fa18bbd7e7bf73350a2173926bd3085bb050cf5a5397025ee4e","impliedFormat":1},{"version":"c73fdf42528325dd17940937ed787b15ae3445c6a2dae1a2b74bc4d87d337ca2","impliedFormat":99},{"version":"e8e17dfef3cfa9f0847ac93dd535a9896af7fb57c1a1b164484bb1b0ee4a25d8","impliedFormat":99},{"version":"905aa259ceb7f7b7d1d59f99de8868c65ef476f04888e779f85dd1d7e1235223","impliedFormat":99},{"version":"638a22f8e16b31c37297483fa38cfc760ed309b16d4c606a7b4532f4394c9c0c","impliedFormat":99},{"version":"9394183f4c37b8591156f32e41223c9e0dd211eefe7499155d4cdf15268eaea8","impliedFormat":99},{"version":"b1aaa10e07510ebf74e94f6a0ec8c0df41cdc87bf4ec9d3907031b2a1ee6f602","impliedFormat":99},{"version":"7f429346f311ed5c346764a92cd89474bfb7d4012ee557801d6177bd60a81fee","impliedFormat":99},{"version":"86da92c883312ac2f3b35d0fdbda6196bdd614c3d72c386917f9c636b2eacb6d","impliedFormat":99},{"version":"7d3e062a778b8f5ea4f0cac7e925e31f88e6739812ebc5f827474324a4048f14","impliedFormat":99},{"version":"4f9e435035dddeab56b449e09ce1782be49c853304f156a2affcabca0a815862","impliedFormat":99},{"version":"4a838129e2aa98dbdb49a5f1a3367b74e204d92fbb1a66ebffbcb4dd8a4112e2","impliedFormat":99},{"version":"ad86350594b91ab1008decf71af218a49c62d8b1cb955c30a3984046dcbc86d7","impliedFormat":99},{"version":"64cad96d8eea46fcf925ccf652d01b1f841a3df1900d84c31cd26f15a97c9fc4","impliedFormat":99},{"version":"161c8e0690c46021506e32fda85956d785b70f309ae97011fd27374c065cac9b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e0864480ea083087d705f9405bd6bf59b795e8474c3447f0d6413b2bce535a09","impliedFormat":99},{"version":"e67cbea16f1994af89efd700542dbf3828a46a52b29e4d67e801bd7869dc103c","impliedFormat":99},{"version":"971f12a5fc236419ced0b7b9f23a53c1758233713f565635bbf4b85e2b23f55a","impliedFormat":99},{"version":"76de3321ce519928f1ff7d7a30391c0dc7374af20f81d9167919f038895b5cb0","impliedFormat":99},{"version":"094b9210da23b8711709b0535c59841186267bf6b83c1609aa9b515f830ab274","impliedFormat":99},{"version":"fbfbb4e99c6259ff5ccc4a5a62b3b63c0c8cae6e84737786c4a4c761c9a9de91","impliedFormat":99},{"version":"604887bbd5b0a93234ce882543a465f008636185c52e0f0353330e2bc38b03b6","impliedFormat":99},{"version":"32bf912173e8a9533631f9e9d8dc90a2ac7b52c2355611ddd886beab24dfd182","impliedFormat":99},{"version":"82695324abf7f3278b6d9f0582f4a544e8f7055c8cbe1065ab5cbacde1719c4c","impliedFormat":99},{"version":"43bba542e50e19241ec64bc13cfc0d9273e6198f36563cecad1f4e4b78ad47f3","impliedFormat":99},{"version":"b8cb3b69c0e8114f758bb8ef8efeef1cc80f8911bfd21126def73d2174ce479e","impliedFormat":99},{"version":"f582b0fcbf1eea9b318ab92fb89ea9ab2ebb84f9b60af89328a91155e1afce72","impliedFormat":99},{"version":"402e5c534fb2b85fa771170595db3ac0dd532112c8fa44fc23f233bc6967488b","impliedFormat":1},{"version":"52dcc257df5119fb66d864625112ce5033ac51a4c2afe376a0b299d2f7f76e4a","impliedFormat":1},{"version":"e5bab5f871ef708d52d47b3e5d0aa72a08ee7a152f33931d9a60809711a2a9a3","impliedFormat":1},{"version":"e16dc2a81595736024a206c7d5c8a39bfe2e6039208ef29981d0d95434ba8fcf","impliedFormat":1},{"version":"cc4a4903fb698ca1d961d4c10dce658aa3a479faf40509d526f122b044eaf6a4","impliedFormat":1},{"version":"19ee8416e6473ed6c7adb868fa796b5653cf0fa2a337658e677eaa0d134388c3","impliedFormat":1},{"version":"1328ab4e442614b28cdb3d4b414cf68325c0da0dca07287a338d0654b7a00261","impliedFormat":1},{"version":"a039dc21f045919f3cbee2ec13812cc6cc3eebc99dae4be00973230f468d19a6","impliedFormat":1},{"version":"3fbe57af01460e49dcd29df55d6931e1672bc6f1be0fb073d11410bc16f9037d","impliedFormat":1},{"version":"f760be449e8562ec5c09bb5187e8e1eabf3c113c0c58cddda53ef8c69f3e2131","impliedFormat":1},{"version":"44325ed13294fce6ab825b82947bbeed2611db7dad9d9135260192f375e5a189","impliedFormat":1},{"version":"e392e8fb5b514eafc585601c1d781485aa6dd6a320e75daf1064a4c6918a1b45","impliedFormat":1},{"version":"46e4a36e8ddbdfb4e7330e11c81c970dc8b218611df9183d39c41c5f8c653b55","impliedFormat":1},{"version":"370bde134aa8c2abc926d0e99d3a4d5d5dba65c6ee65459137e4f02670cbf841","impliedFormat":1},{"version":"6332f565867cf4a740a70e30f31cefba37ef7cebcf74f22eab8d744fde6d193e","impliedFormat":1},{"version":"2977b7884aedc895a1d0c9c210c7cf3272c29d6959a08a6fa3ff71e0aff08175","impliedFormat":1},{"version":"17f2922d41ddd032830a91371c948cd9ce903b35c95adca72271a54584f19b0b","impliedFormat":1},{"version":"3eed76ede2a1a14d7c9bb0a642041282dcc264811139d3dd275c9fe14efc9840","impliedFormat":1},{"version":"e3cf0611709328b449ec13f8c436712d62003620ce480139fae46ce001c2ee9f","impliedFormat":1},{"version":"8d369483f0c2b9ee388129cfdb6a43bc8112b377e86a41884bd06e19ce04f4c1","impliedFormat":99},{"version":"3fd8a5aefd8c3feb3936ca66f5aa89dff7bf6e6537b4158dbd0f6e0d65ed3b9e","impliedFormat":1},{"version":"a18642ddf216f162052a16cba0944892c4c4c977d3306a87cb673d46abbb0cbf","impliedFormat":1},{"version":"41c41c6e90133bb2a14f7561f29944771886e5535945b2b372e2f6ed6987746e","impliedFormat":1},{"version":"4ec16d7a4e366c06a4573d299e15fe6207fc080f41beac5da06f4af33ea9761e","impliedFormat":99},{"version":"2dbc6ecb8c88f10840240d2da98fc547459fe8cdf904535d12198151a97f5d4a","impliedFormat":1},{"version":"71b110829b8f5e7653352a132544ece2b9a10e93ba1c77453187673bd46f13ee","impliedFormat":1},{"version":"7c0ace9de3109ecdd8ad808dd40a052b82681786c66bb0bff6d848c1fc56a7c4","impliedFormat":1},{"version":"1223780c318ef42fd33ac772996335ed92d57cf7c0fc73178acab5e154971aab","impliedFormat":1},{"version":"0d04cbe88c8a25c2debd2eef03ec5674563e23ca9323fa82ede3577822653bd2","impliedFormat":1},{"version":"39dd9c61bc4f718b56e4ed93dfbab462d47d08af464428d5a5b400367e9147ea","impliedFormat":1},{"version":"4ace083580c1b77eb8ddf4ea915cde605af1a96e426c4c04b897feef1acdb534","impliedFormat":1},{"version":"daf07c1ca8ccfb21ad958833546a4f414c418fe096dcebdbb90b02e12aa5c3a2","impliedFormat":1},{"version":"89ac5224feeb2de76fc52fc2a91c5f6448a98dbe4e8d726ecb1730fa64cd2d30","impliedFormat":1},{"version":"e259db66999453467359d0ea0a125866edaa851c580a5e840f4cac96ce5b035a","impliedFormat":1},{"version":"acf00cfabe8c4de18bea655754ea39c4d04140257556bbf283255b695d00e36f","impliedFormat":1},{"version":"39b70d5f131fcfdeba404ee63aba25f26d8376a73bacd8275fb5a9f06219ac77","impliedFormat":1},{"version":"cdae26c737cf4534eeec210e42eab2d5f0c3855240d8dde3be4aee9194e4e781","impliedFormat":1},{"version":"5aa0c50083d0d9a423a46afaef78c7f42420759cfa038ad40e8b9e6cafc38831","impliedFormat":1},{"version":"10d6a49a99a593678ba4ea6073d53d005adfc383df24a9e93f86bf47de6ed857","impliedFormat":1},{"version":"1b7ea32849a7982047c2e5d372300a4c92338683864c9ab0f5bbd1acadae83a3","impliedFormat":1},{"version":"224083e6fcec1d300229da3d1dafc678c642863996cbfed7290df20954435a55","impliedFormat":1},{"version":"51e0c0d376d59425f8a2c5d775c34cc3eb87da4a423e12ec097fc40432aa8c16","impliedFormat":1},{"version":"633cb8c2c51c550a63bda0e3dec0ad5fa1346d1682111917ad4bc7005d496d8c","impliedFormat":1},{"version":"ca055d26105248f745ea6259b4c498ebeed18c9b772e7f2b3a16f50226ff9078","impliedFormat":1},{"version":"ea6b2badb951d6dfa24bb7d7eb733327e5f9a15fc994d6dc1c54b2c7a83b6a0b","impliedFormat":1},{"version":"03fdf8dba650d830388b9985750d770dd435f95634717f41cea814863a9ac98b","impliedFormat":1},{"version":"6fd08e3ef1568cd0dc735c9015f6765e25143a4a0331d004a29c51b50eec402a","impliedFormat":1},{"version":"2e988cd4d24edac4936449630581c79686c8adac10357eb0cdb410c24f47c7f0","impliedFormat":1},{"version":"b813f62a37886ed986b0f6f8c5bf323b3fcae32c1952b71d75741e74ea9353cf","impliedFormat":1},{"version":"658763e1893aa10322784cc2e8d43874d7093fde48992b094913aaa83cf262c8","impliedFormat":1},{"version":"83fe1053701101ac6d25364696fea50d2ceb2f81d1456bc11e682a20aaeac52e","impliedFormat":1},{"version":"f78979c57dfa739f660c0188293b7b710654cefe8faea38cd7ed13e6152844f8","impliedFormat":1},{"version":"960bd764c62ac43edc24eaa2af958a4b4f1fa5d27df5237e176d0143b36a39c6","affectsGlobalScope":true,"impliedFormat":99},{"version":"d2bb2bc576d9ddfc7c8aa6dbec440b6d8464abeaf46e3a0e4ed65b0c339f7ff6","impliedFormat":99},{"version":"59f8dc89b9e724a6a667f52cdf4b90b6816ae6c9842ce176d38fcc973669009e","affectsGlobalScope":true,"impliedFormat":99},{"version":"a6fad0438acd1d5b8eff4c0fcbe5a3b7810e688f641149f2ea6714e1b8b5e74b","impliedFormat":99},{"version":"4d2887fb8e436d8ea1dbc219b1e714e7fd327b663bfe4537d075dafb8c4dc9ff","impliedFormat":99},{"version":"77f7424c7653ca571b6aad3323a73da7a23a97275ee9e14c04901b2fc3f75859","impliedFormat":99},{"version":"36921e15078d2fc229fe0c76611ab5a0df260b66cdfd5f99e6c76bc3ae9bcbb4","impliedFormat":99},{"version":"d162abec4ee08a8912ab4d4f1ef890f726497b564f203b71bd5a60cded913cdf","impliedFormat":99},{"version":"8603b66aff9d8ffec90b2f515e337c4f19de03945925ad77c8759475168a8343","impliedFormat":99},{"version":"8b624e12fc25b0c5f51a26ef1bec5c31c314a479de0712785c8c4b8e4185bedf","impliedFormat":99},{"version":"e63033ff7522e994e0e1d9faec3fd84bc0894ce885dc933fc70e0528e397957c","impliedFormat":99},{"version":"6ee110da2af8f04936653814badc2df73fa893d4db0b4e1ebac957f612d63b55","impliedFormat":99},{"version":"838a11e68cfb3688925eaa7cfde7166cadf86f9950fed4853fb1923dc098cc99","impliedFormat":99},{"version":"a602eacab7c5a2398b7a4131a4e4b8a5d2faefcddf51bc230286e5286285d70f","impliedFormat":99},{"version":"9e44d5f53a9c293b004d24e6b3e709902419ff26059e0d22affa93462f157d67","impliedFormat":99},{"version":"4d3907c1514d751e3fdd00da4640377dd00756b4e172063f7e2c6eef9f074760","impliedFormat":99},{"version":"e24d8dc9dcbaf8fb062d4ac97edbffba1c572e040d25bf0860dcbccf1e9f3a88","impliedFormat":99},{"version":"1d5968735d6a01be14f39f3709ee729e2e3aae3309c2b7542c601c4d9369dff0","impliedFormat":99},{"version":"0cc9481d549ee09909165fbb9ab12cf1cf5b4f6748e9f8b68dec6b9583133818","impliedFormat":99},{"version":"05a97c8d50bef9e99aaa97149b3239f37b78576850aa698b3fcaefa32f75f092","impliedFormat":99},{"version":"106db9f3b4ca7980ab7744804d67678ea81a76756cdfad8342577e1b2af46342","impliedFormat":99},{"version":"b4bd38e8b0044564d129b0c81ba7d7999a2ed2affe5babbabc87a2d991210f31","impliedFormat":99},{"version":"556121d6cfea199c95472772cac2f719b834be8b9bd41eb6d8d91bf2cb8aef3d","impliedFormat":99},{"version":"c4d5184203d55e125c00257681628e038089ec04bdcc9fccbd81398af48ce45c","impliedFormat":99},{"version":"9cfaeb5d4d823615342550fbf0bf707d38027a8896d080464c6f6434e5bea811","impliedFormat":99},{"version":"c9a0186d419c1a2ac0867c8d7c5f753d068ff88e506b5810ac4b755443cef93f","impliedFormat":99},{"version":"e5276d294771106d9103815911e0bcc759c2b69437b2eaa53ae6ce3b31698f93","impliedFormat":99},{"version":"a849c1aa0f8fbf850658ee098099e30fadec5bdcae322e43d3715b13d28b166b","impliedFormat":99},{"version":"69b82e214e484e7428af5dc522675ff70f05b07a4cdcc168b0de3deb9a74c034","impliedFormat":99},{"version":"eaa27dfa46cdbda4aa20b27881245d5e38ce4dd0403d229c0cbba5211190e3a0","impliedFormat":99},{"version":"49637532054b1f32aca1a2e37e36acb6a063ec145f398bbd806ad4ad2d610b77","impliedFormat":99},{"version":"929672b92ae2eeb40eb1171a5f1551c90b6d55928b8d3c13a119ee6bad25c648","impliedFormat":99},{"version":"018c169aa65c2e199c1256a50229fc2476303a7d229109c76920734533715302","impliedFormat":99},{"version":"769eec6f55b0fd03ba1fc9c2c806ba347d4007a9307cd5e78f8c50488407b755","impliedFormat":99},{"version":"ee8caa32e966d21923391aaf139eae98fb58a865a74ecc3d55950781da964549","impliedFormat":99},{"version":"1965c99a27f819fec1007321018cf9552beec40799fd7bc080c2e64ab521e064","impliedFormat":99},{"version":"f0cd5f360be33c4507df7fe7491388b6890a14844fb1e26a5c779ef0ceeb3ba8","impliedFormat":99},{"version":"58b79e76ac3062bdac3bfa5851abeaf66b7432f2cfd2fa79c969a1d619f31277","impliedFormat":99},{"version":"570742c5ba7f2e8f4b3e6741814030d2a282111a63d42bd40e6e48d5b070e48a","impliedFormat":99},{"version":"e42e8eece168b49b0a95212d709831e979049e583ab50c31f22d7c7863def456","impliedFormat":99},{"version":"5a8516b0d60aca2895ed18ebb5f1bb61fe99dbb99383420c1038679bf258be7f","impliedFormat":99},{"version":"98708f9ff38cc2b2738a82d862deaf190fe50c76256c34d877531b5add891480","impliedFormat":99},{"version":"e61b8d8c4c729e967d332c3c1a2ba7576786d218e21685c47440e02d123f51c1","impliedFormat":99},{"version":"ab98cc4cc649989f185f8e23da9cb2c27847072cd7a071b7c7dcf8bda7f361be","impliedFormat":99},{"version":"69631c578eae77a24486a548df6272e17318cd2cc3742b301c6e374031ce15d5","impliedFormat":99},{"version":"85e7e505b1eb7b86efb53992ab5638253ba698d676397aa4aef68636a0d92db5","impliedFormat":99},{"version":"c523515c0bdc2fbb0119ea564b1952ffc042e6692c22aac588c99bddd89fe280","impliedFormat":99},{"version":"7a8fbf8a1e38dca11ef63c25ce81b0c9cd3a2b75d32b2a1aabb22187a884f65c","impliedFormat":99},{"version":"ee07fa266671cf9ad5522e425752bac7d1149e9d66851058ab1094cc4b475565","impliedFormat":99},{"version":"6fea7054de404b9980cd44dfdd416d03a44477ff3e1c929493022abd7244658c","impliedFormat":99},{"version":"08297fbb15c5b09a2170bacc090f295aad6267f51ad49c836ed9cdec93d57efe","impliedFormat":99},{"version":"adc160518fe54967314e9a78132fe1630341b743acbca7a40366a7118d64d8a0","impliedFormat":99},{"version":"aa0db1558cfdab86a71c88c4369b0e089749cc17dad751e4b824d0b44892ea04","impliedFormat":99},{"version":"a4e4ed7aeebed4f15bfc68ef9e719b154765d523681a69aa38d9f4be10ec41a4","impliedFormat":99},{"version":"79da23daf791a61c15b6adb2c8030aab11d2b96b12fd7cc1381157e64ebc2fc4","impliedFormat":99},{"version":"64e0b717c40a38d507f38117c2363cd582cdd58d971d3d57d413fbc239f6e612","impliedFormat":99},{"version":"64c7a10dbba5405299f30f1ba2e48f680a99a1d9ca56ed3b25fed37802e49f0a","impliedFormat":99},{"version":"4e89358beaee0660a66f27120ce892880fd6e4ff50a20ad17dff711b0531ccd2","impliedFormat":99},{"version":"b49349872646f50772934a48fef4c95ecb328160f60b80d412a9f7210d6ea817","impliedFormat":99},{"version":"58be3671cce553bcbe1236d16c451c25b84f1d0a9fe32bdb70bcd672b8d84026","impliedFormat":99},{"version":"848fb3a35212155e7320e4d412a56d2ef082fd954f281e6a221720906d8e24d5","impliedFormat":99},{"version":"b130f22d08a15bb6c3b47ddf1b1f14ea0def8acffd486f1668a28b4ffa6809ba","impliedFormat":99},{"version":"4a2061c6cd6193f86dcedb3f2dffc38e57fab097eb29e2c857f2ac8608f05349","impliedFormat":99},{"version":"a037be29361879cebb09992466be99c3bf52dd7426986005026ac7c9351970da","impliedFormat":99},{"version":"4f27ea452fe87e5614c79bdfa06075c1d7afdadabc3213299a4597fd005998bc","impliedFormat":99},{"version":"aaac531eaa95b1c4d28bc03bb7fa1d6cf9495ab14b61494ca452514d60133a0e","impliedFormat":99},{"version":"d7442be0f659458eefa72616260b16fca92e97c03e951efd989966b5e7ea5e91","impliedFormat":99},{"version":"fec07695d9acdec37e1922969b4d6625f70ae89adbd4afd7d268e5d523bde38e","impliedFormat":99},{"version":"f3eb5627a5494e0207831df2aebf5df6ec2265b9ef94cc1e3bf2d810f606be14","impliedFormat":99},{"version":"48cf15e70db5b3b6ef026d613b091464604640c8b8272f83c4dfc612498c4f50","impliedFormat":99},{"version":"75d4c68ff23ea1875f4886bb79b273fc4736ebcc92d55c75da0d0515df20eabc","impliedFormat":99},{"version":"d76a111579f9ae213c059df3ea6490fefeb44d501cdb0f18bd9b9fffd8fd142a","impliedFormat":99},{"version":"3709251f4d3f80cc7dbdb0398f4cd1b0fbf1d68b88ac2c2c9a2819c9f4d93b42","impliedFormat":99},{"version":"a9fa1ca3f563a463e3dbc7f08b846512d570450887ae2d144589cc723e3d3fd0","impliedFormat":99},{"version":"c8b8403a54738582b19f7a4f93498b6550bdcb665ffae98a907c91358ffe55db","impliedFormat":99},{"version":"fc8adcb7f270b42bcfc3b22d0b170f0eb1599d8661d15d6cd4538ce053e1b9ed","impliedFormat":99},{"version":"deecea988e1412aa38b360b0fb071fb86bcaf5c94ad1b1398663c8dd4871e6af","impliedFormat":99},{"version":"e2d7e3f27356ab2be630a4405e3f60499b9dcf466775932f371c7ad30d305f17","impliedFormat":99},{"version":"20035f181bd971cb94f5742bd91131b79c1b114706e20b2663d2c40c055fa53c","impliedFormat":99},{"version":"fe5af5ee1bfb821694b6a026c509511c6d8540cdd285131c81a115b7eef56e11","impliedFormat":99},{"version":"54442f15c1d35a773cbcaeb7520e0e09ac991a1e00d6be72d65a078288e6dbe9","impliedFormat":99},{"version":"e41d8da000ae9c3619e6c16606af32b3d70f933faa3d6f10d72563b5b0f65bce","impliedFormat":99},{"version":"124c22139ae091889925c5d1ade97be21890a5135d98b17d96b3c6f382efd196","impliedFormat":99},{"version":"c36c30592da0b0667ce5c4215b660ab5370b21412320be13115e9eaf22987c57","impliedFormat":99},{"version":"91386cb2bf54cad36b0a7b9ea9790afe894050c17ed40cb2d63552fec4961e85","impliedFormat":99},{"version":"d77786dffdd483df22bba299465b01ccc0b48c3bd41b0af66b43ee9b280629b5","impliedFormat":99},{"version":"4aaf5a0f504e99332220b7189fdd94ed71c1f3db7225bdceb6148b985139fa0d","impliedFormat":99},{"version":"8ff5f071f877ffcb31d1476c59d4c68ae05c0ad9b022d0145970c7dbf5e40214","impliedFormat":99},{"version":"a3fcdb8949307b5481b66479a4168fafe3d07647cf91b856f22e4556bac78df5","impliedFormat":99},{"version":"72fcb3b2ebe9102201635cd731f5e655afd680a7edcc5804435827e994948700","impliedFormat":99},{"version":"9d9dd4371e7e7ec4968fc506f7dab3303e70c4baae96cedbc0f25fd487994d29","impliedFormat":99},{"version":"9c3033264cfe0084b80cce45f90db8b2af60ba8771748a22d14e6a30bc467cc2","impliedFormat":99},{"version":"e9cf28fb0bc429b94cf4c0069954edc5da874eafdc5c967865e184eac9a3b5aa","impliedFormat":99},{"version":"bcd73ee4dbb40711d57b4555d222453b3cbb3824f7fccdf355e43e6e35a9a4ab","impliedFormat":99},{"version":"12dd3b0dcaac8d69f273b9f03d316eb29cdc4a35fccef29583254310505d32d7","impliedFormat":99},{"version":"38077de13fe290c3fb4fdcd8f426c260c06e7308783bed33e5ff8921dcae5194","impliedFormat":99},{"version":"5ec96b9e4148f817ac89052509f6a9db1b434ef37b634c9cfb54b0be3b81f7f2","impliedFormat":99},{"version":"bff50b812b9a6bdae45bc5c4025eee90a6d37516f5c473729b590abacdcfc00c","impliedFormat":99},{"version":"e102eccbda45533f54617e5a53b143d0e44aea1f251551eb6e237085ece23806","impliedFormat":99},{"version":"f12b02156d76749c81e4b83185d3b814b8352f5e21ab5b7284e2eea2f1b17a90","impliedFormat":99},{"version":"4c612460e5871907fd0182ae1eae612b7915609ca78139ef110ddb4e1af605b6","impliedFormat":99},{"version":"e4519b1ad63f51fb64fa0db0fc963f83ffba0ce449693c3b754a2315449f7cdd","impliedFormat":99},{"version":"6a8106c44c9de23fff7e01d74805857b5702da8c72f1391a38b34460063aecc4","impliedFormat":99},{"version":"80492a9617e654e7fe8e27bab491d51e1548ea4bb9f8c51357267a92a435dcef","impliedFormat":99},{"version":"89aae61ac71e83a0f76dc14179cca84dbd1dcb6f7dff0b112dc1bc6b1c887800","impliedFormat":99},{"version":"b43a1d1eb7fb5d8b3c7e99c020b4313bc614de10665a0cf26d7d4bb78ff008ca","impliedFormat":99},{"version":"8f1dd9a724520513ceb0014819e9169525bd9a020c74458e85689cab061a1f7b","impliedFormat":99},{"version":"60b6250ba1516b1eb863514b3f1ae52403f781eebb5b798ad8765dea5dc79dbc","impliedFormat":99},{"version":"61a8dc1eaeb0a50f9304858e79a4f1a7b72a0901a27ef046e9465911ffe1ebec","impliedFormat":99},{"version":"f75492d33e2be3eb66f9fe7f01c8760fd18505d724e6fcd687f6c2e806b40046","impliedFormat":99},{"version":"b5e40372d34e1f0704131da3a8526e12948295e64b4d05a11e1fd8570c411e39","impliedFormat":99},{"version":"2c879cf6a84b92061c13bdc0f4abdca88834242ffb7b0765176eb44a0602a762","impliedFormat":99},{"version":"da67be907089d1d406cac1a6286a4cea9d430e099c34464d00e7d7791bf2d3c4","impliedFormat":99},{"version":"d3820ad364704a21b13bb585852e968e3184b4662b185c9b53cd30f1d4d00510","impliedFormat":99},{"version":"8d7659793df95d53e1757de966b7e1c1fa809dde2c02fb87e53df19b124924ef","impliedFormat":99},{"version":"2b384d6463c4ed2cbaaf58ae46a17753a2b729c0d17fe346265f39901a89c301","impliedFormat":99},{"version":"f865cf13bb812986c308c80ec8d536356f91addd45a9f850968eac0c740c6528","impliedFormat":99},{"version":"cb35c26fb8933531969fdf198d70d91fe10d445028bade6632dab0e884573b79","impliedFormat":99},{"version":"cd6b5c72ea7d660affad9cb41859046e79c4e363c22700a6f86a7f7578ef9a2a","impliedFormat":99},{"version":"5dafab1e5e9ea9835109fd2766b154c1499dd17d935e4ff49e70ffebda3032d0","impliedFormat":99},{"version":"5db698db35aa63f4d2debcc34101a5f5a2d01366c3f15bedfa9050ca85d9aa35","impliedFormat":99},{"version":"c55c432c38692edf9f918f385d536c43073cc8077ff44850091442722bcd01a4","impliedFormat":99},{"version":"17a295c1b1dccb8cb4f854bde5ff33980fef1d883c6d481f8593240ccaed60ca","impliedFormat":99},{"version":"47ab38c7c74019bd347aa1c812e6eef86d2163669e50242cd27d0de30b6c3fbb","impliedFormat":99},{"version":"c8cfded6c4fd715b52de664d21931bc6a55b225894f5792d05ae29568c623def","impliedFormat":99},{"version":"1bfe5cc8bdb660318b30da6f47460605b06f196335705af4cdbb510ffd8c8fae","impliedFormat":99},{"version":"d4aba31dd41819bd87d70843438a935ddc142c0eb1d0cdfa164e5dbb9fead30e","impliedFormat":99},{"version":"9aca4a305574aa60617b94cb25d8d585fe169ddf92f7dd0197d89d636aa1c19a","impliedFormat":99},{"version":"d23800041ae0858327ad3b47c3876e0191c16061c33c0550fbcff60b695d7bdd","impliedFormat":99},{"version":"b809557adda13b9bea2ce69cea6405d1345d85f7d029a28d092fef440edf6141","impliedFormat":99},{"version":"b9f39d0dd2bc56a387290ec42a094382ce91de1258a6f5f3b89655d7aabf65bf","impliedFormat":99},{"version":"c8e72190cc41dac064febe56f97bc89351be5a83832918797fe8c36cbb604fe5","impliedFormat":99},{"version":"250a161356fb615263402697679460d0b765a249404a78125168d3fddaf9d090","impliedFormat":99},{"version":"41d93ceb853cc53debd13fd440e4b71f089bfec10768811668db17e7df55a3d0","impliedFormat":99},{"version":"4fce10097a5a81c6811ef81adfb03683518a072d4c0d87f5347d4d7b4400cbc3","impliedFormat":99},{"version":"f5decc77d27c3a64f0d38a8ed69fc60159706b12a7f5ddcfa574ea29f0e59f80","impliedFormat":99},{"version":"6d93506d3159b47c8651e353095a333fad5211363b5dd2aa48dcdf9e9d69871a","impliedFormat":99},{"version":"8289780f7f1f94951d01e6c4aa2bc9fee7720c9807fd5dfb77e6a8ada8242cb6","impliedFormat":99},{"version":"cc52591d128faa36c09f3aa27a5054ed3cbb651331095380915cce77622f0fab","impliedFormat":99},{"version":"a39c28ed9ee3e52c975278adcb84d56cd0c3ac07f339481219c67aac93b78c32","impliedFormat":99},{"version":"acf12bc7ab7f2521ecc517b2ab4cb61014a384f16d75809902ad7cff8696169b","impliedFormat":99},{"version":"96fcce579cd105b23b74a6e39c9f62d478a0e4cc88f51cce130c106a92305603","impliedFormat":99},{"version":"bf58326ddd44ea8c9e3377e6355bdcfa46b2157162110c692b3014adebdcbbfd","impliedFormat":99},{"version":"28f4cbb0f2b77cdaf8f638286cc2844669a496f687c2fce10f9f8ff14e407fe9","impliedFormat":99},{"version":"5d5a15194cf1e9bb670d20624d80474368d2894d46d3196ec7aabf80acdd0ea4","impliedFormat":99},{"version":"e26538b0d04ad1ea982c6ada5dfd1f340e98137cbf0d57075e754462d86f7611","impliedFormat":99},{"version":"99a12659c5daf9dd6ae79d11f8df6d34c5943c6ebae7f424e21cdb963260a91b","impliedFormat":99},{"version":"473c6060c3923d6beceac97cac7a684113090abb5363f50915ae0fc29492c928","impliedFormat":99},{"version":"bb64643948ce89cca03b8252ac01f3beb1e504f2e232bdfdb1cdc81da5d4687e","impliedFormat":99},{"version":"c4239abcb2ff0e4fd1a7ba09e88986e718d4612d13929d30b4d02779e3d87aaa","impliedFormat":99},{"version":"dcb610f5aa4b8627c9676839320db26f357d9ec75d31490892a1fd73be1b1314","impliedFormat":99},{"version":"7a4e7b83a4e920dd574f8df7d3bdab8dcac6d31226fa1eda728628508188a977","impliedFormat":99},{"version":"eaff8a935d00b2586318cc5c3092e59bcdb61b687415978f8adc78778664ec72","impliedFormat":99},{"version":"6d170802c45620c12a5ed32aaf2b239f1c3f3cf76aee3a2e955cff1b6c6144a1","impliedFormat":99},{"version":"d249734a690bb801bacd2afcc0432b5be224dd91ec88ec6ec43848c37858add5","impliedFormat":99},{"version":"3a0d55c5d62914650d86fb0402277a1fde4bb25388c15734bf3c4a9354bf52f6","impliedFormat":99},{"version":"6789838f6daa7ddd03fa4be97bfcc6fe3449c9a04a7f4c9008c508898124bdf0","impliedFormat":99},{"version":"b4e1f8785a623cc58e37ad538b9a5de1de1218e154c9f5a0c03eb18a2de9bcb7","impliedFormat":99},{"version":"767bee06d602aa9510358818e71db67140a3c2f056566e41be2a079a29c41979","impliedFormat":99},{"version":"206260b1670649a465319961ee478ac2fd1e7852259efb9e04112e4651fc9544","impliedFormat":99},{"version":"e8de9704319ec1ba81145df7a6c97a409c572fe5ce22ad11a9ad6737807ae620","impliedFormat":99},{"version":"747b9ec353a6bb35d732e4691dfa3ae8e4406971a08f4199cb2c91003c03d0de","impliedFormat":99},{"version":"f2ca59e16388b431b8e912ee51d31e192c4792bd4335ae4ca2f59af622dbc302","impliedFormat":99},{"version":"cd631db9f450f9a18015c23ffde0cfd030e44ebfe4b10f5c72803de30ef0e8fa","impliedFormat":99},{"version":"63fbf377cefedf70ed0aeae96eba90abf65c2e92679c459b325b2bd37cd4983b","impliedFormat":99},{"version":"e23f60fba2fcd179fc2152ac4f6f3498059f21c76bd74e64147fc3e1365f3311","impliedFormat":99},{"version":"78f304cb1217b823ebd9b79dd9b4adc75b0d915432456afb140fb2188e1bd748","impliedFormat":99},{"version":"d8425128980a85913c1f5fb9ece9fe237a4e70eaa9845a5527995c2d40b89331","impliedFormat":99},{"version":"39b5d3de3c64f6b268cb843ffa399e5b0d8f17c3f65be35b05b9038c987346bc","impliedFormat":99},{"version":"9069f61b6a5eb7844d89571ae96dd492fbd5f33534bf621abf3bf29579f0484f","impliedFormat":99},{"version":"468caddc2aac962edebc1d3b8a5a9e9a173b9e75d36d84dc263502fb2e49811a","impliedFormat":99},{"version":"08b0911ee98ea9f9f4629fb6c3ad2f52a9a5aaa0aa9a80a7c8041b8c27e8f69c","impliedFormat":99},{"version":"ca787195f6134b4dac541a629f9db12a30162adf5467bd343f37dfd562b7c329","impliedFormat":99},{"version":"7dcb30baed58d49e6bb15bad648185d3c198959e7a3e9f063d1838a8fba7c91a","impliedFormat":99},{"version":"ef8dccd817a571ec3fa073a965d5d97b785cc43222c7854121ba31fa97d2bdd5","impliedFormat":99},{"version":"3a52eca069515967c1b43594091abc98d51004c68011b4b7d3335a830a19e906","impliedFormat":99},{"version":"85008e5bf42ef9dc1c4b6924c78c8b911334cbf91a7a24ef70efadd9fa88ea62","impliedFormat":99},{"version":"028cb9a8ff4335a9b239b17cd381d61b65af2384fdb866c47200c6beed7674e3","impliedFormat":99},{"version":"ce1ed5f9d243c8378bd4099ca7258f4492b9c41f7764af07fda38da659f0fc57","impliedFormat":99},{"version":"d6e00f06be5750686d5646ee1ba49b73050968d7d68968e3c815d24a08c383d1","impliedFormat":99},{"version":"1c0472bc9182a884d74d7e8f2bcc46d34b6b16342ba3cffec03be817b2b9b042","impliedFormat":99},{"version":"c097ad4cab7d86210476ce41e964e806c9946aa231bab21cec2aae3ff2795978","impliedFormat":99},{"version":"060d300e05a630bca1752385d12f8c7283bc8c572e4c2e797abd51019a0206c1","impliedFormat":99},{"version":"3e2bfc42812d3a879308227c956b958c0e5256a57c3549da9ef982194951a97e","impliedFormat":99},{"version":"b158543642d5e0d7d86926e135c3bb618428b65aff3cfecab549b04725469f5a","impliedFormat":99},{"version":"c6abed8a1c50ae86892236bf08e5890798b939bcf263a7b25fabbed8dbf70b07","impliedFormat":99},{"version":"2aadf562886279ea28b6b469b2396c86f54a6e80bf8427dd895218e58b4bfdf0","impliedFormat":99},{"version":"e6b66ba6f695ee96ce5ad8e0e39bf2c5630e9b6c2f7a91eccee70f8ba1a82c00","impliedFormat":99},{"version":"af8546e25450ee35e8b24c5f46558c3f0fd7c92cd6e8b6024036d2918994af76","impliedFormat":99},{"version":"d96f38005197dd03404a282b2c2f399c845c233ec16800bce394000fa5a1a727","impliedFormat":99},{"version":"1b2aaf0cbd2b9c6592c40f476e6053dbe52edcc9cc96dbe03db1ae8085e50e7b","impliedFormat":99},{"version":"d7d173a78b314a1749f45ef644f1baa1d769a64e72dd1a225990ab858279a1e1","impliedFormat":99},{"version":"c919340f2b125d0fa4e9179cc9b53c225e852cb70e321576d83a4068c6d7baeb","impliedFormat":99},{"version":"f2ab946b2481f725ebb90f42504db6c43bb967b08b6e6c7c84ab4f6abd3f3890","impliedFormat":99},{"version":"b0d96987e7b7219db0af2caebe36fb0470fb351d532ab483582032a1e38696fe","impliedFormat":99},{"version":"91a325d80ba995754a3a8072dbc20a28da4b84387f09f8f4bd549bd174e83b82","impliedFormat":99},{"version":"f9a43d9390efe0c20d22ec866f6f892c2a1e338c72a512809125f9df53cb92a7","impliedFormat":99},{"version":"b73d2f6f38ca4c1ec4a7151cddfcf0f144bf4364b2e81b082e35ff5361c0f57e","impliedFormat":99},{"version":"7801cae57a7497244c5243ea6f549cb3a4d1eb65c08268b09e544f902c48cf22","impliedFormat":99},{"version":"a9088a68eb7057a790e986cb60835dd190691642ea759e0f249ca9a555e6f4df","impliedFormat":99},{"version":"561e83c572ac51be3ad30f2d52e4e21379dbb7fd06cbc6eb0a8d4410741faa16","impliedFormat":99},{"version":"948c68479773ba7430f49d9aca11a27cc634ce921beb0ffdeeec60e3ba175a3d","impliedFormat":99},{"version":"2bd820079a9688d1b11fdbd4ae580563fed1edc6905d8ec08dad853766a38fa4","impliedFormat":99},{"version":"66b7178c218793c116e9b1a9871dad446f51618fcaee8730d9a3462a2f99c2f1","impliedFormat":99},{"version":"f20eeb62635edb76f3bed0a0341dc1c543684d8c2e280192dbaa9d815a2b3e03","impliedFormat":99},{"version":"f68ee6b0fccf8dff34d25d155ab88a1a699be67beaa3075f695f130f9c20b975","impliedFormat":99},{"version":"5aa560f601510ee8bd0b34b2d6a92316c46b43bf27c582b168242632b1613aae","impliedFormat":99},{"version":"0d3b3f2f3c92e2fd9b56d75bd949c74ccd3cd2d6e89a553e59f58568ad90dd78","impliedFormat":99},{"version":"c09eb94f5f890522952ce366442a1fd12052bbb76e84a6d2ca87238307fd5d4f","impliedFormat":99},{"version":"1460af367d2f860537a9dde995cc06d0cc2b86c5761b2f4c0350840caf01e7c2","impliedFormat":99},{"version":"a02d3f1988da099c920b3209211840a299db1a3c20d7aba929ed7ef0442f3e6a","impliedFormat":99},{"version":"75aca9b08ddf95a78154a8a261e3ecef1f924ee269348687978d187b872d1535","impliedFormat":99},{"version":"18e61650cab316550f346f688c1dc7933cb3184cbcd88407a77748a75dc844b3","impliedFormat":99},{"version":"f17d24c6f8d381e61c99f13e4f38849e72b72c44e59be96a97dd212e2e6679ca","impliedFormat":99},{"version":"b64b8f2b635c69a120183f741ef3eaedddb2e4b021468c62f780c6ac287deef1","impliedFormat":99},{"version":"11e434214064759b5c95eb4f026adf239b1bf4d79ffa2a4f00b398111feea794","impliedFormat":99},{"version":"05d2836490172eba648524e51117dd5dd98c5438aa89e15f6890c9562f8b4004","impliedFormat":99},{"version":"f2d58e2a95faa9b9ca10bfd9333a445ce6eea6f2a1504fc7c8c549018adaa59b","impliedFormat":99},{"version":"9d18b7270255629a0e40053a36d9cfd4c765c3df73313422fbdc077e6f411ca2","impliedFormat":99},{"version":"32b791692403665af92cec27daba20c02469748e2e0602d3ae96350ee08d2a6f","impliedFormat":99},{"version":"6332e40859f83f0446c33167825f4436e2ded25edc7974a5b42c7f6a59124f23","impliedFormat":99},{"version":"50ae56aa0973ac45d8176c56d105af95cbe8b6301db6ff5fc3512b4c684b4255","impliedFormat":99},{"version":"622f748b9de2b1a65392aeef2e18c6dbb372f3fb82d8e5ee55234cb9763b3fe9","impliedFormat":99},{"version":"a6150b170cc88ac46d7005318447bd161982c091e0224dfc63dc2a8cd6d12f20","impliedFormat":99},{"version":"24f2b131e4b2d9aa929c24e68328984de1b9ae0bf4bceba5ee40e6cc5b0bdc67","impliedFormat":99},{"version":"d7fe6edb96da75ea3fa6b76a8613e61d13aad20b7462b42f4f3492091238b215","impliedFormat":99},{"version":"5e9ba2bfab8ce1e5f94a7463969a64ea6c22d31919faa888ec940dd770af1248","impliedFormat":99},{"version":"a2b13db4828108b2406f879c2cb93d6a497fe936aa14f0f3d3dcf9c9ed03f75b","impliedFormat":99},{"version":"b533b94c5ce70318fde3772b3221d46941d2f359d81221da079c2ecd477f887c","impliedFormat":99},{"version":"a8794bcff57ed0c4f880a948f4b85dd1b22d925ba090871dbcd88b35c5ebe968","impliedFormat":99},{"version":"e2f77b057053d31d7fe1a3648908095bf987bd96f73855889b5ce9b7a8e250ec","impliedFormat":99},{"version":"c897ceccd46b2c55f8aab887a246417b0520143e8a96fd26c0c84a12ebfeff25","impliedFormat":99},{"version":"b762e986d91311985863443a278ce6920e3541312338a8b2ff5026644f55cc52","impliedFormat":99},{"version":"d591d1559ae4fc82c4c582ce269b6023a0caac336b245b78fc556a9a37a60bf5","impliedFormat":99},{"version":"9a133dedbbd96d3415cce1bdda55f08ec1ba38bab7e7139aae3afcc56cbc070e","impliedFormat":99},{"version":"1796c4fd3085ac25f634b30378e000e1b985ffcb2f04eaf9ba7c6c2785500308","impliedFormat":99},{"version":"ceaedce2f9989592a1f2bb970c679c167e8a3b8973b046e1aaf85bccf9859cbd","impliedFormat":99},{"version":"784e9840f78ca32d9f8d6d69f3b7b5a955b9cd134fc283d84e7777cb63276d05","impliedFormat":99},{"version":"c48e52a9c4c8c3cd841da9cf35f2a6574ab0c45a84171c075ca9c6cb6b715768","impliedFormat":99},{"version":"98afdcae0697df3fbebb0d9cd46a4865abc9c47378cdd022063ebccff58239ca","impliedFormat":99},{"version":"135e72dd70117b78dfaa72723885feb45b296f61bf60cbf9eea7726bda03c154","impliedFormat":99},{"version":"61c43c4ba9a7ace834e443cbfe4c7cfcfe23b6a81505cc0716564fdae9597e3e","impliedFormat":99},{"version":"87f4c6dd964ac87d6b45d5663b917b74ed83789a232bb9419670a922913aaf30","impliedFormat":99},{"version":"7c901df77ab9b0b7e932042aad3629729eac81157aef01e377aa7eeefd9d8f83","impliedFormat":99},{"version":"432e8de8444fa333c21e5b427b3cca5d2ece5177043af26014a87a2de779a8a9","impliedFormat":99},{"version":"b0f1373cb8fee14b5a96c2083d9e06aa5329d9329f1945390c3da55b0e475612","impliedFormat":99},{"version":"6a07210d3945b68bd25158aea4538e8fc45c8073aef4f18a6fb71fc4afde8e16","impliedFormat":99},{"version":"ef608b53fdfb8ef2ce08eb30f411c1c1500c4990541763b48d041fd3ce970676","impliedFormat":99},{"version":"9c9da2b7e0cc3dbc5323d17420ffa7c694b9cd635f7928670f0821637b1efe54","impliedFormat":99},{"version":"9dd18f8953ad665a1845871c0bac9a11ba128951f4481e522842d8a7e7999fcb","impliedFormat":99},{"version":"618b4ae5336a47df468d4f71b3884048f5e6e7bf7ecc9093b98cbd7b18daabc6","impliedFormat":99},{"version":"7f97435638b9523edb4870b4e805088108d874a777172bc8a46caf63c6656f99","impliedFormat":99},{"version":"31ff93b370bb6c701d287996b955c5ccd063360f363fef206d60a9848a48e3d2","impliedFormat":99},{"version":"1934c6418bd4f3130e7a98e8e4b701c383a301ef831e767331ed2e544965fef9","impliedFormat":99},{"version":"69b49a4e4216cbcadd09d3d8cc11d224b3c6cc2749ead447ea1a1b514b748133","impliedFormat":99},{"version":"2bcba29ee9cb7c86e7cd486a1dec3274d0aa3a14847ea6e84eb7b117d1210271","impliedFormat":99},{"version":"489e5b3590d99830e9146c61dd810fe0305b2c580d9e912c1e69ca84858f6a6c","impliedFormat":99},{"version":"dceb4c71cb4c299f79a784e58119d7788286bbd1009e89d476aeac26cd086763","impliedFormat":99},{"version":"e5d3ee84524032a0fe1066cb9cb38dd78218f9a496ac335aa857e5c1c801a86e","impliedFormat":99},{"version":"f41940c36a1a760593e4e214bd6eec3ee7f90cd934bde0c2b1caa430d76bf659","impliedFormat":99},{"version":"7611726255029e649e3c2304ae36bc8a34501823e145c708b35b99e988b677ef","impliedFormat":99},{"version":"6b246b69ee26df19a7fd044a3bc686e99b903284695ff0c3a232baecfd055499","impliedFormat":99},{"version":"b3fa4ed7d7976d27aecb6547320508c949cf9c6503f8046d74c6d74cd42cea83","impliedFormat":99},{"version":"8dc2b342bc7ad0e949723a89955147d942020d1fd42656d08e87a2302b757d7d","impliedFormat":99},{"version":"6c7c15055a23e2b54f15113daa60909806439d168f0ac4d172aa733637978e52","impliedFormat":99},{"version":"80cc3ff6d31c4235aaf2f3cb303faba93ee6be651863ffc3db33433ac779db76","impliedFormat":99},{"version":"665243d722de2dc95ca2351b6dffcceeb7a9b2bb881777b9771ab55dec4e32c3","impliedFormat":99},{"version":"49506ea016a6f383f5d463b991aa04f1e05ede9d82c61b78080a54f5c6c67ccc","impliedFormat":99},{"version":"1a1587ceeef503cd8b5472cbd745e845d1d89b329af1fe5dde0a34dcc7e11d3f","impliedFormat":99},{"version":"f372b58d2371a40a6a2336564cccdcc09c8516006afccbe23d524e9b3e6b0b50","impliedFormat":99},{"version":"234bcd30c9ec5b0485e91c5ad45409fd856f829e8fda76396147593f99ef001d","impliedFormat":99},{"version":"1bf2a90865d536fda72ea3686c9b18219d1e2582d8ece7060a3a242aaa9dc7aa","impliedFormat":99},{"version":"f2ce60764659e04d7daf572edc3dea68602ac09c4988862927167a30ac2f7b40","impliedFormat":99},{"version":"1e9a3fb05002f75b388a8a1dba9f05d564874bd06cd972f8a946840c8df01364","impliedFormat":99},{"version":"616f997335616ac58b0ca09103653c5e3f1677c7a4a34808abe5eb7836db0d8a","impliedFormat":99},{"version":"8f1018bc0bd737fdd70993e38b8d9e1069b6b1c1dbb0097c41ccd7279b57f55a","impliedFormat":99},{"version":"1f7e26fb66bcdb08484fdb1b65d379ee85d1b1a05264d2cf009f84318b4aa678","impliedFormat":99},{"version":"f72bfaaddbd122d6f2aa97df6a2f2f0caf5e0abefeae7b27d5635237554cdd5c","impliedFormat":99},{"version":"2e1a8e0777522f86ad6503c2082278c4d4e0b09259b0ad4323626976800d6806","impliedFormat":99},{"version":"d7989d7063b13e494a39b03e0ec3a5e2542e99bef41d7f9b49547e39df419747","impliedFormat":99},{"version":"26d92a20cf51acab25834bae098abfa7f6a26c2a8edd4213a880ad8c555f703a","impliedFormat":99},{"version":"f3091dd83c77ff308499705a785601faece1a49863a50a7066237d4e92fea04e","impliedFormat":99},{"version":"10b207261c316bba4a99ce037c8d40aa04e4e15e183d3f87ed7c6793c53ea9ad","impliedFormat":99},{"version":"eb79b8087e892147c0c0f44f5e7bd88c9999c96665136c21b179a7b7362a595b","impliedFormat":99},{"version":"c9ae9256eed3b3f360cae3fbcccf955233ad90bfe0cfad0f103ca3bb85de7044","impliedFormat":99},{"version":"bb3422550b34643170b845a9c8f4dafbbb4bed983a2180b7bf1a2d8fc1bfb767","impliedFormat":99},{"version":"0bfe62549a16f0ac4743d7a031ba321268a6e4b7c71bb394bffa745ae2c84b0b","impliedFormat":99},{"version":"4ad4b6f3a80c526f51c498ced3e30fed3ca33780f330046e18c553f945b51e54","impliedFormat":99},{"version":"b50427c14921a1ae22a6eff321064be09f82d2f99bd3640946bd517275fc0be2","impliedFormat":99},{"version":"86c5374ba226e809c60fdd4aa7ab64a80e1f0b32d6676edcbfa29bcbf8b65b47","impliedFormat":99},{"version":"c10ea70475948589ac588174d5cd22c6ee70565cbb46e840567b03e1df6a9255","impliedFormat":99},{"version":"4126e5d2e94808449564fc8899b68ec0bb361d00b156a2734718b687ef5dce13","impliedFormat":99},{"version":"47f2dc585b8150c5256731c3588abff64ddd707e6fa9103c42e8eb6f5216b291","impliedFormat":99},{"version":"56553d8dae36a4d29a912b7d90b99e89e19db31a2cf466153e02e518c2eed92d","impliedFormat":99},{"version":"d08c388e022005db246a56c7ad6747731807063f99bcf5a86da1fb7190cd19d5","impliedFormat":99},{"version":"d9b82403377511ff2d2b2273765e3046dca75fb6471e142f8843d1ef4ab6701d","impliedFormat":99},{"version":"5c196ddf7282a96a45224c103f3a49bc7a8de31c5d6ac8fc5791c5bfc8abda7a","impliedFormat":99},{"version":"29adc3c30ad4c07b571b7cf28a4a17be302bf51dcb4111ac6d4346b29e6f3e45","impliedFormat":99},{"version":"7b9a892374d781d2a7e2a4d8f89f866277913c8e0a7703c05f9d38907f9d2b53","impliedFormat":99},{"version":"278f73a916427e5f1bb9593de57347cfe37d06b2277be2c307590be7922789a2","impliedFormat":99},{"version":"81c67711d392d5ab7e00b7d06ab91418e451399b1d2b0ae93fce5040065c4255","impliedFormat":99},{"version":"67d125134a3f599cbc256843a07c5351d6356cdb5c183dbc223ec6eb30197508","impliedFormat":99},{"version":"21529df6d5b1968c624352ddff328a5d78d634df97567e967222651cbf527307","impliedFormat":99},{"version":"77bfd4eec7d3f787f1e0defd19334a2d9ed9477648db8dfeceffdbe5b0cab336","impliedFormat":99},{"version":"87970f078004fb8820426b99d4da3fc79f695471885541fc77cfc892b80b0067","impliedFormat":99},{"version":"bbb1ed873062b93d439596d6330f29fd48f658e6bbbac5621cee80b2bbdf026e","impliedFormat":99},{"version":"5db82aeef514204d924b85f6aa881fd82a52c9e6faad94eb7296411ed06f7809","impliedFormat":99},{"version":"33330e7d74af117dc9df333d316637acfe2a26642a8954d58b3e88451ee8f497","impliedFormat":99},{"version":"03a9ace084ff2fc3b9dfaacde474b905db9c5e864543e6db3f9c44a1d7a43055","impliedFormat":99},{"version":"98d7cc6c9ebd188e69f19a799e646d62e691d769b81780d82c9e707d3bffd20b","impliedFormat":99},{"version":"c0a9c77d44f515c0729d952fd66f27748bf3f4197a9ed98294565880c7882772","impliedFormat":99},{"version":"c0af90161ff3f25a95d11029fa4f486f3a541a00fcd026c9d010b662695d7521","impliedFormat":99},{"version":"64570d5562fc4741e7eeb24c60757be98c2e58aa74484118bce4df6ac59a8651","impliedFormat":99},{"version":"94b5161d14dddcdc370617bc3c3ae0ba5b181a2e312b9570e992f76e8ad4135a","impliedFormat":99},{"version":"58fb9077c1eb954daacdbd52bf831915076450f39888cf4edda714bca2216042","impliedFormat":99},{"version":"613a0e8239ed1f14aa4729cc733d43a0e1f2a7f2f7875af5215aee55655b6e22","impliedFormat":99},{"version":"618cea80bc8c79e91decb999d7bb5bbf6928133db9bb76a8f4df19a4d18e0cdd","impliedFormat":99},{"version":"aec18e32a40d13d4990cc0b2e505b8f653459a27c8b85b3743fa98358b03bcb1","impliedFormat":99},{"version":"73739f40eacedc63d85e344e8ecbcf2a291439ff9466ad0e1e8f4edad56ccc65","impliedFormat":99},{"version":"ba85485f6e163ec59385259ae7ee5be3167dbc092b0aab77ca8621ba2942f43a","impliedFormat":99},{"version":"c1747451983fcb7eacc2e6ddbc33024dcbd05f02c3b42f3ef85403aaeb84c35a","impliedFormat":99},{"version":"b6e7fc2eeab5dcc3f7aa96294479474b8d584f10a05b5f473638574ffaf914ef","impliedFormat":99},{"version":"b9dffe8c2cc3ea64e6aa81eec0b7250e4dbb9093ea4b296a249430e15410ad83","impliedFormat":99},{"version":"fc0b155fd95c7ebdc4acbf0012f9afe5cf3c8500f691efe874790de0741fe5f5","impliedFormat":99},{"version":"fdef563856017d9de5afc2e27ed3f8561a59711802123f6dc4cde707e570d8ba","impliedFormat":99},{"version":"34282efaad54b2b67fdcc479f19d8916ced7706d4a2a2150fe6ce495d343e6df","impliedFormat":99},{"version":"619695efa4494df83ee77ed818daf837a842ebcb93873b2024f19072b6d18209","impliedFormat":99},{"version":"4f3be5c128a12ebee37fafabd356c9bd5da5e30497b552df06a4a04523e2286c","impliedFormat":99},{"version":"94a501970c1926170fbea64d103b71780e4a74c26a96d2f081e258d2272c7010","impliedFormat":99},{"version":"a9e51a219e7a4b180e553b2f0b80620198f94fd00813b571483053b421a3a423","impliedFormat":99},{"version":"4f8e05a35f853f4a6f76169db8bcb2d25fbe47e1fe948c2545ad47111bcb641c","impliedFormat":99},{"version":"f9013dd3a5f8a78f7be9f189ceefd0caeb07d032d73d06edf5d323c5c012be06","impliedFormat":99},{"version":"fd5fdf9cec63cdc9b057589eecd950a4c00835f2c57819d4467cb90afb7ceebc","impliedFormat":99},{"version":"07f234c3b2d8259a3c8e043934e064c1d57c9b6b870bbc82995d63150658cd2d","impliedFormat":99},{"version":"70537c49ad0ba23281776a451ec0e9a3124ce0aa6826e7e2c71f2048153914e2","impliedFormat":99},{"version":"7d1570bc8a51259f43980b1e1bbfec62edfc8e56bd75a0f9f5a541df303beb2a","impliedFormat":99},{"version":"35c0302ecbaba11503e339c8d6a14ef99c33bebe45fe22348a51ea1f851f4753","impliedFormat":99},{"version":"7d0ee70479273910f4998d3db9c624cc54a7ceec1f2fc32aeb5dd1da26cc6ecd","impliedFormat":99},{"version":"ee99391e7c005b9792ed1c4ad78f63d5612ea248121435e2f19cad13cc772102","impliedFormat":99},{"version":"a63057e247853b6a27b900de357d3b2cbbb0205a746ceeaf1bbb08b53d37a594","impliedFormat":99},{"version":"54b715e3569938c71fb6ccd89b5c9d2569c67a160bf07e395afe71a8c99f6719","impliedFormat":99},{"version":"6c51831173ccc1a13f0b2e7cec9c492474ba762a67fa729f59faee88e5fef2a1","impliedFormat":99},{"version":"58f36965de212113b644068e12226e4ec4f3dc11aa8acff4bc0eb506fad853ce","impliedFormat":99},{"version":"6e280d9e7f99a769d91ea5f242404d32caae0c23241598b4447ad8e2f651d0bc","impliedFormat":99},{"version":"f91354f5e4bdf93914bd4d8d4c513a525dae7cc58c29374e602499cb59b45792","impliedFormat":99},{"version":"69eec18f3024da9245e6f8800661032de02849fdb82f4e5754234b9753ab753d","impliedFormat":99},{"version":"f508d9b5b7aa6ac0eb6c7166d8a163907670737ab6cfed72cabb18ed4d27e93a","impliedFormat":99},{"version":"72035a7a97898aa687e1226a0e42428fed98d0d269fc5afb1da4de3c614b6afa","impliedFormat":99},{"version":"afa8f9f695190917b8e7aa763b476a64c3f3818ad4e465eb84a5c542aa5ab6d3","impliedFormat":99},{"version":"bdb48a412742f28266e91f8b9c3cb93ab5e5fc4efeaab20ac23ee923d1ffab85","impliedFormat":99},{"version":"1971d324a3cbe55f05b7902adb6453dfa9c26676636961a004f7c493eb53ed68","impliedFormat":99},{"version":"8e7b4e9532df3f35e655c3596dc2a1f9e9ff645e265fe674f05948185fc20aa0","impliedFormat":99},{"version":"6394c04842b451114e283a46cff22eda53fb6cd38cef53157fb09a5477e14ce7","impliedFormat":99},{"version":"525282d1c19684b19c0ce67c09111eeb9ecddb75402afd2575b2c43c7b72587b","impliedFormat":99},{"version":"a29812309236ff935f2a25f7e5cc7c3a471879cb4e7a807d812ac7c0528aabf5","impliedFormat":99},{"version":"c0e4577ccc1f5d23c7ec9786194fe5bea12f10237ec63bbed5daef44a90ced7e","impliedFormat":99},{"version":"dcb4979825df9ee8d826545f011caf031f5143fdda9483ec1711f01cebc6dd08","impliedFormat":99},{"version":"cdca391f6e1c7e0a3c1bafed3515ce7eb93bbcc45957301b182d4b359f4dd469","impliedFormat":99},{"version":"5322996149800e888007de5157125010eb3311fdba699fff1137975c115035ab","impliedFormat":99},{"version":"31cf8f21b25cf65e0b76ae854c5c325dc4bb1658e95058bcf68d2e499f70066c","impliedFormat":99},{"version":"e6b62986b66e8f6a6db255e4d2646be1d2ae3fc14a0d39fc4bac6ddd9c579ad2","impliedFormat":99},{"version":"ab48fa147efe99bd6a50484b62119207eac0dc8d79011cc0238ab243778107a4","impliedFormat":99},{"version":"438fc2adf109b7be5ec9a92057b98fda3ef8d2be1a1846fc245d57afc57a2a50","impliedFormat":99},{"version":"ae6522bd249c23edd46831c93bb59ef402b396c3a11b8eeed1b2b6d9036c3e6b","impliedFormat":99},{"version":"68036037cdf6e6446983edda42e4222cb7725cb333b3b561cdfdf0582f22d187","impliedFormat":99},{"version":"ee2a299893b6d975f7b8d65b4d2c642e429e39f1fe1f351f42ff4fde0c34eca4","impliedFormat":99},{"version":"8d5b46732d8296ce8118fc25d13da98f1947800b9dc8b6f0b4b2e8543ec368ad","impliedFormat":99},{"version":"e9ee952913d691cbcaa172cb143691391b8dc75b6f5a60ee35c92a25ef6479f6","impliedFormat":99},{"version":"39e2c467f0c117fdd706712396f80b4bbf4ebea829a68096e0d6d62366d03eb7","impliedFormat":99},{"version":"15906c60cd7e6b25f0cb90580cc1527584a5fd3d5973daf55a10ad4587510c64","impliedFormat":99},{"version":"406ab0f368fcd5ffb379b4c0fa84b3675fbca834c2c954591552462568994cee","impliedFormat":99},{"version":"656be0f49f0d32f32dfb42b4585494e48138c15e3e56ed7402b36b9316cc5176","impliedFormat":99},{"version":"eb8a51a88c818e8e3d8b4761346e886ae46fdb8179d7938236bdb6e5e26bcc53","impliedFormat":99},{"version":"7f7059a644e3499bf802d9c252b1d99b6bdc21556f438d7693758984877fdba0","impliedFormat":99},{"version":"525f80295ebccc0b8184bd7e03dba432371f3df96b1f88399112a230f1c48e82","impliedFormat":99},{"version":"b355b8f50ac9d87bf458fa0a2762e36c2a395691bec0c21ef6826cc631dcdd34","impliedFormat":99},{"version":"822399a2755ea28ae3d97f9ac2c20eb41148a15e014dec021988d2cc514f656d","impliedFormat":99},{"version":"0b1e14cb06770ed81cf2a7085c973fcdacfbf96455fc025aedba9539f724afed","impliedFormat":99},{"version":"f6b6aa4f55562260b06aabb08367195905565e5db2b8d541f4cba5a522d05187","impliedFormat":99},{"version":"04a49a60381726dbc52583896f1e888a727ea3f15ea719ddac3f133c699bab1f","impliedFormat":99},{"version":"55f38bfa0f4091158ed411e4a54a94bde8ec5105a48d468326350a6ff98c66f2","impliedFormat":99},{"version":"96112614a8d983c6aac682b05815b82cd5d2af174713f95df46b7a5d4393adcc","impliedFormat":99},{"version":"47178e74335c75f16d18b8f9997326d65774e1e490722c1ac592e8f62d37e63e","impliedFormat":99},{"version":"5fb86ff855a340505dd1e5a0c2475696df7865f303323d7e2d005141ea73a461","impliedFormat":99},{"version":"dfc8682fae1326ef7106770fd67db712f21ab6b812c693dcce24a451d951c1e2","impliedFormat":99},{"version":"1852cfb5ae7c11bba23047e44e198416c29334c8f8b832260964c350e00db46e","impliedFormat":99},{"version":"c69baa2cba8d9f66f7cb38cecfca8c5924d6304bb59b85da457dd724a46e8548","impliedFormat":99},{"version":"3cbe672c15126cde626ccf301ef8a5b4517f2e40d63cb4234cbf72de687260e0","impliedFormat":99},{"version":"1637612654e83a9027f2ce3c21609197bc33483029256cdc4e573e8ed95d930b","impliedFormat":99},{"version":"1402212882b04813ea796e08fd07bc53409bfe4262ae72d3232e685b31cfcc02","impliedFormat":99},{"version":"fd5b89584e1132fd39773ac3d10c8003d975640fbd5f317018b2f9e3105569a1","impliedFormat":99},{"version":"c80a1f303a1f70e1c84faa586318b46badfc440a8dbfe179d34cc334fe9da4e7","impliedFormat":99},{"version":"76c1d19e111d0823e8dad68a6b2a3d86ef73545f8a0d1cb4ed9e86dab55c5f67","impliedFormat":99},{"version":"5ad24d0e258dfdb0c8293415aca74f31f28f75863ca11d58547f82dfde2efe14","impliedFormat":99},{"version":"56d26c22fbe3af215f12b5044cd8a9a6b9501c913d20de70e26607df6ec7195e","impliedFormat":99},{"version":"f580e4a5c35390e943327174a1fcbdcbe1418c7f565789287e70b5468f3e59de","impliedFormat":99},{"version":"2f725113ae18657257f08cd2837c40e47d76c4018ed791aa9e9776f1933540d1","impliedFormat":99},{"version":"523265b33f1992dd3c53594efff46af60cbb160b73bff0a576d39cca6e1ee31c","impliedFormat":99},{"version":"8329ddcba0b13dc3c59bc9df2b1e7f3559ec42336fc7591fea51143f895827f8","impliedFormat":99},{"version":"ad88f437c1230d635e5ee3e535176dd291985fd55032f4e0d1c986f36ea54da0","impliedFormat":99},{"version":"4fe3e1aea7c6e4ac1ac824814152df4d0f63f70c287aa6a45796a1fd794cba47","impliedFormat":99},{"version":"4c1b974cc791e3c5b6d85786933258725b1bafbbde2c06f8c857fde6d1e1ec78","impliedFormat":99},{"version":"4d4fd98a081f7646284761857316e2d9f0b63666c9fd2e2e1d7b782aac7b28f5","impliedFormat":99},{"version":"7a9fe3be04c4bba6773310bbed8b62349479b36bb9e984b3482ab7df6b166238","impliedFormat":99},{"version":"16f0d7f408b62da56e251e90612a169938867cc9d242756738833ddf1fc2d481","impliedFormat":99},{"version":"c51568c9c91356250e18517b1188c6aa69ff47bc08a3bf24cd9439134fbdf683","impliedFormat":99},{"version":"72fbd780809660f9ab66b163f404177f034fe946d02b76a99206b95610577d59","impliedFormat":99},{"version":"1826918b53908dc00d488bb0dd0e5ed029dd08e0bfc9188d265bfb0053f5fb9f","impliedFormat":99},{"version":"5d7597bfcca496303256fd44744c6de4531233fa3ac03e6cc1e2d945f6a6d6e5","impliedFormat":99},{"version":"2bb8a9327d7ce4e43caa06281b0b2ddd2ca80af1293ec6ba2f339ad4932cc206","impliedFormat":99},{"version":"127a4bd80467304fb1a51a76b30e297f428fe1494b7a14d9984cf56a02f2b331","impliedFormat":99},{"version":"1c5a9c6d973bc268522676437ea5f1b24a27f736ccd8af8e74f1bf868e8dbbd6","impliedFormat":99},{"version":"3cc5c94b876b4c63eaa676bbced5bef59ff9812617bbc4ab659fa065a32c54de","impliedFormat":99},{"version":"36a8ae68755fa991c0f1685bd83a67362436ed2a6e8c1a8f32acc7adffd6168f","impliedFormat":99},{"version":"6db5e9847f3760e045bfafeb945cabd5acbf16ad51c3d066c78acf2844aee7c8","impliedFormat":99},{"version":"6484fdf2b87d910c6b21c6bdfc9d4cbcb936e9ab9c2a4b53e6bfa340cf7bde98","impliedFormat":99},{"version":"f73229533c0e1695f9c75a191a5be44989ae92ca77342b713af856a97e52e498","impliedFormat":99},{"version":"f7f312b313319eb4c92cdd342b04f3b3912ed8ab704414c863129177b49447d2","impliedFormat":99},{"version":"165759e2ed45d7c271753ce028ad801ae857aa8fbc6ed8a977cdd5b0518d057d","impliedFormat":99},{"version":"d96984a14d656474db73039a4407ece06d5022fb0eb30571551e62c8c6f81a59","impliedFormat":99},{"version":"119ac9413c8a428219878da202375e364b37dfaf2b47a32e309aec8d77e8f197","impliedFormat":99},{"version":"b0672eaba1a8cad5e85defcae3e0325e0ad3a6ad16af7e6aba509f0de9ae9a3b","impliedFormat":99},{"version":"8980fca73ab1cfb4923c9311587f26d2b61915b3f0ae94e84d3f108e41904471","impliedFormat":99},{"version":"5a9a55d4531486b41b7fb9475041c068553719cd2b93a5745e01111b0d836cdd","impliedFormat":99},{"version":"bf4f74ad2c7b5da8e34b85852a258ca9003710785f5a3757f2523d93bbdb260a","impliedFormat":99},{"version":"cd8871a352586220b17d6a764af77726e3bcf563adc43a570bdb25f8a134deba","impliedFormat":99},{"version":"472edc7768eae3d1cdd6f5527f9faa60636d40b39f1d26c9b255ba7d0f354846","impliedFormat":99},{"version":"a9751001b01ed9ba9ed6515f720c486d353f6c6374ea528c98caf6cfb9caccab","impliedFormat":99},{"version":"e9acd11c45ef37d94f1b9388c6a8519cf8ab7eb53ad3cb8cf4184764711b33b2","impliedFormat":99},{"version":"676b88d0772615ae9afa3903de127c23316a44ac41002ff53685bbe68722f355","impliedFormat":99},{"version":"acdc1359ae838f192b6d94cf15a3e8cedb99a9561922951c64c413557756e3c1","impliedFormat":99},{"version":"fa5d8cb6eb7afb104fd94847dd8a739029cfabded225f93b6f09f5449b6794b7","impliedFormat":99},{"version":"316f1486e15cbf7896425f0a16dfe12d447dd57cfb3244b8b119c77df870858f","impliedFormat":99},{"version":"bef4cb2537c6229e68225e976c9d7d894ae9000b351f839867fa9d2928ef944d","impliedFormat":99},{"version":"30dcc2f014b6ae7c0e0337a87c70cac19cfd1ffe8982dbf28e37411105d32594","impliedFormat":99},{"version":"8bd7fd57f990ff10242a6acd6f20f4d7a0a6a2fa0494f3f4680add55b867e0ab","impliedFormat":99},{"version":"f943375bde83d32a00db5fa8ea97b66440e5b30e89a0ba4d30c88d49229f4f6d","impliedFormat":99},{"version":"4ab7081fcca46702defd0e6e59be019981d9862735cf3641cf8a676a7a260687","impliedFormat":99},{"version":"955faf3ddeba7f9f1cf0d3019e61fb7f256833312398e340c5b42fb2ad8ad126","impliedFormat":99},{"version":"061638545629f8821137f657fa83b50f1fc3ef24c2eea3f489f2207bd3fe8604","impliedFormat":99},{"version":"2d6fc83d9e8d8485bc153a64058691f7483710059c3b693f6d66282409de3941","impliedFormat":99},{"version":"30ac578e4e17562acc6b4a3bb1aaf3a82a6659ab86ebc6f885a894aa3ff69d2f","impliedFormat":99},{"version":"7ed24e31337a41691afdf0ed7c051bc60c1b232ec28d118c1df5eedbdf278379","impliedFormat":99},{"version":"d3a2f956b8949ab7504d1ff606c5db6f0fe878e4da6992d9e53994eb6a818780","impliedFormat":99},{"version":"bf9c521c79f941180501e9c62c05020fc07b2c82b364b3f00cb76f54f8aee2fa","impliedFormat":99},{"version":"9c98c8c56a0f74be89122bc0aebe42d00936b04bba2aef2bc65b3b97e34c5b96","impliedFormat":99},{"version":"528797ce38e264de1a333fbaccadb315baef5485eab44c4e0e85097c1b3c86d7","impliedFormat":99},{"version":"82abeb2110eeae7a9ec63d3d44b43b4cbce2e684132e4403d0995785fe981b09","impliedFormat":99},{"version":"af437ea71c5035e813d10b56bc72321f1375c42f88f2fe0696717132d040c6d4","impliedFormat":99},{"version":"4bdaf0ba0f4d2323b1cc4ebe39a1f78d9fa385d918f4f8d4c4747cc5f72524f6","impliedFormat":99},{"version":"4c700a8ce85d38625530a4c7e026ffc10436fe8101dc392f09b331ad2c32a9ad","impliedFormat":99},{"version":"6dbebda906deea3021cfcebf32f0fe178eb917fc2c475f1cc8c76ca4a3d7f146","impliedFormat":99},{"version":"ce48d094c10f12813adebaaf391bc1310c012fcb13fc6c88b29b83ea1b51a6c5","impliedFormat":99},{"version":"6a0c2673328ac13d382c06191bbcee6c00686c65e44e6a78f84819f896fef3b9","impliedFormat":99},{"version":"8ec352eabf812f3fc4ae851be15ef57753436976060bf8704149bec2d4bdacf4","impliedFormat":99},{"version":"25103a0bf17c0419062cf1376273b26fe5262aa34da7bd58584045a5e18b8a4c","impliedFormat":99},{"version":"c164152a56d491a212a6e93531c49f6f957e9a38b4bb732429a73cbb234f9cbb","impliedFormat":99},{"version":"e726e7fee8e3297e15aff8e1668762323588e119aae6e4698da6111628af74a3","impliedFormat":99},{"version":"1aefe473a947c1178322a3526f52a83db490c8cce9e57b07c0224688be55f264","impliedFormat":99},{"version":"dfedf320784a8ebe0f9b0dade5fbb6adb95f624a63bbe5760b8593f41992657f","impliedFormat":99},{"version":"ba56cb9be18354c664754abdb7b6f5dd262a7883d336018459e1e54f24586916","impliedFormat":99},{"version":"ed85a7aa3450739e9e0c4026e93e16b89ca83eb3fe7abc8527ad6dfc640140a6","impliedFormat":99},{"version":"9bb3e67ae8e93957c194b32acbd8580cf17a9df8ba44625568190bfc16e8c15a","impliedFormat":99},{"version":"4f6dc8c84a068552e39ce66235ebe650d43863b42dcb7835cff33df1b1ce6e51","impliedFormat":99},{"version":"1381f2919bf6a8b2d891ada612c23784e17cae6300db12fbb7900e9381ecf4de","impliedFormat":99},{"version":"05bbf247a54330ced6a6a821412224bdae0869f0cab0b8d4d5e49f1a6f4577a6","impliedFormat":99},{"version":"8124828a11be7db984fcdab052fd4ff756b18edcfa8d71118b55388176210923","impliedFormat":99},{"version":"437b7613a30a2fcde463f7b707c6d5567a8823fbc51de50b8641bf5b1d126fad","impliedFormat":99},{"version":"63ea959e28c110923f495576e614fb8b36c09b6828b467b2c7cd7f03b03ccf9f","impliedFormat":99},{"version":"1601a95dbb33059fc3d12638ed2a9aecff899e339c5c0f3a0b28768866d385b4","impliedFormat":99},{"version":"56fc978580577d30f4c2cdb5b1eb9217b66ed66537dd27141256f426e4b8dd68","impliedFormat":99},{"version":"2c5413050a2580becf9d82dd7e3006b95623e96f145356bf73230cd635352f70","impliedFormat":99},{"version":"860bedc71ead192ea4a0ea5ef4686e65724d14b391ebd1a6671a7044e6bd8e15","impliedFormat":99},{"version":"7c0a845bee4a084cbb8654709f48e5f13e2f6d45e5e2dde7c57cadf79fd9e3d5","impliedFormat":99},{"version":"7fa6fdc6eeeb3850e6b3166836f8c9199594c4f4bed3cee02cac0ca33d71894d","impliedFormat":99},{"version":"e53757f3e6688e8be16b36ccbeedc85637e607353fc67ff7b6665d6005aeaa12","impliedFormat":99},{"version":"88ba2660f5b024c7afd02ea700bc0c677687e17e34f0a94c3256ddb55e0f1c5d","impliedFormat":99},{"version":"7bbff6783e96c691a41a7cf12dd5486b8166a01b0c57d071dbcfca55c9525ec4","impliedFormat":99},{"version":"c2c2a861a338244d7dd700d0c52a78916b4bb75b98fc8ca5e7c501899fc03796","impliedFormat":1},{"version":"b6d03c9cfe2cf0ba4c673c209fcd7c46c815b2619fd2aad59fc4229aaef2ed43","impliedFormat":1},{"version":"adb467429462e3891de5bb4a82a4189b92005d61c7f9367c089baf03997c104e","impliedFormat":1},{"version":"adb467429462e3891de5bb4a82a4189b92005d61c7f9367c089baf03997c104e","impliedFormat":1},{"version":"670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","impliedFormat":1},{"version":"13b77ab19ef7aadd86a1e54f2f08ea23a6d74e102909e3c00d31f231ed040f62","impliedFormat":1},{"version":"069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","impliedFormat":1},{"version":"c1a2e05eb6d7ca8d7e4a7f4c93ccf0c2857e842a64c98eaee4d85841ee9855e6","impliedFormat":1},{"version":"835fb2909ce458740fb4a49fc61709896c6864f5ce3db7f0a88f06c720d74d02","impliedFormat":1},{"version":"6e5857f38aa297a859cab4ec891408659218a5a2610cd317b6dcbef9979459cc","impliedFormat":1},{"version":"ead8e39c2e11891f286b06ae2aa71f208b1802661fcdb2425cffa4f494a68854","impliedFormat":1},{"version":"82919acbb38870fcf5786ec1292f0f5afe490f9b3060123e48675831bd947192","impliedFormat":1},{"version":"e222701788ec77bd57c28facbbd142eadf5c749a74d586bc2f317db7e33544b1","impliedFormat":1},{"version":"09154713fae0ed7befacdad783e5bd1970c06fc41a5f866f7f933b96312ce764","impliedFormat":1},{"version":"8d67b13da77316a8a2fabc21d340866ddf8a4b99e76a6c951cc45189142df652","impliedFormat":1},{"version":"a91c8d28d10fee7fe717ddf3743f287b68770c813c98f796b6e38d5d164bd459","impliedFormat":1},{"version":"68add36d9632bc096d7245d24d6b0b8ad5f125183016102a3dad4c9c2438ccb0","impliedFormat":1},{"version":"3a819c2928ee06bbcc84e2797fd3558ae2ebb7e0ed8d87f71732fb2e2acc87b4","impliedFormat":1},{"version":"f6f827cd43e92685f194002d6b52a9408309cda1cec46fb7ca8489a95cbd2fd4","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"a270a1a893d1aee5a3c1c8c276cd2778aa970a2741ee2ccf29cc3210d7da80f5","impliedFormat":1},{"version":"add0ce7b77ba5b308492fa68f77f24d1ed1d9148534bdf05ac17c30763fc1a79","impliedFormat":1},{"version":"8926594ee895917e90701d8cbb5fdf77fc238b266ac540f929c7253f8ad6233d","impliedFormat":1},{"version":"2f67911e4bf4e0717dc2ded248ce2d5e4398d945ee13889a6852c1233ea41508","impliedFormat":1},{"version":"d8430c275b0f59417ea8e173cfb888a4477b430ec35b595bf734f3ec7a7d729f","impliedFormat":1},{"version":"69364df1c776372d7df1fb46a6cb3a6bf7f55e700f533a104e3f9d70a32bec18","impliedFormat":1},{"version":"6042774c61ece4ba77b3bf375f15942eb054675b7957882a00c22c0e4fe5865c","impliedFormat":1},{"version":"5a3bd57ed7a9d9afef74c75f77fce79ba3c786401af9810cdf45907c4e93f30e","impliedFormat":1},{"version":"ed8763205f02fb65e84eff7432155258df7f93b7d938f01785cb447d043d53f3","impliedFormat":1},{"version":"30db853bb2e60170ba11e39ab48bacecb32d06d4def89eedf17e58ebab762a65","impliedFormat":1},{"version":"e27451b24234dfed45f6cf22112a04955183a99c42a2691fb4936d63cfe42761","impliedFormat":1},{"version":"2316301dd223d31962d917999acf8e543e0119c5d24ec984c9f22cb23247160c","impliedFormat":1},{"version":"58d65a2803c3b6629b0e18c8bf1bc883a686fcf0333230dd0151ab6e85b74307","impliedFormat":1},{"version":"e818471014c77c103330aee11f00a7a00b37b35500b53ea6f337aefacd6174c9","impliedFormat":1},{"version":"d4a5b1d2ff02c37643e18db302488cd64c342b00e2786e65caac4e12bda9219b","impliedFormat":1},{"version":"29f823cbe0166e10e7176a94afe609a24b9e5af3858628c541ff8ce1727023cd","impliedFormat":1},{"version":"af2859c14db1493c3ea47c3c61d92bd90d720a5c0922c7bf67aff8c2579d04ed","affectsGlobalScope":true,"impliedFormat":1},{"version":"2faebfa830ae4cfbfb58e48b0ec20a2a63882d776f0ca36ec7155d45cf1b7f2d","impliedFormat":99},{"version":"dc6e3ce502651ecc523590588213bfb986c04b60f5265d37f76662b824425903","impliedFormat":99},"7de1a28185baf0176bd127f6cdbc393f419a52bf0b88756986751e6fdff3520b",{"version":"e400fd1422b244efc65d9cb0c48a2febd9f616cda1a59bdc5cc9ad9af019191f","signature":"4b96dd19fd2949d28ce80e913412b0026dc421e5bf6c31d87c7b5eb11b5753b4"}],"root":[[175,179],183,[185,188],623,624,661,[799,801],1177,[1179,1181],[1183,1186],1222,1223,[1225,1227],[1229,1238],[1240,1242],[1244,1250],[1252,1256],1258,[1260,1270],1323,1343,2111],"options":{"allowJs":true,"checkJs":true,"emitDeclarationOnly":false,"esModuleInterop":true,"jsx":1,"module":200,"noUncheckedIndexedAccess":true,"rootDir":"..","skipLibCheck":true,"strict":true,"target":9,"tsBuildInfoFile":"./tsbuildinfo.json"},"referencedMap":[[2023,1],[812,2],[816,3],[815,4],[811,5],[814,6],[807,7],[813,2],[873,8],[875,9],[874,10],[864,11],[907,12],[906,13],[878,14],[879,15],[911,16],[910,17],[909,15],[913,18],[912,19],[908,20],[914,20],[915,21],[920,22],[921,23],[919,24],[918,25],[917,26],[916,22],[925,27],[924,28],[923,29],[809,30],[810,31],[922,32],[896,33],[893,34],[932,20],[931,20],[930,20],[889,34],[901,15],[902,20],[898,20],[897,20],[888,20],[935,35],[934,36],[887,37],[886,37],[929,34],[899,20],[927,38],[890,20],[895,39],[892,40],[894,33],[877,41],[926,14],[904,1],[905,1],[900,20],[891,20],[885,37],[928,15],[966,42],[965,43],[963,44],[941,45],[964,20],[967,46],[969,47],[968,48],[865,34],[866,20],[867,20],[971,49],[970,50],[868,51],[869,40],[861,52],[863,53],[862,54],[870,20],[871,55],[872,34],[972,15],[973,56],[975,57],[974,58],[976,34],[977,20],[978,20],[979,20],[981,20],[980,20],[993,59],[992,60],[985,61],[986,40],[987,46],[983,62],[984,63],[988,64],[989,20],[990,55],[991,34],[997,22],[996,38],[995,65],[1001,66],[1000,67],[999,38],[994,38],[883,68],[998,69],[1005,70],[1004,71],[1003,20],[1002,20],[852,72],[834,73],[837,74],[833,75],[850,76],[832,77],[853,78],[838,77],[839,79],[854,77],[848,80],[840,77],[842,81],[843,77],[844,82],[841,77],[831,83],[845,76],[846,77],[855,84],[847,72],[856,85],[849,86],[851,87],[830,1],[881,88],[880,89],[882,90],[1176,91],[1006,92],[1007,93],[1119,20],[936,33],[937,34],[945,34],[944,94],[947,20],[946,20],[962,95],[961,96],[948,20],[949,20],[950,39],[951,40],[952,33],[953,94],[955,34],[954,20],[943,97],[939,98],[942,99],[938,100],[957,101],[956,102],[960,20],[958,103],[959,20],[1008,94],[940,104],[1009,105],[1011,106],[1010,20],[1018,107],[1017,108],[1014,109],[1016,109],[1012,20],[1013,109],[1015,109],[1029,33],[1027,34],[1022,34],[1031,20],[1033,110],[1032,111],[1021,20],[1030,20],[1020,20],[1028,112],[1024,40],[1025,33],[1019,7],[1023,20],[1026,20],[1038,113],[1036,113],[1037,113],[1043,114],[1042,115],[1039,113],[1035,116],[1041,113],[1040,113],[1034,1],[1052,33],[1053,34],[1056,20],[1055,20],[1059,117],[1058,118],[1051,39],[1049,40],[1050,33],[1047,119],[1046,120],[1045,121],[1054,20],[1048,122],[1057,20],[1068,33],[1069,34],[1072,123],[1071,124],[1067,112],[1064,125],[1066,33],[1062,126],[1061,127],[1060,128],[1065,129],[1070,20],[1079,130],[1078,131],[1075,132],[1077,132],[1073,20],[1074,132],[1076,132],[1084,22],[1085,133],[1083,134],[1082,135],[1081,34],[1080,38],[1089,136],[1091,20],[1093,137],[1092,138],[1086,20],[1088,136],[1090,20],[1087,136],[1107,33],[1100,34],[1111,20],[1110,20],[1098,20],[1113,139],[1112,140],[1105,34],[1106,20],[1104,20],[1095,38],[1103,20],[1102,39],[1099,40],[1101,33],[1094,41],[1108,20],[1109,20],[1096,38],[1097,20],[903,20],[933,141],[1117,142],[1123,143],[1122,144],[1121,142],[1115,142],[1114,22],[1120,145],[1118,142],[1116,142],[1127,146],[1126,147],[1124,148],[1125,149],[1134,150],[1133,151],[1130,152],[1132,153],[1131,154],[1129,155],[1128,153],[1145,20],[1147,33],[1144,20],[1141,20],[1137,156],[1142,20],[1149,157],[1148,158],[1146,125],[1135,159],[1138,160],[1140,161],[1143,20],[1136,162],[1139,20],[1152,7],[1153,163],[1150,7],[1151,164],[1157,165],[1156,165],[1161,166],[1160,167],[1159,165],[1158,165],[1155,20],[1154,168],[1169,33],[1173,169],[1172,170],[1168,112],[1166,125],[1167,33],[1170,15],[1164,171],[1163,172],[1162,173],[1165,174],[1171,20],[805,175],[1175,176],[1174,177],[1063,40],[804,178],[835,1],[860,179],[859,180],[857,1],[858,181],[802,1],[803,182],[876,15],[806,183],[884,184],[836,177],[982,15],[808,15],[818,15],[821,185],[819,1],[822,186],[817,187],[823,188],[820,189],[824,15],[1044,1],[189,1],[190,190],[191,191],[196,192],[192,191],[195,1],[193,1],[194,1],[826,193],[828,194],[829,195],[825,1],[827,1],[1489,196],[1487,1],[1488,197],[1490,198],[1485,199],[1483,1],[1486,200],[1484,201],[1468,1],[66,15],[72,202],[67,15],[68,15],[83,203],[73,15],[98,204],[97,15],[85,204],[84,15],[182,205],[92,206],[90,15],[91,15],[71,207],[69,15],[70,15],[107,208],[93,15],[94,15],[180,15],[82,209],[74,15],[81,15],[108,15],[76,204],[75,15],[111,208],[109,15],[110,15],[78,204],[77,15],[115,210],[112,15],[114,204],[113,15],[118,211],[116,15],[117,15],[1187,212],[106,213],[95,15],[102,15],[122,214],[120,15],[121,15],[127,215],[123,15],[124,15],[129,216],[128,15],[130,15],[133,217],[131,15],[132,15],[101,218],[96,15],[99,15],[80,204],[79,15],[181,15],[184,205],[137,219],[135,15],[136,15],[105,207],[103,15],[104,15],[140,207],[138,15],[139,15],[143,217],[141,15],[142,15],[1243,212],[147,207],[145,15],[146,15],[1221,220],[151,207],[149,15],[150,15],[154,219],[152,15],[153,15],[157,221],[155,15],[156,15],[162,222],[160,15],[161,15],[159,204],[158,15],[166,223],[163,15],[164,15],[165,204],[169,211],[167,15],[168,15],[126,204],[125,15],[100,1],[677,224],[676,1],[673,1],[1470,1],[1471,225],[1298,1],[1331,226],[1330,1],[1338,1],[1335,1],[1334,1],[1329,227],[1340,228],[1325,229],[1336,230],[1328,231],[1327,232],[1337,1],[1332,233],[1339,1],[1333,234],[1326,1],[1321,229],[1322,235],[1342,236],[1320,1],[2029,237],[2025,238],[2024,238],[2027,239],[2026,238],[2028,238],[1301,240],[686,1],[663,241],[687,242],[662,1],[1299,1],[1406,243],[1407,243],[1408,244],[1346,245],[1409,246],[1410,247],[1411,248],[1344,1],[1412,249],[1413,250],[1414,251],[1415,252],[1416,253],[1417,254],[1418,254],[1419,255],[1420,256],[1421,257],[1422,258],[1347,1],[1345,1],[1423,259],[1424,260],[1425,261],[1466,262],[1426,263],[1427,264],[1428,263],[1429,265],[1430,266],[1432,267],[1433,268],[1434,268],[1435,268],[1436,269],[1437,270],[1438,271],[1439,272],[1440,273],[1441,274],[1442,274],[1443,275],[1444,1],[1445,1],[1446,276],[1447,277],[1448,276],[1449,278],[1450,279],[1451,280],[1452,281],[1453,282],[1454,283],[1455,284],[1456,285],[1457,286],[1458,287],[1459,288],[1460,289],[1461,290],[1462,291],[1463,292],[1348,263],[1349,1],[1350,293],[1351,294],[1352,1],[1353,295],[1354,1],[1397,296],[1398,297],[1399,298],[1400,298],[1401,299],[1402,1],[1403,246],[1404,300],[1405,297],[1464,301],[1465,302],[1324,15],[1251,303],[1341,15],[62,1],[64,304],[89,15],[1977,305],[2109,306],[2108,307],[1302,308],[1309,309],[1310,310],[1308,1],[1271,1],[1280,311],[1279,312],[1303,311],[1287,313],[1289,314],[2018,314],[1288,315],[1296,316],[1295,1],[1278,317],[1272,318],[2015,319],[1274,320],[1276,321],[2014,1],[2012,320],[1275,1],[1277,318],[1273,1],[1300,1],[2107,322],[1431,1],[173,323],[172,324],[171,1],[1178,325],[63,1],[285,326],[264,327],[361,1],[265,328],[201,326],[202,326],[203,326],[204,326],[205,326],[206,326],[207,326],[208,326],[209,326],[210,326],[211,326],[212,326],[213,326],[214,326],[215,326],[216,326],[217,326],[218,326],[197,1],[219,326],[220,326],[221,1],[222,326],[223,326],[224,326],[225,326],[226,326],[227,326],[228,326],[229,326],[230,326],[231,326],[232,326],[233,326],[234,326],[235,326],[236,326],[237,326],[238,326],[239,326],[240,326],[241,326],[242,326],[243,326],[244,326],[245,326],[246,326],[247,326],[248,326],[249,326],[250,326],[251,326],[252,326],[253,326],[254,326],[255,326],[256,326],[257,326],[258,326],[259,326],[260,326],[261,326],[262,326],[263,326],[266,329],[267,326],[268,326],[269,330],[270,331],[271,326],[272,326],[273,326],[274,326],[275,326],[276,326],[277,326],[199,1],[278,326],[279,326],[280,326],[281,326],[282,326],[283,326],[284,326],[286,332],[287,326],[288,326],[289,326],[290,326],[291,326],[292,326],[293,326],[294,326],[295,326],[296,326],[297,326],[298,326],[299,326],[300,326],[301,326],[302,326],[303,326],[304,326],[305,1],[306,1],[307,1],[454,333],[308,326],[309,326],[310,326],[311,326],[312,326],[313,326],[314,1],[315,326],[316,1],[317,326],[318,326],[319,326],[320,326],[321,326],[322,326],[323,326],[324,326],[325,326],[326,326],[327,326],[328,326],[329,326],[330,326],[331,326],[332,326],[333,326],[334,326],[335,326],[336,326],[337,326],[338,326],[339,326],[340,326],[341,326],[342,326],[343,326],[344,326],[345,326],[346,326],[347,326],[348,326],[349,1],[350,326],[351,326],[352,326],[353,326],[354,326],[355,326],[356,326],[357,326],[358,326],[359,326],[360,326],[362,334],[550,335],[455,328],[457,328],[458,328],[459,328],[460,328],[461,328],[456,328],[462,328],[464,328],[463,328],[465,328],[466,328],[467,328],[468,328],[469,328],[470,328],[471,328],[472,328],[474,328],[473,328],[475,328],[476,328],[477,328],[478,328],[479,328],[480,328],[481,328],[482,328],[483,328],[484,328],[485,328],[486,328],[487,328],[488,328],[489,328],[491,328],[492,328],[490,328],[493,328],[494,328],[495,328],[496,328],[497,328],[498,328],[499,328],[500,328],[501,328],[502,328],[503,328],[504,328],[506,328],[505,328],[508,328],[507,328],[509,328],[510,328],[511,328],[512,328],[513,328],[514,328],[515,328],[516,328],[517,328],[518,328],[519,328],[520,328],[521,328],[523,328],[522,328],[524,328],[525,328],[526,328],[528,328],[527,328],[529,328],[530,328],[531,328],[532,328],[533,328],[534,328],[536,328],[535,328],[537,328],[538,328],[539,328],[540,328],[541,328],[198,326],[542,328],[543,328],[545,328],[544,328],[546,328],[547,328],[548,328],[549,328],[363,326],[364,326],[365,1],[366,1],[367,1],[368,326],[369,1],[370,1],[371,1],[372,1],[373,1],[374,326],[375,326],[376,326],[377,326],[378,326],[379,326],[380,326],[381,326],[386,336],[384,337],[383,338],[385,339],[382,326],[387,326],[388,326],[389,326],[390,326],[391,326],[392,326],[393,326],[394,326],[395,326],[396,326],[397,1],[398,1],[399,326],[400,326],[401,1],[402,1],[403,1],[404,326],[405,326],[406,326],[407,326],[408,332],[409,326],[410,326],[411,326],[412,326],[413,326],[414,326],[415,326],[416,326],[417,326],[418,326],[419,326],[420,326],[421,326],[422,326],[423,326],[424,326],[425,326],[426,326],[427,326],[428,326],[429,326],[430,326],[431,326],[432,326],[433,326],[434,326],[435,326],[436,326],[437,326],[438,326],[439,326],[440,326],[441,326],[442,326],[443,326],[444,326],[445,326],[446,326],[447,326],[448,326],[449,326],[200,340],[450,1],[451,1],[452,1],[453,1],[792,1],[659,341],[660,342],[625,1],[633,343],[627,344],[634,1],[656,345],[631,346],[655,347],[652,348],[635,349],[636,1],[629,1],[626,1],[657,350],[653,351],[637,1],[654,352],[638,353],[640,354],[641,355],[630,356],[642,357],[643,356],[645,357],[646,358],[647,359],[649,360],[644,361],[650,362],[651,363],[628,364],[648,365],[639,1],[632,366],[658,367],[1480,1],[1316,368],[1318,369],[1317,370],[1315,371],[1314,1],[1549,1],[1560,372],[1998,373],[1996,374],[1994,375],[1995,376],[2002,377],[2001,378],[1999,379],[2000,380],[1550,1],[1551,1],[1852,381],[1859,382],[1867,383],[1863,384],[1835,1],[1993,385],[1861,386],[1862,1],[1997,387],[1860,388],[1851,389],[1869,390],[1868,391],[1802,392],[1793,393],[1559,1],[1839,394],[1836,1],[1840,395],[2003,396],[1841,397],[1837,1],[1838,1],[1844,398],[1846,399],[1845,398],[1843,1],[1871,400],[1581,401],[1579,1],[1586,402],[1870,1],[1585,403],[1587,404],[1576,405],[1575,1],[1583,406],[1872,407],[1873,408],[1582,409],[1874,408],[1875,410],[1584,411],[1972,412],[1880,413],[1881,407],[1876,1],[1877,414],[1879,415],[1878,416],[1580,417],[1967,418],[1883,419],[1882,420],[1816,421],[1884,422],[1625,423],[1624,424],[1622,425],[1807,426],[1621,427],[1588,428],[1653,429],[1623,1],[1620,1],[1632,430],[1631,431],[1626,1],[1630,1],[1628,1],[1629,1],[1627,432],[1887,433],[1885,434],[1886,435],[1554,436],[1553,1],[1980,437],[1552,1],[1555,438],[1889,439],[1891,440],[1888,439],[1558,441],[1556,442],[1557,442],[1890,443],[1892,444],[1894,445],[1896,446],[1976,447],[1898,448],[1900,449],[1902,450],[1904,451],[1893,452],[1895,453],[1975,452],[1897,452],[1899,452],[1901,454],[1903,452],[1905,455],[1907,456],[1662,457],[1909,452],[1911,458],[1913,454],[1915,459],[1973,452],[1917,452],[1920,460],[1922,461],[1924,462],[1926,456],[1906,463],[1908,464],[1910,465],[1663,466],[1912,467],[1914,468],[1916,469],[1974,470],[1918,471],[1921,472],[1923,473],[1925,474],[1927,475],[1928,1],[1929,476],[1981,477],[1825,478],[1986,479],[1832,480],[1854,481],[1855,481],[1853,1],[1856,482],[1830,1],[1847,481],[1848,481],[1831,483],[1850,484],[1849,1],[1833,485],[1988,486],[1990,1],[1985,487],[1827,488],[1987,489],[1989,1],[1826,481],[1961,490],[1983,1],[1930,491],[1982,1],[1984,1],[1706,1],[1829,490],[1594,492],[1595,391],[1931,493],[1828,494],[1932,495],[1866,496],[1864,1],[1865,497],[2004,498],[2010,499],[1934,428],[1935,500],[1933,501],[1688,502],[1936,503],[1858,504],[1857,1],[1968,1],[1971,505],[1969,1],[1970,506],[1992,1],[1567,507],[1566,1],[1937,508],[1565,509],[1564,1],[1939,510],[1940,511],[1944,512],[1938,511],[1941,510],[1589,513],[1617,514],[1615,515],[1616,516],[1817,517],[1794,518],[1815,519],[1834,520],[1818,1],[1945,372],[1824,1],[1811,521],[1592,429],[1808,522],[1655,523],[1656,523],[1946,524],[1671,525],[1672,526],[1673,527],[1674,420],[1609,528],[1965,529],[1677,530],[1675,1],[1676,531],[1678,420],[1679,420],[1605,532],[1680,533],[1681,534],[1682,420],[1947,535],[1590,536],[1683,420],[1610,537],[1613,538],[1614,539],[1612,540],[1611,541],[1684,420],[1685,420],[1686,420],[1687,420],[1654,1],[1690,542],[1691,526],[1948,543],[1596,434],[1606,544],[1593,1],[1604,545],[1692,546],[1693,420],[1694,547],[1695,548],[1670,549],[1659,1],[1660,1],[1664,550],[1661,551],[1658,552],[1668,553],[1665,554],[1666,555],[1667,1],[1669,556],[1657,1],[1950,557],[1949,1],[1696,420],[1697,420],[1597,558],[1698,420],[1699,420],[1607,559],[1700,420],[1600,560],[1598,561],[1701,420],[1702,420],[1703,420],[1704,420],[1599,558],[1705,420],[1707,562],[1601,563],[1602,564],[1619,565],[1708,420],[1709,420],[1591,566],[1710,420],[1711,420],[1712,420],[1715,567],[1713,568],[1714,569],[1796,570],[1603,571],[1797,420],[1798,420],[1799,572],[1800,420],[1951,420],[1801,525],[1577,573],[1578,574],[1574,574],[1573,574],[1572,575],[1569,576],[1570,574],[1568,1],[1806,577],[1562,1],[1563,578],[1561,1],[1809,579],[1823,517],[1795,580],[1717,581],[1718,581],[1719,581],[1716,582],[1722,583],[1724,584],[1743,585],[1725,586],[1726,587],[1804,588],[1727,583],[1729,589],[1732,590],[1733,591],[1734,590],[1737,592],[1738,593],[1739,594],[1740,595],[1741,593],[1742,591],[1744,596],[1745,596],[1746,596],[1747,596],[1748,594],[1749,597],[1750,591],[1751,598],[1752,594],[1753,593],[1754,595],[1755,593],[1756,595],[1757,591],[1758,599],[1759,589],[1760,600],[1761,586],[1721,601],[1764,602],[1639,603],[1762,604],[1763,583],[1765,605],[1770,598],[1767,606],[1768,607],[1769,587],[1771,608],[1772,609],[1774,610],[1775,610],[1776,605],[1777,583],[1778,611],[1779,581],[1780,595],[1805,612],[1803,613],[1781,586],[1782,586],[1790,614],[1783,615],[1787,614],[1788,616],[1786,617],[1789,587],[1791,618],[1792,587],[1618,619],[1952,620],[1942,621],[1943,622],[1571,1],[1820,515],[1821,623],[1819,1],[1953,1],[1954,621],[1955,624],[1956,625],[1822,626],[1919,627],[1645,628],[1644,1],[1766,629],[1735,630],[1723,630],[1736,630],[1652,631],[1785,632],[1720,630],[1731,633],[1651,634],[1647,635],[1728,630],[1638,636],[1643,637],[1784,631],[1642,1],[1634,638],[1646,630],[1730,639],[1641,630],[1773,640],[1650,641],[1649,1],[1648,1],[1640,630],[1633,630],[1636,642],[1637,643],[1635,1],[1966,1],[2005,1],[1813,644],[1812,515],[1814,645],[1842,646],[1608,647],[1978,648],[1979,649],[1689,650],[2006,651],[2008,652],[1964,1],[1991,1],[1810,1],[2007,653],[1962,654],[1957,655],[1958,1],[1959,656],[1960,1],[2009,657],[1963,515],[717,1],[1523,1],[1228,15],[65,15],[1257,15],[170,658],[88,207],[86,15],[119,204],[87,15],[134,207],[144,204],[148,15],[611,659],[568,15],[609,660],[570,661],[569,662],[608,663],[610,664],[551,15],[552,15],[553,15],[576,665],[577,665],[578,659],[579,15],[580,15],[581,666],[554,667],[582,15],[583,15],[584,668],[585,15],[586,15],[587,15],[588,15],[589,15],[590,15],[555,667],[593,667],[594,15],[591,15],[592,15],[595,15],[596,668],[597,669],[598,660],[599,660],[600,660],[602,660],[603,1],[601,660],[604,660],[605,670],[612,671],[613,672],[622,673],[567,674],[556,675],[557,660],[558,675],[559,660],[560,1],[561,660],[562,1],[564,660],[565,660],[563,660],[566,660],[607,660],[574,676],[575,677],[571,678],[572,679],[606,680],[573,681],[614,675],[615,675],[621,682],[616,660],[617,675],[618,675],[619,660],[620,675],[1188,1],[1204,683],[1205,683],[1206,683],[1220,684],[1207,685],[1208,685],[1209,686],[1201,687],[1199,688],[1190,1],[1194,689],[1198,690],[1196,691],[1203,692],[1191,693],[1192,694],[1193,695],[1195,696],[1197,697],[1200,698],[1202,699],[1210,685],[1211,685],[1212,685],[1213,683],[1214,685],[1215,685],[1189,685],[1216,1],[1218,700],[1217,685],[1219,683],[1224,15],[1239,46],[703,1],[701,701],[705,702],[772,703],[767,704],[670,705],[738,706],[731,707],[788,708],[726,709],[771,710],[768,711],[720,712],[730,713],[773,714],[774,714],[775,715],[668,716],[737,717],[783,718],[777,718],[785,718],[789,718],[776,718],[778,718],[781,718],[784,718],[780,719],[782,718],[786,720],[779,721],[680,722],[752,15],[749,723],[753,15],[691,718],[681,718],[744,724],[669,725],[690,726],[694,727],[751,718],[666,15],[750,728],[748,15],[747,718],[682,15],[794,729],[762,721],[742,730],[798,731],[763,732],[761,733],[757,734],[759,735],[764,736],[766,737],[760,1],[758,1],[756,15],[689,738],[665,718],[755,718],[704,739],[754,15],[729,738],[787,718],[722,740],[678,741],[683,742],[732,743],[734,740],[713,744],[716,740],[695,745],[715,746],[724,747],[725,748],[721,749],[735,750],[723,751],[700,752],[743,753],[739,754],[740,755],[736,756],[714,757],[702,758],[707,759],[684,760],[711,761],[712,762],[708,763],[685,764],[696,765],[733,748],[679,766],[741,1],[706,767],[699,768],[727,1],[790,1],[718,1],[765,769],[728,770],[796,771],[797,772],[769,1],[795,773],[692,1],[719,1],[671,773],[698,774],[793,775],[697,776],[770,777],[709,1],[745,1],[746,778],[693,1],[710,1],[791,1],[667,15],[675,779],[672,1],[674,1],[1546,780],[1473,781],[1474,782],[1477,783],[1469,784],[1476,785],[1472,786],[1467,1],[1478,787],[1479,788],[1536,789],[1517,1],[1537,790],[1519,791],[1544,792],[1538,1],[1540,793],[1541,793],[1542,794],[1539,1],[1543,795],[1522,796],[1520,1],[1521,797],[1535,798],[1518,1],[1533,799],[1524,800],[1525,801],[1526,800],[1527,800],[1534,802],[1528,801],[1529,799],[1530,800],[1531,801],[1532,800],[1259,15],[1493,1],[174,1],[1491,803],[1304,1],[1297,1],[60,1],[61,1],[10,1],[11,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[22,1],[23,1],[4,1],[24,1],[28,1],[25,1],[26,1],[27,1],[29,1],[30,1],[31,1],[5,1],[32,1],[33,1],[34,1],[35,1],[6,1],[39,1],[36,1],[37,1],[38,1],[40,1],[7,1],[41,1],[46,1],[47,1],[42,1],[43,1],[44,1],[45,1],[8,1],[51,1],[48,1],[49,1],[50,1],[52,1],[9,1],[53,1],[54,1],[55,1],[57,1],[56,1],[58,1],[1,1],[59,1],[1373,804],[1385,805],[1370,806],[1386,807],[1395,808],[1361,809],[1362,810],[1360,811],[1394,812],[1389,813],[1393,814],[1364,815],[1382,816],[1363,817],[1392,818],[1358,819],[1359,813],[1365,820],[1366,1],[1372,821],[1369,820],[1356,822],[1396,823],[1387,824],[1376,825],[1375,820],[1377,826],[1380,827],[1374,828],[1378,829],[1390,812],[1367,830],[1368,831],[1381,832],[1357,807],[1384,833],[1383,820],[1371,831],[1379,834],[1388,1],[1355,1],[1391,835],[1182,325],[664,836],[688,837],[1283,838],[1548,839],[1286,840],[1513,1],[1515,841],[1514,1],[1509,842],[1507,843],[1508,844],[1496,845],[1497,843],[1504,846],[1495,847],[1500,848],[1510,1],[1501,849],[1506,850],[1512,851],[1511,852],[1494,853],[1502,854],[1503,855],[1498,856],[1505,842],[1499,857],[1284,838],[1282,1],[1285,858],[1547,1],[1545,859],[1481,860],[1516,861],[1475,862],[1492,863],[1482,864],[2017,865],[2022,866],[2016,867],[1305,868],[1294,869],[1290,870],[2013,1],[1291,313],[1312,871],[1306,872],[2020,873],[2019,874],[1292,875],[1311,876],[1281,1],[1293,877],[2021,878],[1319,879],[1313,880],[1307,1],[2011,881],[2106,882],[2100,883],[2104,884],[2101,884],[2097,883],[2105,885],[2102,886],[2103,884],[2098,887],[2099,888],[2093,889],[2037,890],[2039,891],[2092,1],[2038,892],[2096,893],[2095,894],[2094,895],[2030,1],[2040,890],[2041,1],[2032,896],[2036,897],[2031,1],[2033,898],[2034,899],[2035,1],[2042,900],[2043,900],[2044,900],[2045,900],[2046,900],[2047,900],[2048,900],[2049,900],[2050,900],[2051,900],[2052,900],[2053,900],[2054,900],[2056,900],[2055,900],[2057,900],[2058,900],[2059,900],[2060,900],[2091,901],[2061,900],[2062,900],[2063,900],[2064,900],[2065,900],[2066,900],[2067,900],[2068,900],[2069,900],[2070,900],[2071,900],[2072,900],[2073,900],[2075,900],[2074,900],[2076,900],[2077,900],[2078,900],[2079,900],[2080,900],[2081,900],[2082,900],[2083,900],[2084,900],[2085,900],[2086,900],[2087,900],[2090,900],[2088,900],[2089,900],[1268,902],[176,903],[175,904],[177,905],[178,903],[179,906],[183,907],[185,908],[186,902],[188,909],[187,906],[623,910],[624,911],[661,912],[799,913],[800,902],[801,905],[1177,914],[1179,915],[1180,902],[1269,1],[1181,902],[1183,916],[1184,902],[1185,917],[1186,904],[1222,918],[1266,919],[1264,15],[1265,15],[1223,903],[1225,920],[1267,921],[1227,904],[1229,922],[1226,911],[1230,906],[1231,923],[1232,903],[1270,902],[1233,924],[1234,925],[1235,924],[1236,903],[1237,903],[1238,902],[1240,926],[1241,903],[1242,902],[1244,927],[1245,902],[1246,925],[1247,923],[1248,903],[1260,928],[1249,929],[1250,911],[1252,930],[1253,903],[1254,911],[1255,906],[1256,911],[1258,931],[1262,906],[1261,906],[1263,903],[1343,932],[1323,933],[2111,934],[2110,935]],"affectedFilesPendingEmit":[1268,176,175,177,178,179,183,185,186,188,187,623,624,661,799,800,801,1177,1179,1180,1181,1183,1184,1185,1186,1222,1266,1264,1265,1223,1225,1267,1227,1229,1226,1230,1231,1232,1270,1233,1234,1235,1236,1237,1238,1240,1241,1242,1244,1245,1246,1247,1248,1260,1249,1250,1252,1253,1254,1255,1256,1258,1262,1261,1263,1343,2111],"version":"6.0.2"}
\ No newline at end of file
diff --git a/packages/ui/package.json b/packages/ui/package.json
index 4b1377e..e51ab47 100644
--- a/packages/ui/package.json
+++ b/packages/ui/package.json
@@ -12,23 +12,27 @@
"format": "prettier --check . --ignore-path ../../.gitignore",
"lint": "eslint --flag unstable_native_nodejs_ts_config",
"typecheck": "tsc --noEmit --emitDeclarationOnly false",
+ "test:unit": "vitest run --project unit --passWithNoTests",
+ "test:integration": "vitest run --project integration --passWithNoTests",
+ "test:component": "NODE_ENV=test vitest run --project component",
"ui-add": "bunx --bun shadcn@latest add && prettier src --write --list-different"
},
"dependencies": {
"@base-ui/react": "^1.3.0",
"@hookform/resolvers": "^5.2.2",
- "@radix-ui/react-avatar": "^1.1.10",
+ "@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-icons": "^1.3.2",
- "@radix-ui/react-label": "^2.1.7",
- "@radix-ui/react-progress": "^1.1.7",
+ "@radix-ui/react-label": "^2.1.8",
+ "@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-scroll-area": "^1.2.10",
- "@radix-ui/react-separator": "^1.1.7",
- "@radix-ui/react-slot": "^1.2.3",
+ "@radix-ui/react-separator": "^1.1.8",
+ "@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
+ "@tabler/icons-react": "^3.41.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
@@ -36,26 +40,31 @@
"embla-carousel-react": "^8.6.0",
"input-otp": "^1.4.2",
"lucide-react": "^0.577.0",
+ "motion": "^12.38.0",
"next-themes": "^0.4.6",
"radix-ui": "^1.4.3",
"react-day-picker": "^9.14.0",
- "react-hook-form": "^7.65.0",
+ "react-hook-form": "^7.72.0",
"react-image-crop": "^11.0.10",
- "react-resizable-panels": "^4",
- "recharts": "^3.8.0",
+ "react-resizable-panels": "^4.7.6",
+ "recharts": "^3.8.1",
"sonner": "^2.0.7",
- "tailwind-merge": "^3.3.1",
+ "tailwind-merge": "^3.5.0",
"vaul": "^1.1.2"
},
"devDependencies": {
"@gib/eslint-config": "workspace:*",
"@gib/prettier-config": "workspace:*",
"@gib/tsconfig": "workspace:*",
+ "@gib/vitest-config": "workspace:*",
+ "@testing-library/react": "catalog:test",
"@types/react": "catalog:react19",
"eslint": "catalog:",
+ "jsdom": "catalog:test",
"prettier": "catalog:",
"react": "catalog:react19",
"typescript": "catalog:",
+ "vitest": "catalog:test",
"zod": "catalog:"
},
"peerDependencies": {
diff --git a/packages/ui/src/based-avatar.tsx b/packages/ui/src/based-avatar.tsx
index ede09d0..24dc136 100644
--- a/packages/ui/src/based-avatar.tsx
+++ b/packages/ui/src/based-avatar.tsx
@@ -4,12 +4,12 @@ import type { ComponentProps } from 'react';
import * as AvatarPrimitive from '@radix-ui/react-avatar';
import { User } from 'lucide-react';
-import { AvatarImage, cn } from '@gib/ui';
+import { cn } from '@gib/ui';
type BasedAvatarProps = ComponentProps & {
src?: string | null;
fullName?: string | null;
- imageProps?: Omit, 'data-slot'>;
+ imageProps?: Omit, 'data-slot'>;
fallbackProps?: ComponentProps;
userIconProps?: ComponentProps;
};
@@ -35,7 +35,7 @@ const BasedAvatar = ({
{...props}
>
{src ? (
-
);
diff --git a/packages/ui/src/carousel.tsx b/packages/ui/src/carousel.tsx
index 3a8ea9e..2ff16dd 100644
--- a/packages/ui/src/carousel.tsx
+++ b/packages/ui/src/carousel.tsx
@@ -98,7 +98,7 @@ const Carousel = ({
api.on('select', onSelect);
return () => {
- api?.off('select', onSelect);
+ api.off('select', onSelect);
};
}, [api, onSelect]);
@@ -108,8 +108,7 @@ const Carousel = ({
carouselRef,
api: api,
opts,
- orientation:
- orientation || (opts?.axis === 'y' ? 'vertical' : 'horizontal'),
+ orientation: orientation,
scrollPrev,
scrollNext,
canScrollPrev,
diff --git a/packages/ui/src/chart.tsx b/packages/ui/src/chart.tsx
index fdb507c..b3255a1 100644
--- a/packages/ui/src/chart.tsx
+++ b/packages/ui/src/chart.tsx
@@ -48,7 +48,7 @@ const ChartContainer = ({
>['children'];
}) => {
const uniqueId = React.useId();
- const chartId = `chart-${id || uniqueId.replace(/:/g, '')}`;
+ const chartId = `chart-${id ?? uniqueId.replace(/:/g, '')}`;
return (
@@ -72,7 +72,7 @@ const ChartContainer = ({
const ChartStyle = ({ id, config }: { id: string; config: ChartConfig }) => {
const colorConfig = Object.entries(config).filter(
- ([, config]) => config.theme || config.color,
+ ([, config]) => config.theme ?? config.color,
);
if (!colorConfig.length) {
@@ -89,7 +89,7 @@ ${prefix} [data-chart=${id}] {
${colorConfig
.map(([key, itemConfig]) => {
const color =
- itemConfig.theme?.[theme as keyof typeof itemConfig.theme] ||
+ itemConfig.theme?.[theme as keyof typeof itemConfig.theme] ??
itemConfig.color;
return color ? ` --color-${key}: ${color};` : null;
})
@@ -105,6 +105,15 @@ ${colorConfig
const ChartTooltip = RechartsPrimitive.Tooltip;
+type ChartPayloadItem = {
+ name?: string | number;
+ value?: number | string;
+ dataKey?: string | number;
+ type?: string;
+ color?: string;
+ payload?: Record & { fill?: string };
+};
+
const ChartTooltipContent = ({
active,
payload,
@@ -119,14 +128,29 @@ const ChartTooltipContent = ({
color,
nameKey,
labelKey,
-}: React.ComponentProps &
- React.ComponentProps<'div'> & {
- hideLabel?: boolean;
- hideIndicator?: boolean;
- indicator?: 'line' | 'dot' | 'dashed';
- nameKey?: string;
- labelKey?: string;
- }) => {
+}: React.ComponentProps<'div'> & {
+ active?: boolean;
+ payload?: ChartPayloadItem[];
+ label?: React.ReactNode;
+ labelFormatter?: (
+ value: React.ReactNode,
+ payload: ChartPayloadItem[],
+ ) => React.ReactNode;
+ formatter?: (
+ value: number | string,
+ name: string | number,
+ item: ChartPayloadItem,
+ index: number,
+ itemPayload: ChartPayloadItem['payload'],
+ ) => React.ReactNode;
+ color?: string;
+ labelClassName?: string;
+ hideLabel?: boolean;
+ hideIndicator?: boolean;
+ indicator?: 'line' | 'dot' | 'dashed';
+ nameKey?: string;
+ labelKey?: string;
+}) => {
const { config } = useChart();
const tooltipLabel = React.useMemo(() => {
@@ -135,11 +159,11 @@ const ChartTooltipContent = ({
}
const [item] = payload;
- const key = `${labelKey || item?.dataKey || item?.name || 'value'}`;
+ const key = `${labelKey ?? item?.dataKey ?? item?.name ?? 'value'}`;
const itemConfig = getPayloadConfigFromPayload(config, item, key);
const value =
!labelKey && typeof label === 'string'
- ? config[label]?.label || label
+ ? (config[label]?.label ?? label)
: itemConfig?.label;
if (labelFormatter) {
@@ -183,19 +207,19 @@ const ChartTooltipContent = ({
{payload
.filter((item) => item.type !== 'none')
.map((item, index) => {
- const key = `${nameKey || item.name || item.dataKey || 'value'}`;
+ const key = `${nameKey ?? item.name ?? item.dataKey ?? 'value'}`;
const itemConfig = getPayloadConfigFromPayload(config, item, key);
- const indicatorColor = color || item.payload.fill || item.color;
+ const indicatorColor = color ?? item.payload?.fill ?? item.color;
return (
svg]:text-muted-foreground flex w-full flex-wrap items-stretch gap-2 [&>svg]:h-2.5 [&>svg]:w-2.5',
indicator === 'dot' && 'items-center',
)}
>
- {formatter && item?.value !== undefined && item.name ? (
+ {formatter && item.value !== undefined && item.name ? (
formatter(item.value, item.name, item, index, item.payload)
) : (
<>
@@ -232,7 +256,7 @@ const ChartTooltipContent = ({
{nestLabel ? tooltipLabel : null}
- {itemConfig?.label || item.name}
+ {itemConfig?.label ?? item.name}
{item.value && (
@@ -259,11 +283,12 @@ const ChartLegendContent = ({
payload,
verticalAlign = 'bottom',
nameKey,
-}: React.ComponentProps<'div'> &
- Pick
& {
- hideIcon?: boolean;
- nameKey?: string;
- }) => {
+}: React.ComponentProps<'div'> & {
+ payload?: ChartPayloadItem[];
+ verticalAlign?: 'top' | 'bottom';
+ hideIcon?: boolean;
+ nameKey?: string;
+}) => {
const { config } = useChart();
if (!payload?.length) {
@@ -280,13 +305,13 @@ const ChartLegendContent = ({
>
{payload
.filter((item) => item.type !== 'none')
- .map((item) => {
- const key = `${nameKey || item.dataKey || 'value'}`;
+ .map((item, index) => {
+ const key = `${nameKey ?? item.dataKey ?? 'value'}`;
const itemConfig = getPayloadConfigFromPayload(config, item, key);
return (
svg]:text-muted-foreground flex items-center gap-1.5 [&>svg]:h-3 [&>svg]:w-3',
)}
diff --git a/packages/ui/src/combobox.tsx b/packages/ui/src/combobox.tsx
index 3cafed6..24ba9a1 100644
--- a/packages/ui/src/combobox.tsx
+++ b/packages/ui/src/combobox.tsx
@@ -68,13 +68,16 @@ const ComboboxInput = ({
/>
{showTrigger && (
- }
- data-slot='input-group-button'
- className='group-has-data-[slot=combobox-clear]/input-group:hidden data-pressed:bg-transparent'
- disabled={disabled}
+
+ }
/>
)}
{showClear && }
diff --git a/packages/ui/src/css.d.ts b/packages/ui/src/css.d.ts
new file mode 100644
index 0000000..35306c6
--- /dev/null
+++ b/packages/ui/src/css.d.ts
@@ -0,0 +1 @@
+declare module '*.css';
diff --git a/packages/ui/src/form.tsx b/packages/ui/src/form.tsx
index 80f9a50..0d80f41 100644
--- a/packages/ui/src/form.tsx
+++ b/packages/ui/src/form.tsx
@@ -46,10 +46,6 @@ const useFormField = () => {
const formState = useFormState({ name: fieldContext.name });
const fieldState = getFieldState(fieldContext.name, formState);
- if (!fieldContext) {
- throw new Error('useFormField should be used within ');
- }
-
const { id } = itemContext;
return {
@@ -138,7 +134,7 @@ const FormDescription = ({
const FormMessage = ({ className, ...props }: React.ComponentProps<'p'>) => {
const { error, formMessageId } = useFormField();
- const body = error ? String(error?.message ?? '') : props.children;
+ const body = error ? String(error.message ?? '') : props.children;
if (!body) {
return null;
diff --git a/packages/ui/src/hooks/use-on-click-outside.tsx b/packages/ui/src/hooks/use-on-click-outside.tsx
index 65b5e7b..6e24f88 100644
--- a/packages/ui/src/hooks/use-on-click-outside.tsx
+++ b/packages/ui/src/hooks/use-on-click-outside.tsx
@@ -1,5 +1,4 @@
import * as React from 'react';
-import { MousePointerClick, X } from 'lucide-react';
type EventType =
| 'mousedown'
diff --git a/packages/ui/src/image-crop.tsx b/packages/ui/src/image-crop.tsx
index 9249a5b..8f3e25b 100644
--- a/packages/ui/src/image-crop.tsx
+++ b/packages/ui/src/image-crop.tsx
@@ -153,7 +153,7 @@ export const ImageCrop = ({
useEffect(() => {
const reader = new FileReader();
reader.addEventListener('load', () =>
- setImgSrc(reader.result?.toString() || ''),
+ setImgSrc(typeof reader.result === 'string' ? reader.result : ''),
);
reader.readAsDataURL(file);
}, [file]);
@@ -173,12 +173,13 @@ export const ImageCrop = ({
onChange?.(pixelCrop, percentCrop);
};
- const handleComplete = async (
+ const handleComplete = (
pixelCrop: PixelCrop,
percentCrop: PercentCrop,
- ) => {
+ ): Promise => {
setCompletedCrop(pixelCrop);
onComplete?.(pixelCrop, percentCrop);
+ return Promise.resolve();
};
const applyCrop = async () => {
@@ -293,19 +294,17 @@ export const ImageCropApply = ({
if (asChild) {
return (
-
+ )}
+ >
{children}
);
}
return (
-
+
{children ?? }
);
@@ -330,19 +329,17 @@ export const ImageCropReset = ({
if (asChild) {
return (
-
+ )}
+ >
{children}
);
}
return (
-
+
{children ?? }
);
@@ -372,7 +369,15 @@ export const Cropper = ({
onChange={onChange}
onComplete={onComplete}
onCrop={onCrop}
- {...(props as any)}
+ {...(props as Omit<
+ ImageCropProps,
+ | 'file'
+ | 'maxImageSize'
+ | 'onChange'
+ | 'onComplete'
+ | 'onCrop'
+ | 'children'
+ >)}
>
diff --git a/packages/ui/src/input-otp.tsx b/packages/ui/src/input-otp.tsx
index 6c8d77d..f044ec1 100644
--- a/packages/ui/src/input-otp.tsx
+++ b/packages/ui/src/input-otp.tsx
@@ -47,7 +47,7 @@ const InputOTPSlot = ({
index: number;
}) => {
const inputOTPContext = React.useContext(OTPInputContext);
- const { char, hasFakeCaret, isActive } = inputOTPContext?.slots[index] ?? {};
+ const { char, hasFakeCaret, isActive } = inputOTPContext.slots[index] ?? {};
return (
);
diff --git a/packages/ui/src/sidebar.tsx b/packages/ui/src/sidebar.tsx
index 71e04b6..b8ba12b 100644
--- a/packages/ui/src/sidebar.tsx
+++ b/packages/ui/src/sidebar.tsx
@@ -602,9 +602,9 @@ const SidebarMenuSkeleton = ({
showIcon?: boolean;
}) => {
// Random width between 50 to 90%.
- const width = React.useMemo(() => {
- return `${Math.floor(Math.random() * 40) + 50}%`;
- }, []);
+ const [width] = React.useState(
+ () => `${Math.floor(Math.random() * 40) + 50}%`,
+ );
return (
{
+ it('renders its children', () => {
+ render(Click me );
+ expect(
+ screen.getByRole('button', { name: 'Click me' }),
+ ).toBeInTheDocument();
+ });
+});
diff --git a/packages/ui/tests/jest-dom.d.ts b/packages/ui/tests/jest-dom.d.ts
new file mode 100644
index 0000000..bb02c60
--- /dev/null
+++ b/packages/ui/tests/jest-dom.d.ts
@@ -0,0 +1 @@
+import '@testing-library/jest-dom/vitest';
diff --git a/packages/ui/tsconfig.json b/packages/ui/tsconfig.json
index 5deccca..724cd03 100644
--- a/packages/ui/tsconfig.json
+++ b/packages/ui/tsconfig.json
@@ -5,6 +5,6 @@
"jsx": "preserve",
"rootDir": "."
},
- "include": ["src"],
+ "include": ["src", "tests", "vitest.config.ts"],
"exclude": ["node_modules"]
}
diff --git a/packages/ui/vitest.config.ts b/packages/ui/vitest.config.ts
new file mode 100644
index 0000000..fa7f626
--- /dev/null
+++ b/packages/ui/vitest.config.ts
@@ -0,0 +1,13 @@
+import { defineConfig } from 'vitest/config';
+
+import { jsdomProject, nodeProject } from '@gib/vitest-config';
+
+export default defineConfig({
+ test: {
+ projects: [
+ nodeProject('unit', ['tests/unit/**/*.test.{ts,tsx}']),
+ nodeProject('integration', ['tests/integration/**/*.test.{ts,tsx}']),
+ jsdomProject('component', ['tests/component/**/*.test.{ts,tsx}']),
+ ],
+ },
+});
diff --git a/scripts/build-next-app b/scripts/build-next-app
new file mode 100755
index 0000000..a94ec83
--- /dev/null
+++ b/scripts/build-next-app
@@ -0,0 +1,12 @@
+#!/usr/bin/env bash
+set -euo pipefail
+
+ROOT_DIR="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")/.." && pwd)"
+ENVIRONMENT="${1:-staging}"
+[[ "$ENVIRONMENT" == dev || "$ENVIRONMENT" == staging ]] || { echo "usage: build-next-app [dev|staging]" >&2; exit 2; }
+ENV_FILE="${CI_ENV_FILE:-}"
+cleanup() { [[ -n "$ENV_FILE" && "$ENV_FILE" != "${CI_ENV_FILE:-}" ]] && rm -f "$ENV_FILE" || true; }
+trap cleanup EXIT
+if [[ -z "$ENV_FILE" && -z "${CI:-}" ]]; then ENV_FILE="$(mktemp)"; sh "$ROOT_DIR/scripts/export-env" "$ENVIRONMENT" > "$ENV_FILE"; fi
+args=(); [[ -z "$ENV_FILE" ]] || args+=(--env-file "$ENV_FILE")
+docker compose "${args[@]}" -f "$ROOT_DIR/docker/compose.yml" build convexmonorepo-next
diff --git a/scripts/db/down b/scripts/db/down
new file mode 100755
index 0000000..63451b0
--- /dev/null
+++ b/scripts/db/down
@@ -0,0 +1,30 @@
+#!/usr/bin/env bash
+set -euo pipefail
+
+SCRIPT_DIR="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd)"
+ROOT_DIR="$(cd -- "$SCRIPT_DIR/../.." && pwd)"
+COMPOSE_FILE="$ROOT_DIR/docker/compose.local.yml"
+STATE_FILE="$ROOT_DIR/.local/dev.generated.env"
+WIPE=false
+[ "${1:-}" = "--wipe" ] && WIPE=true
+
+if command -v docker >/dev/null 2>&1; then RUNTIME=docker
+elif command -v podman >/dev/null 2>&1; then RUNTIME=podman
+else echo "Docker or Podman not found; nothing to stop." >&2; exit 0; fi
+
+ENV_FILE="$(mktemp "${TMPDIR:-/tmp}/convex-monorepo-local.XXXXXX.env")"
+trap 'rm -f "$ENV_FILE"' EXIT
+sh "$ROOT_DIR/scripts/export-env" dev > "$ENV_FILE"
+
+if [ "$WIPE" = true ]; then
+ "$RUNTIME" compose --env-file "$ENV_FILE" -f "$COMPOSE_FILE" down -v
+ if [ -f "$STATE_FILE" ]; then
+ tmp="${STATE_FILE}.tmp"
+ grep -v '^CONVEX_SELF_HOSTED_ADMIN_KEY=' "$STATE_FILE" > "$tmp" || true
+ mv "$tmp" "$STATE_FILE"
+ fi
+ echo "Local stack and Convex data volume removed; generated admin key cleared."
+else
+ "$RUNTIME" compose --env-file "$ENV_FILE" -f "$COMPOSE_FILE" down
+ echo "Local stack stopped; Convex data preserved."
+fi
diff --git a/scripts/db/up b/scripts/db/up
new file mode 100755
index 0000000..f7bba2d
--- /dev/null
+++ b/scripts/db/up
@@ -0,0 +1,85 @@
+#!/usr/bin/env bash
+set -euo pipefail
+
+SCRIPT_DIR="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd)"
+ROOT_DIR="$(cd -- "$SCRIPT_DIR/../.." && pwd)"
+COMPOSE_FILE="$ROOT_DIR/docker/compose.local.yml"
+STATE_FILE="$ROOT_DIR/.local/dev.generated.env"
+ENV_FILE=""
+
+info() { printf '▶ %s\n' "$*"; }
+die() { printf 'Error: %s\n' "$*" >&2; exit 1; }
+
+if command -v docker >/dev/null 2>&1; then RUNTIME=docker
+elif command -v podman >/dev/null 2>&1; then RUNTIME=podman
+else die "Docker or Podman is required."; fi
+"$RUNTIME" info >/dev/null 2>&1 || die "$RUNTIME is not usable."
+
+mkdir -p "$ROOT_DIR/.local"
+cleanup() { [ -z "$ENV_FILE" ] || rm -f "$ENV_FILE"; }
+trap cleanup EXIT
+
+refresh_env() {
+ local next
+ next="$(mktemp "${TMPDIR:-/tmp}/convex-monorepo-local.XXXXXX.env")"
+ sh "$ROOT_DIR/scripts/export-env" dev > "$next" || { rm -f "$next"; die "Unable to export Infisical dev."; }
+ [ -z "$ENV_FILE" ] || rm -f "$ENV_FILE"
+ ENV_FILE="$next"
+ set -a
+ # shellcheck disable=SC1090
+ source "$ENV_FILE"
+ set +a
+}
+dc() { "$RUNTIME" compose --env-file "$ENV_FILE" -f "$COMPOSE_FILE" "$@"; }
+upsert_state() {
+ local key="$1" value="$2" tmp escaped
+ tmp="$(mktemp "${TMPDIR:-/tmp}/convex-monorepo-state.XXXXXX.env")"
+ [ ! -f "$STATE_FILE" ] || grep -v "^${key}=" "$STATE_FILE" > "$tmp" || true
+ escaped="$(printf '%s' "$value" | sed "s/'/'\\\\''/g")"
+ printf "%s='%s'\n" "$key" "$escaped" >> "$tmp"
+ mv "$tmp" "$STATE_FILE"
+}
+
+refresh_env
+info "Starting local Convex and dashboard"
+dc up -d
+
+info "Waiting for Convex at http://localhost:${BACKEND_PORT:-3210}"
+for i in $(seq 1 60); do
+ curl -fs "http://localhost:${BACKEND_PORT:-3210}/version" >/dev/null 2>&1 && break
+ [ "$i" -lt 60 ] || die "Convex did not become ready."
+ sleep 2
+done
+
+if [ -z "${CONVEX_SELF_HOSTED_ADMIN_KEY:-}" ]; then
+ admin_key="$(dc exec -T convex-backend ./generate_admin_key.sh 2>/dev/null | grep -E '.+\|.+' | tail -n1 | tr -d '\r')"
+ [ -n "$admin_key" ] || die "Unable to generate the Convex admin key."
+ upsert_state CONVEX_SELF_HOSTED_ADMIN_KEY "$admin_key"
+ refresh_env
+ info "Generated the machine-local Convex admin key"
+fi
+
+info "Deploying Convex schema and functions"
+(cd "$ROOT_DIR/packages/backend" && bun run setup)
+
+convex_env_names="$(
+ sh "$ROOT_DIR/scripts/with-env" dev -- bash -c \
+ 'cd packages/backend && bunx convex env list' 2>/dev/null \
+ | sed -n 's/^\([A-Za-z_][A-Za-z0-9_]*\)=.*/\1/p'
+)"
+if ! printf '%s\n' "$convex_env_names" | grep -qx 'JWT_PRIVATE_KEY' \
+ || ! printf '%s\n' "$convex_env_names" | grep -qx 'JWKS' \
+ || ! printf '%s\n' "$convex_env_names" | grep -qx 'SITE_URL'; then
+ info "Configuring local Convex Auth keys"
+ auth_keys="$(node "$ROOT_DIR/scripts/generate-convex-auth-keys.mjs")"
+ jwt="$(printf '%s\n' "$auth_keys" | sed -n 's/^JWT_PRIVATE_KEY="\(.*\)"$/\1/p')"
+ jwks="$(printf '%s\n' "$auth_keys" | sed -n 's/^JWKS=//p')"
+ JWT_VAL="$jwt" JWKS_VAL="$jwks" sh "$ROOT_DIR/scripts/with-env" dev -- bash -c '
+ cd packages/backend
+ bunx convex env set "JWT_PRIVATE_KEY=$JWT_VAL" >/dev/null
+ bunx convex env set "JWKS=$JWKS_VAL" >/dev/null
+ bunx convex env set "SITE_URL=http://localhost:3000" >/dev/null
+ '
+fi
+
+printf '\nLocal stack ready:\n App: http://localhost:3000\n Convex: http://localhost:%s\n Dashboard: http://localhost:%s\n' "${BACKEND_PORT:-3210}" "${DASHBOARD_PORT:-6791}"
diff --git a/scripts/docker-compose b/scripts/docker-compose
new file mode 100755
index 0000000..4a6e047
--- /dev/null
+++ b/scripts/docker-compose
@@ -0,0 +1,27 @@
+#!/usr/bin/env bash
+set -euo pipefail
+
+ROOT_DIR="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")/.." && pwd)"
+COMPOSE_FILE="$ROOT_DIR/docker/compose.yml"
+ENVIRONMENT="${1:-staging}"
+if [[ "$ENVIRONMENT" == dev || "$ENVIRONMENT" == staging ]]; then shift || true; else ENVIRONMENT=staging; fi
+
+ENV_FILE="${CI_ENV_FILE:-}"
+cleanup() { [[ -n "$ENV_FILE" && "$ENV_FILE" != "${CI_ENV_FILE:-}" ]] && rm -f "$ENV_FILE" || true; }
+trap cleanup EXIT
+if [[ -z "$ENV_FILE" && -z "${CI:-}" ]]; then
+ ENV_FILE="$(mktemp "${TMPDIR:-/tmp}/convex-monorepo-compose.XXXXXX.env")"
+ sh "$ROOT_DIR/scripts/export-env" "$ENVIRONMENT" > "$ENV_FILE"
+fi
+
+args=()
+[[ -z "$ENV_FILE" ]] || args+=(--env-file "$ENV_FILE")
+translated=()
+for arg in "$@"; do
+ case "$arg" in backend) translated+=(convexmonorepo-backend) ;; dashboard) translated+=(convexmonorepo-dashboard) ;; next) translated+=(convexmonorepo-next) ;; *) translated+=("$arg") ;; esac
+done
+set +e
+docker compose "${args[@]}" -f "$COMPOSE_FILE" "${translated[@]}"
+status=$?
+set -e
+exit "$status"
diff --git a/scripts/e2e b/scripts/e2e
new file mode 100755
index 0000000..a481236
--- /dev/null
+++ b/scripts/e2e
@@ -0,0 +1,10 @@
+#!/usr/bin/env bash
+set -euo pipefail
+
+if [ -n "${CI:-}" ]; then echo "CI detected; skipping local e2e."; exit 0; fi
+if [ -n "${SKIP_E2E:-}" ]; then echo "SKIP_E2E set; skipping local e2e."; exit 0; fi
+
+SCRIPT_DIR="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd)"
+ROOT_DIR="$(cd -- "$SCRIPT_DIR/.." && pwd)"
+bash "$ROOT_DIR/scripts/db/up"
+echo "Local-stack smoke checks passed; no seeded browser flow is configured."
diff --git a/scripts/export-env b/scripts/export-env
new file mode 100755
index 0000000..14412fe
--- /dev/null
+++ b/scripts/export-env
@@ -0,0 +1,34 @@
+#!/usr/bin/env sh
+set -eu
+
+[ "$#" -eq 1 ] || { echo "usage: export-env " >&2; exit 2; }
+ENVIRONMENT="$1"
+case "$ENVIRONMENT" in dev|staging) ;; *) echo "export-env: expected dev or staging" >&2; exit 2 ;; esac
+
+ROOT_DIR="$(cd "$(dirname "$0")/.." && pwd)"
+STATE_FILE="$ROOT_DIR/.local/$ENVIRONMENT.generated.env"
+
+if [ -n "${CI:-}" ]; then
+ echo "export-env: refusing to export secrets in CI; use injected variables or CI_ENV_FILE." >&2
+ exit 1
+fi
+
+[ -f "$ROOT_DIR/.infisical.json" ] || { echo "export-env: run 'infisical init' in this repository." >&2; exit 1; }
+command -v infisical >/dev/null 2>&1 || { echo "export-env: Infisical CLI is required." >&2; exit 1; }
+
+(cd "$ROOT_DIR" && infisical export --env="$ENVIRONMENT" --format=dotenv --silent) || {
+ echo "export-env: failed to export '$ENVIRONMENT'; check login and project access." >&2
+ exit 1
+}
+
+if [ -f "$STATE_FILE" ]; then
+ printf '\n'
+ while IFS= read -r line || [ -n "$line" ]; do
+ case "$line" in ''|'#'*) printf '%s\n' "$line"; continue ;; esac
+ key=${line%%=*}
+ value=${line#*=}
+ case "$value" in \'*\') value=${value#\'}; value=${value%\'} ;; \"*\") value=${value#\"}; value=${value%\"} ;; esac
+ escaped=$(printf '%s' "$value" | sed "s/'/'\\\\''/g")
+ printf "%s='%s'\n" "$key" "$escaped"
+ done < "$STATE_FILE"
+fi
diff --git a/scripts/generate-convex-admin-key b/scripts/generate-convex-admin-key
new file mode 100755
index 0000000..35a8934
--- /dev/null
+++ b/scripts/generate-convex-admin-key
@@ -0,0 +1,8 @@
+#!/usr/bin/env bash
+set -euo pipefail
+ROOT_DIR="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")/.." && pwd)"
+ENVIRONMENT="${1:-staging}"
+[[ "$ENVIRONMENT" == dev || "$ENVIRONMENT" == staging ]] || { echo "usage: generate-convex-admin-key [dev|staging]" >&2; exit 2; }
+ENV_FILE="$(mktemp)"; trap 'rm -f "$ENV_FILE"' EXIT
+sh "$ROOT_DIR/scripts/export-env" "$ENVIRONMENT" > "$ENV_FILE"
+docker compose --env-file "$ENV_FILE" -f "$ROOT_DIR/docker/compose.yml" exec convexmonorepo-backend ./generate_admin_key.sh
diff --git a/scripts/generate-convex-auth-keys.mjs b/scripts/generate-convex-auth-keys.mjs
new file mode 100644
index 0000000..647538f
--- /dev/null
+++ b/scripts/generate-convex-auth-keys.mjs
@@ -0,0 +1,16 @@
+#!/usr/bin/env node
+import { exportJWK, exportPKCS8, generateKeyPair } from 'jose';
+
+const keys = await generateKeyPair('RS256', {
+ extractable: true,
+});
+const privateKey = await exportPKCS8(keys.privateKey);
+const publicKey = await exportJWK(keys.publicKey);
+const jwks = JSON.stringify({ keys: [{ use: 'sig', ...publicKey }] });
+
+process.stdout.write(
+ `JWT_PRIVATE_KEY="${privateKey.trimEnd().replace(/\n/g, ' ')}"`,
+);
+process.stdout.write('\n');
+process.stdout.write(`JWKS=${jwks}`);
+process.stdout.write('\n');
diff --git a/scripts/patch-usesend.mjs b/scripts/patch-usesend.mjs
new file mode 100644
index 0000000..0d32c59
--- /dev/null
+++ b/scripts/patch-usesend.mjs
@@ -0,0 +1,102 @@
+import { readFile, writeFile } from 'node:fs/promises';
+import path from 'node:path';
+import { fileURLToPath } from 'node:url';
+
+const __filename = fileURLToPath(import.meta.url);
+const __dirname = path.dirname(__filename);
+const usesendDir = path.join(__dirname, '..', 'node_modules', 'usesend-js');
+
+const ensureReplacement = (content, searchValue, replaceValue, filePath) => {
+ if (content.includes(replaceValue)) {
+ return content;
+ }
+
+ if (!content.includes(searchValue)) {
+ throw new Error(`Expected snippet not found in ${filePath}`);
+ }
+
+ return content.replace(searchValue, replaceValue);
+};
+
+const patchFile = async (relativePath, replacements) => {
+ const filePath = path.join(usesendDir, relativePath);
+ let content = await readFile(filePath, 'utf8');
+
+ for (const [searchValue, replaceValue] of replacements) {
+ content = ensureReplacement(
+ content,
+ searchValue,
+ replaceValue,
+ relativePath,
+ );
+ }
+
+ await writeFile(filePath, content);
+};
+
+const patchUseSend = async () => {
+ const packageJsonPath = path.join(usesendDir, 'package.json');
+ const packageJson = JSON.parse(await readFile(packageJsonPath, 'utf8'));
+
+ if (packageJson.version !== '1.6.3') {
+ console.log(
+ `Skipping UseSend patch for version ${packageJson.version ?? 'unknown'}.`,
+ );
+ return;
+ }
+
+ const runtimeHelper = `function getNodeCrypto() {
+ const builtinModuleLoader = globalThis.process?.getBuiltinModule;
+ if (typeof builtinModuleLoader === "function") {
+ const nodeCrypto = builtinModuleLoader("node:crypto");
+ if (nodeCrypto) {
+ return nodeCrypto;
+ }
+ }
+ throw new WebhookVerificationError(
+ "UNSUPPORTED_RUNTIME",
+ "Webhook verification requires a Node.js runtime with node:crypto support"
+ );
+}
+`;
+
+ await patchFile('dist/index.mjs', [
+ ['import { createHmac, timingSafeEqual } from "crypto";\n', ''],
+ [
+ 'function computeSignature(secret, timestamp, body) {\n',
+ `${runtimeHelper}function computeSignature(secret, timestamp, body) {\n`,
+ ],
+ [
+ ' const hmac = createHmac("sha256", secret);\n',
+ ' const { createHmac } = getNodeCrypto();\n const hmac = createHmac("sha256", secret);\n',
+ ],
+ [
+ 'function safeEqual(a, b) {\n',
+ 'function safeEqual(a, b) {\n const { timingSafeEqual } = getNodeCrypto();\n',
+ ],
+ ]);
+
+ await patchFile('dist/index.js', [
+ ['var import_crypto = require("crypto");\n', ''],
+ [
+ 'function computeSignature(secret, timestamp, body) {\n',
+ `${runtimeHelper}function computeSignature(secret, timestamp, body) {\n`,
+ ],
+ [
+ ' const hmac = (0, import_crypto.createHmac)("sha256", secret);\n',
+ ' const { createHmac } = getNodeCrypto();\n const hmac = createHmac("sha256", secret);\n',
+ ],
+ [
+ 'function safeEqual(a, b) {\n',
+ 'function safeEqual(a, b) {\n const { timingSafeEqual } = getNodeCrypto();\n',
+ ],
+ [
+ ' return (0, import_crypto.timingSafeEqual)(aBuf, bBuf);\n',
+ ' return timingSafeEqual(aBuf, bBuf);\n',
+ ],
+ ]);
+
+ console.log('Patched usesend-js 1.6.3 for Convex-compatible bundling.');
+};
+
+await patchUseSend();
diff --git a/scripts/update-convex b/scripts/update-convex
new file mode 100755
index 0000000..e882158
--- /dev/null
+++ b/scripts/update-convex
@@ -0,0 +1,9 @@
+#!/usr/bin/env bash
+set -euo pipefail
+ROOT_DIR="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")/.." && pwd)"
+ENVIRONMENT="${1:-staging}"
+[[ "$ENVIRONMENT" == dev || "$ENVIRONMENT" == staging ]] || { echo "usage: update-convex [dev|staging]" >&2; exit 2; }
+ENV_FILE="$(mktemp)"; trap 'rm -f "$ENV_FILE"' EXIT
+sh "$ROOT_DIR/scripts/export-env" "$ENVIRONMENT" > "$ENV_FILE"
+docker compose --env-file "$ENV_FILE" -f "$ROOT_DIR/docker/compose.yml" pull convexmonorepo-backend convexmonorepo-dashboard
+docker compose --env-file "$ENV_FILE" -f "$ROOT_DIR/docker/compose.yml" up -d convexmonorepo-backend convexmonorepo-dashboard
diff --git a/scripts/update-next-app b/scripts/update-next-app
new file mode 100755
index 0000000..193c954
--- /dev/null
+++ b/scripts/update-next-app
@@ -0,0 +1,9 @@
+#!/usr/bin/env bash
+set -euo pipefail
+ROOT_DIR="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")/.." && pwd)"
+ENVIRONMENT="${1:-staging}"
+[[ "$ENVIRONMENT" == dev || "$ENVIRONMENT" == staging ]] || { echo "usage: update-next-app [dev|staging]" >&2; exit 2; }
+ENV_FILE="$(mktemp)"; trap 'rm -f "$ENV_FILE"' EXIT
+sh "$ROOT_DIR/scripts/export-env" "$ENVIRONMENT" > "$ENV_FILE"
+docker compose --env-file "$ENV_FILE" -f "$ROOT_DIR/docker/compose.yml" build convexmonorepo-next
+docker compose --env-file "$ENV_FILE" -f "$ROOT_DIR/docker/compose.yml" up -d convexmonorepo-next
diff --git a/scripts/with-env b/scripts/with-env
new file mode 100755
index 0000000..67af0a8
--- /dev/null
+++ b/scripts/with-env
@@ -0,0 +1,39 @@
+#!/usr/bin/env sh
+set -eu
+
+if [ "$#" -lt 1 ]; then
+ echo "usage: with-env -- [args...]" >&2
+ exit 2
+fi
+
+ENVIRONMENT="$1"
+shift
+[ "${1:-}" = "--" ] && shift
+[ "$#" -gt 0 ] || { echo "with-env: no command given" >&2; exit 2; }
+
+case "$ENVIRONMENT" in dev|staging) ;; *) echo "with-env: expected dev or staging" >&2; exit 2 ;; esac
+
+ROOT_DIR="$(cd "$(dirname "$0")/.." && pwd)"
+STATE_FILE="$ROOT_DIR/.local/$ENVIRONMENT.generated.env"
+
+if [ -n "${CI:-}" ]; then
+ export WITH_ENV_SOURCE=ci WITH_ENV_ENVIRONMENT="$ENVIRONMENT" WITH_ENV_STATE_FILE="$STATE_FILE"
+ exec "$@"
+fi
+
+command -v infisical >/dev/null 2>&1 || {
+ echo "with-env: install Infisical, run 'infisical login', and link this repo with 'infisical init'." >&2
+ exit 1
+}
+[ -f "$ROOT_DIR/.infisical.json" ] || { echo "with-env: .infisical.json is missing." >&2; exit 1; }
+
+TMP_ENV="$(mktemp "${TMPDIR:-/tmp}/convex-monorepo-$ENVIRONMENT.XXXXXX.env")"
+trap 'rm -f "$TMP_ENV"' EXIT INT TERM HUP
+sh "$ROOT_DIR/scripts/export-env" "$ENVIRONMENT" > "$TMP_ENV"
+
+export WITH_ENV_SOURCE=infisical WITH_ENV_ENVIRONMENT="$ENVIRONMENT" WITH_ENV_STATE_FILE="$STATE_FILE"
+set +e
+bunx dotenv -e "$TMP_ENV" -- "$@"
+status=$?
+set -e
+exit "$status"
diff --git a/tools/eslint/.cache/.prettiercache b/tools/eslint/.cache/.prettiercache
index 84da4b2..a342a57 100644
--- a/tools/eslint/.cache/.prettiercache
+++ b/tools/eslint/.cache/.prettiercache
@@ -1 +1 @@
-[["1","2","3","4","5","6"],{"key":"7","value":"8"},{"key":"9","value":"10"},{"key":"11","value":"12"},{"key":"13","value":"14"},{"key":"15","value":"16"},{"key":"17","value":"18"},"/home/gib/Documents/Code/convex-monorepo/tools/eslint/base.ts",{"size":2963,"mtime":1774544629518,"hash":"19","data":"20"},"/home/gib/Documents/Code/convex-monorepo/tools/eslint/nextjs.ts",{"size":440,"mtime":1768155639000,"hash":"21","data":"22"},"/home/gib/Documents/Code/convex-monorepo/tools/eslint/.cache/.prettiercache",{"size":1278,"mtime":1774544663913},"/home/gib/Documents/Code/convex-monorepo/tools/eslint/package.json",{"size":1033,"mtime":1774544387169,"hash":"23","data":"24"},"/home/gib/Documents/Code/convex-monorepo/tools/eslint/react.ts",{"size":592,"mtime":1768155639000,"hash":"25","data":"26"},"/home/gib/Documents/Code/convex-monorepo/tools/eslint/tsconfig.json",{"size":94,"mtime":1766222924000,"hash":"27","data":"28"},"6a779439826cf31b5561a21273d134a9",{"hashOfOptions":"29"},"25c52c46972131dcc296288599ff108d",{"hashOfOptions":"30"},"a5326aca75246da261fd2e354257b45a",{"hashOfOptions":"31"},"2292935ede6baf909f6a0c61486e15da",{"hashOfOptions":"32"},"b3c77d33a30318d89c9c2cafcbe00bbe",{"hashOfOptions":"33"},"1686097143","2347540204","302976953","3406150487","1582266352"]
\ No newline at end of file
+[["1","2","3","4","5","6","7","8","9","10","11"],{"key":"12","value":"13"},{"key":"14","value":"15"},{"key":"16","value":"17"},{"key":"18","value":"19"},{"key":"20","value":"21"},{"key":"22","value":"23"},{"key":"24","value":"25"},{"key":"26","value":"27"},{"key":"28","value":"29"},{"key":"30","value":"31"},{"key":"32","value":"33"},"/home/gib/Documents/Code/convex-monorepo/tools/eslint/base.ts",{"size":3633,"mtime":1782065095163,"hash":"34","data":"35"},"/home/gib/Documents/Code/Spoon/tools/eslint/base.ts",{"size":3633,"mtime":1782065095163,"data":"36"},"/home/gib/Documents/Code/convex-monorepo/tools/eslint/nextjs.ts",{"size":440,"mtime":1768155639000,"hash":"37","data":"38"},"/home/gib/Documents/Code/Spoon/tools/eslint/nextjs.ts",{"size":440,"mtime":1768155639000,"data":"39"},"/home/gib/Documents/Code/convex-monorepo/tools/eslint/.cache/.prettiercache",{"size":1279,"mtime":1782065457379},"/home/gib/Documents/Code/convex-monorepo/tools/eslint/package.json",{"size":1034,"mtime":1774588268325,"hash":"40","data":"41"},"/home/gib/Documents/Code/convex-monorepo/tools/eslint/react.ts",{"size":648,"mtime":1782065095163,"hash":"42","data":"43"},"/home/gib/Documents/Code/Spoon/tools/eslint/package.json",{"size":1034,"mtime":1774588268325,"data":"44"},"/home/gib/Documents/Code/Spoon/tools/eslint/react.ts",{"size":648,"mtime":1782065095163,"data":"45"},"/home/gib/Documents/Code/convex-monorepo/tools/eslint/tsconfig.json",{"size":206,"mtime":1782065095163,"hash":"46","data":"47"},"/home/gib/Documents/Code/Spoon/tools/eslint/tsconfig.json",{"size":206,"mtime":1782065095163,"data":"48"},"6a779439826cf31b5561a21273d134a9",{"hashOfOptions":"49"},{"hashOfOptions":"50"},"25c52c46972131dcc296288599ff108d",{"hashOfOptions":"51"},{"hashOfOptions":"52"},"a5326aca75246da261fd2e354257b45a",{"hashOfOptions":"53"},"2292935ede6baf909f6a0c61486e15da",{"hashOfOptions":"54"},{"hashOfOptions":"55"},{"hashOfOptions":"56"},"b3c77d33a30318d89c9c2cafcbe00bbe",{"hashOfOptions":"57"},{"hashOfOptions":"58"},"2972291121","3032047003","913597734","2300583312","3435599103","1812383389","2486684693","433345459","1457439786","582079124"]
\ No newline at end of file
diff --git a/tools/eslint/base.ts b/tools/eslint/base.ts
index b81d867..3ab3c22 100644
--- a/tools/eslint/base.ts
+++ b/tools/eslint/base.ts
@@ -11,6 +11,12 @@ import tseslint from 'typescript-eslint';
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const preferArrowPlugin = preferArrowFunctions as any;
+const turboRecommendedRules = (
+ turboPlugin as unknown as {
+ configs: { recommended: { rules: Record } };
+ }
+).configs.recommended.rules;
+
/**
* All packages that leverage t3-env should use this rule
*/
@@ -59,7 +65,7 @@ export const baseConfig = defineConfig(
...tseslint.configs.stylisticTypeChecked,
],
rules: {
- ...turboPlugin.configs.recommended.rules,
+ ...turboRecommendedRules,
'@typescript-eslint/no-unused-vars': [
'warn',
{ argsIgnorePattern: '^_', varsIgnorePattern: '^_' },
@@ -88,6 +94,22 @@ export const baseConfig = defineConfig(
],
},
},
+ {
+ files: [
+ '**/tests/**/*.{ts,tsx}',
+ '**/*.test.{ts,tsx}',
+ '**/*.spec.{ts,tsx}',
+ ],
+ rules: {
+ '@typescript-eslint/no-non-null-assertion': 'off',
+ '@typescript-eslint/no-unsafe-assignment': 'off',
+ '@typescript-eslint/no-unsafe-member-access': 'off',
+ '@typescript-eslint/no-unsafe-call': 'off',
+ '@typescript-eslint/no-unsafe-return': 'off',
+ '@typescript-eslint/no-unsafe-argument': 'off',
+ '@typescript-eslint/no-unnecessary-condition': 'off',
+ },
+ },
{
linterOptions: { reportUnusedDisableDirectives: true },
languageOptions: {
diff --git a/tools/eslint/package.json b/tools/eslint/package.json
index 0666d12..77d98cf 100644
--- a/tools/eslint/package.json
+++ b/tools/eslint/package.json
@@ -13,16 +13,16 @@
"typecheck": "tsc --noEmit"
},
"dependencies": {
- "@eslint/compat": "^1.4.0",
+ "@eslint/compat": "^2.0.3",
"@eslint/js": "catalog:",
- "@next/eslint-plugin-next": "^16.0.0",
+ "@next/eslint-plugin-next": "^16.2.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prefer-arrow-functions": "^3.9.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
- "eslint-plugin-turbo": "^2.5.8",
- "typescript-eslint": "^8.46.2"
+ "eslint-plugin-turbo": "^2.8.20",
+ "typescript-eslint": "^8.57.2"
},
"devDependencies": {
"@gib/prettier-config": "workspace:*",
diff --git a/tools/eslint/react.ts b/tools/eslint/react.ts
index 4b1d321..4f20c80 100644
--- a/tools/eslint/react.ts
+++ b/tools/eslint/react.ts
@@ -1,15 +1,18 @@
+import type { Linter } from 'eslint';
import reactPlugin from 'eslint-plugin-react';
import reactHooks from 'eslint-plugin-react-hooks';
import { defineConfig } from 'eslint/config';
+const reactFlat = reactPlugin.configs.flat as Record;
+
export const reactConfig = defineConfig(
{
files: ['**/*.ts', '**/*.tsx'],
- ...reactPlugin.configs.flat.recommended,
- ...reactPlugin.configs.flat['jsx-runtime'],
+ ...reactFlat.recommended,
+ ...reactFlat['jsx-runtime'],
languageOptions: {
- ...reactPlugin.configs.flat.recommended?.languageOptions,
- ...reactPlugin.configs.flat['jsx-runtime']?.languageOptions,
+ ...reactFlat.recommended?.languageOptions,
+ ...reactFlat['jsx-runtime']?.languageOptions,
globals: {
React: 'writable',
},
diff --git a/tools/eslint/tsconfig.json b/tools/eslint/tsconfig.json
index 2ee7f08..a90b785 100644
--- a/tools/eslint/tsconfig.json
+++ b/tools/eslint/tsconfig.json
@@ -1,5 +1,10 @@
{
"extends": "@gib/tsconfig/base.json",
+ "compilerOptions": {
+ "module": "NodeNext",
+ "moduleResolution": "NodeNext",
+ "types": ["node"]
+ },
"include": ["."],
"exclude": ["node_modules"]
}
diff --git a/tools/prettier/.cache/.prettiercache b/tools/prettier/.cache/.prettiercache
index 5ed52ce..4591375 100644
--- a/tools/prettier/.cache/.prettiercache
+++ b/tools/prettier/.cache/.prettiercache
@@ -1 +1 @@
-[["1","2","3","4"],{"key":"5","value":"6"},{"key":"7","value":"8"},{"key":"9","value":"10"},{"key":"11","value":"12"},"/home/gib/Documents/Code/convex-monorepo/tools/prettier/.cache/.prettiercache",{"size":832,"mtime":1774544663588},"/home/gib/Documents/Code/convex-monorepo/tools/prettier/index.js",{"size":1194,"mtime":1768372320442,"hash":"13","data":"14"},"/home/gib/Documents/Code/convex-monorepo/tools/prettier/package.json",{"size":607,"mtime":1774032385569,"hash":"15","data":"16"},"/home/gib/Documents/Code/convex-monorepo/tools/prettier/tsconfig.json",{"size":94,"mtime":1766222924000,"hash":"17","data":"18"},"ecbaa91166a940dfcec8117059f52402",{"hashOfOptions":"19"},"11b634ce56ac720ac9a2860d77fbd2cc",{"hashOfOptions":"20"},"b3c77d33a30318d89c9c2cafcbe00bbe",{"hashOfOptions":"21"},"1828250668","802511607","4250532914"]
\ No newline at end of file
+[["1","2","3","4","5","6","7"],{"key":"8","value":"9"},{"key":"10","value":"11"},{"key":"12","value":"13"},{"key":"14","value":"15"},{"key":"16","value":"17"},{"key":"18","value":"19"},{"key":"20","value":"21"},"/home/gib/Documents/Code/convex-monorepo/tools/prettier/.cache/.prettiercache",{"size":831,"mtime":1782065457221},"/home/gib/Documents/Code/convex-monorepo/tools/prettier/index.js",{"size":1194,"mtime":1768372320442,"hash":"22","data":"23"},"/home/gib/Documents/Code/Spoon/tools/prettier/index.js",{"size":1194,"mtime":1768372320442,"data":"24"},"/home/gib/Documents/Code/convex-monorepo/tools/prettier/package.json",{"size":607,"mtime":1774032385569,"hash":"25","data":"26"},"/home/gib/Documents/Code/Spoon/tools/prettier/package.json",{"size":607,"mtime":1774032385569,"data":"27"},"/home/gib/Documents/Code/convex-monorepo/tools/prettier/tsconfig.json",{"size":94,"mtime":1766222924000,"hash":"28","data":"29"},"/home/gib/Documents/Code/Spoon/tools/prettier/tsconfig.json",{"size":94,"mtime":1766222924000,"data":"30"},"ecbaa91166a940dfcec8117059f52402",{"hashOfOptions":"31"},{"hashOfOptions":"32"},"11b634ce56ac720ac9a2860d77fbd2cc",{"hashOfOptions":"33"},{"hashOfOptions":"34"},"b3c77d33a30318d89c9c2cafcbe00bbe",{"hashOfOptions":"35"},{"hashOfOptions":"36"},"714910834","994643592","2807242045","3735923027","663931756","1391543510"]
\ No newline at end of file
diff --git a/tools/tailwind/.cache/.eslintcache b/tools/tailwind/.cache/.eslintcache
index 06be5bc..4f2f00d 100644
--- a/tools/tailwind/.cache/.eslintcache
+++ b/tools/tailwind/.cache/.eslintcache
@@ -1 +1 @@
-[{"/home/gib/Documents/Code/convex-monorepo/tools/tailwind/postcss-config.js":"1"},{"size":70,"mtime":1768155639000,"results":"2","hashOfConfig":"3"},{"filePath":"4","messages":"5","suppressedMessages":"6","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"z9il2c","/home/gib/Documents/Code/convex-monorepo/tools/tailwind/postcss-config.js",[],[]]
\ No newline at end of file
+[{"/home/gib/Documents/Code/convex-monorepo/tools/tailwind/postcss-config.js":"1","/home/gib/Documents/Code/Spoon/tools/tailwind/postcss-config.js":"2"},{"size":70,"mtime":1768155639000,"results":"3","hashOfConfig":"4"},{"size":70,"mtime":1768155639000,"results":"5","hashOfConfig":"6"},{"filePath":"7","messages":"8","suppressedMessages":"9","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"zvlfqu",{"filePath":"10","messages":"11","suppressedMessages":"12","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"2ian8q","/home/gib/Documents/Code/convex-monorepo/tools/tailwind/postcss-config.js",[],[],"/home/gib/Documents/Code/Spoon/tools/tailwind/postcss-config.js",[],[]]
\ No newline at end of file
diff --git a/tools/tailwind/.cache/.prettiercache b/tools/tailwind/.cache/.prettiercache
index b4209c7..97fed64 100644
--- a/tools/tailwind/.cache/.prettiercache
+++ b/tools/tailwind/.cache/.prettiercache
@@ -1 +1 @@
-[["1","2","3","4","5","6","7"],{"key":"8","value":"9"},{"key":"10","value":"11"},{"key":"12","value":"13"},{"key":"14","value":"15"},{"key":"16","value":"17"},{"key":"18","value":"19"},{"key":"20","value":"21"},"/home/gib/Documents/Code/convex-monorepo/tools/tailwind/.cache/.eslintcache",{"size":396,"mtime":1774544641255},"/home/gib/Documents/Code/convex-monorepo/tools/tailwind/.cache/.prettiercache",{"size":1450,"mtime":1774544663751},"/home/gib/Documents/Code/convex-monorepo/tools/tailwind/package.json",{"size":851,"mtime":1774032407411,"hash":"22","data":"23"},"/home/gib/Documents/Code/convex-monorepo/tools/tailwind/tsconfig.json",{"size":94,"mtime":1766222924000,"hash":"24","data":"25"},"/home/gib/Documents/Code/convex-monorepo/tools/tailwind/eslint.config.ts",{"size":143,"mtime":1768155639000,"hash":"26","data":"27"},"/home/gib/Documents/Code/convex-monorepo/tools/tailwind/theme.css",{"size":7273,"mtime":1768320378000,"hash":"28","data":"29"},"/home/gib/Documents/Code/convex-monorepo/tools/tailwind/postcss-config.js",{"size":70,"mtime":1768155639000,"hash":"30","data":"31"},"0d22e47f57739db9de04c6f8420d6fb5",{"hashOfOptions":"32"},"b3c77d33a30318d89c9c2cafcbe00bbe",{"hashOfOptions":"33"},"b8fec960cb32340eea62ca1485093e68",{"hashOfOptions":"34"},"e40c2569ef375a9c828c80c0f9ce1bf2",{"hashOfOptions":"35"},"9a944fbda06979be39571bd9bd00b0d9",{"hashOfOptions":"36"},"286235122","2846522359","1288936688","2683656544","1694755693"]
\ No newline at end of file
+[["1","2","3","4","5","6","7","8","9","10","11","12"],{"key":"13","value":"14"},{"key":"15","value":"16"},{"key":"17","value":"18"},{"key":"19","value":"20"},{"key":"21","value":"22"},{"key":"23","value":"24"},{"key":"25","value":"26"},{"key":"27","value":"28"},{"key":"29","value":"30"},{"key":"31","value":"32"},{"key":"33","value":"34"},{"key":"35","value":"36"},"/home/gib/Documents/Code/convex-monorepo/tools/tailwind/.cache/.eslintcache",{"size":396,"mtime":1782065401300},"/home/gib/Documents/Code/convex-monorepo/tools/tailwind/.cache/.prettiercache",{"size":1451,"mtime":1782065457110},"/home/gib/Documents/Code/convex-monorepo/tools/tailwind/package.json",{"size":851,"mtime":1774032407411,"hash":"37","data":"38"},"/home/gib/Documents/Code/Spoon/tools/tailwind/package.json",{"size":851,"mtime":1774032407411,"data":"39"},"/home/gib/Documents/Code/convex-monorepo/tools/tailwind/tsconfig.json",{"size":114,"mtime":1782065138084,"hash":"40","data":"41"},"/home/gib/Documents/Code/Spoon/tools/tailwind/tsconfig.json",{"size":114,"mtime":1782065138084,"data":"42"},"/home/gib/Documents/Code/convex-monorepo/tools/tailwind/eslint.config.ts",{"size":143,"mtime":1768155639000,"hash":"43","data":"44"},"/home/gib/Documents/Code/Spoon/tools/tailwind/eslint.config.ts",{"size":143,"mtime":1768155639000,"data":"45"},"/home/gib/Documents/Code/convex-monorepo/tools/tailwind/theme.css",{"size":7273,"mtime":1768320378000,"hash":"46","data":"47"},"/home/gib/Documents/Code/Spoon/tools/tailwind/theme.css",{"size":7273,"mtime":1768320378000,"data":"48"},"/home/gib/Documents/Code/convex-monorepo/tools/tailwind/postcss-config.js",{"size":70,"mtime":1768155639000,"hash":"49","data":"50"},"/home/gib/Documents/Code/Spoon/tools/tailwind/postcss-config.js",{"size":70,"mtime":1768155639000,"data":"51"},"0d22e47f57739db9de04c6f8420d6fb5",{"hashOfOptions":"52"},{"hashOfOptions":"53"},"b3c77d33a30318d89c9c2cafcbe00bbe",{"hashOfOptions":"54"},{"hashOfOptions":"55"},"b8fec960cb32340eea62ca1485093e68",{"hashOfOptions":"56"},{"hashOfOptions":"57"},"e40c2569ef375a9c828c80c0f9ce1bf2",{"hashOfOptions":"58"},{"hashOfOptions":"59"},"9a944fbda06979be39571bd9bd00b0d9",{"hashOfOptions":"60"},{"hashOfOptions":"61"},"2290965560","3219646542","3554888497","4282500251","3656472886","2442137420","327787162","2416690692","3684384935","3250589713"]
\ No newline at end of file
diff --git a/tools/tailwind/tsconfig.json b/tools/tailwind/tsconfig.json
index 2ee7f08..6a462f6 100644
--- a/tools/tailwind/tsconfig.json
+++ b/tools/tailwind/tsconfig.json
@@ -1,5 +1,5 @@
{
"extends": "@gib/tsconfig/base.json",
"include": ["."],
- "exclude": ["node_modules"]
+ "exclude": ["node_modules", "eslint.config.ts"]
}
diff --git a/tools/vitest/index.ts b/tools/vitest/index.ts
new file mode 100644
index 0000000..7b34a4c
--- /dev/null
+++ b/tools/vitest/index.ts
@@ -0,0 +1,24 @@
+import { fileURLToPath } from 'node:url';
+import react from '@vitejs/plugin-react';
+import { defineProject } from 'vitest/config';
+
+const jsdomSetup = fileURLToPath(new URL('./setup-jsdom.ts', import.meta.url));
+
+export const nodeProject = (name: string, include: string[]) =>
+ defineProject({ test: { name, environment: 'node', include } });
+
+export const jsdomProject = (name: string, include: string[]) =>
+ defineProject({
+ plugins: [react()],
+ test: { name, environment: 'jsdom', include, setupFiles: [jsdomSetup] },
+ });
+
+export const convexProject = (name: string, include: string[]) =>
+ defineProject({
+ test: {
+ name,
+ environment: 'edge-runtime',
+ include,
+ server: { deps: { inline: ['convex-test'] } },
+ },
+ });
diff --git a/tools/vitest/package.json b/tools/vitest/package.json
new file mode 100644
index 0000000..546b6ca
--- /dev/null
+++ b/tools/vitest/package.json
@@ -0,0 +1,27 @@
+{
+ "name": "@gib/vitest-config",
+ "private": true,
+ "type": "module",
+ "exports": {
+ ".": "./index.ts",
+ "./setup-jsdom": "./setup-jsdom.ts"
+ },
+ "scripts": {
+ "clean": "git clean -xdf .cache .turbo node_modules",
+ "format": "prettier --check . --ignore-path ../../.gitignore",
+ "typecheck": "tsc --noEmit"
+ },
+ "dependencies": {
+ "@testing-library/jest-dom": "catalog:test",
+ "@vitejs/plugin-react": "catalog:test"
+ },
+ "devDependencies": {
+ "@gib/prettier-config": "workspace:*",
+ "@gib/tsconfig": "workspace:*",
+ "@types/node": "catalog:",
+ "prettier": "catalog:",
+ "typescript": "catalog:",
+ "vitest": "catalog:test"
+ },
+ "prettier": "@gib/prettier-config"
+}
diff --git a/tools/vitest/setup-jsdom.ts b/tools/vitest/setup-jsdom.ts
new file mode 100644
index 0000000..bb02c60
--- /dev/null
+++ b/tools/vitest/setup-jsdom.ts
@@ -0,0 +1 @@
+import '@testing-library/jest-dom/vitest';
diff --git a/tools/vitest/tsconfig.json b/tools/vitest/tsconfig.json
new file mode 100644
index 0000000..e52e34d
--- /dev/null
+++ b/tools/vitest/tsconfig.json
@@ -0,0 +1,6 @@
+{
+ "extends": "@gib/tsconfig/base.json",
+ "compilerOptions": { "lib": ["ES2022", "dom", "dom.iterable"] },
+ "include": ["."],
+ "exclude": ["node_modules"]
+}
diff --git a/turbo.json b/turbo.json
index 4b1089f..5502045 100644
--- a/turbo.json
+++ b/turbo.json
@@ -1,9 +1,11 @@
{
- "$schema": "https://v2-8-20.turborepo.dev/schema.json",
- "globalDependencies": ["**/.env.*local"],
+ "$schema": "https://v2-9-18.turborepo.dev/schema.json",
+ "globalDependencies": [".infisical.json", ".local/*.env"],
"globalEnv": [
"NODE_ENV",
+ "INFISICAL_ENV",
"SENTRY_AUTH_TOKEN",
+ "SENTRY_DISABLE_AUTO_UPLOAD",
"NEXT_PUBLIC_SITE_URL",
"NEXT_PUBLIC_CONVEX_URL",
"NEXT_PUBLIC_PLAUSIBLE_URL",
@@ -19,7 +21,29 @@
"USESEND_FROM_EMAIL",
"AUTH_AUTHENTIK_ID",
"AUTH_AUTHENTIK_SECRET",
- "AUTH_AUTHENTIK_ISSUER"
+ "AUTH_AUTHENTIK_ISSUER",
+ "SKIP_E2E",
+ "BASE_URL",
+ "NETWORK",
+ "NEXT_CONTAINER_NAME",
+ "NEXT_DOMAIN",
+ "NEXT_PORT",
+ "BACKEND_TAG",
+ "DASHBOARD_TAG",
+ "BACKEND_CONTAINER_NAME",
+ "DASHBOARD_CONTAINER_NAME",
+ "BACKEND_DOMAIN",
+ "DASHBOARD_DOMAIN",
+ "INSTANCE_NAME",
+ "INSTANCE_SECRET",
+ "CONVEX_CLOUD_ORIGIN",
+ "CONVEX_SITE_ORIGIN",
+ "NEXT_PUBLIC_DEPLOYMENT_URL",
+ "LOCAL_INSTANCE_NAME",
+ "LOCAL_INSTANCE_SECRET",
+ "BACKEND_PORT",
+ "SITE_PROXY_PORT",
+ "DASHBOARD_PORT"
],
"globalPassThroughEnv": ["NODE_ENV"],
"ui": "tui",
@@ -39,6 +63,10 @@
"cache": false,
"persistent": false
},
+ "dev:web": {
+ "cache": false,
+ "persistent": false
+ },
"format": {
"outputs": [".cache/.prettiercache"],
"outputLogs": "new-only"
@@ -51,6 +79,9 @@
"dependsOn": ["^topo", "^build"],
"outputs": [".cache/tsbuildinfo.json"]
},
+ "test:unit": { "dependsOn": ["^build"], "cache": false },
+ "test:integration": { "dependsOn": ["^build"], "cache": false },
+ "test:component": { "dependsOn": ["^build"], "cache": false },
"clean": {
"cache": false
},