diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b0ba61f --- /dev/null +++ b/.gitignore @@ -0,0 +1,50 @@ +# Build outputs +dist/ +node_modules/ + +# Turbo cache (monorepo) +.turbo/ + +# Environment files +.env +.env.local +.env.production +.env.staging +.env.development +.env.bak +*.env + +# OS files +.DS_Store +Thumbs.db + +# IDE files +.vscode/ +.idea/ +*.swp +*.swo + +# Logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# Coverage +coverage/ + +# Cache directories +.cache/ +.npm/ +.eslintcache +*.tsbuildinfo + +# Temporary folders +tmp/ +temp/ + +# ElizaOS specific +.eliza/ +.elizadb/ +cache/ +data/ diff --git a/package.json b/package.json index de28e0d..d7c9990 100644 --- a/package.json +++ b/package.json @@ -83,5 +83,4 @@ } } } -} - +} \ No newline at end of file diff --git a/src/actions/checkout.ts b/src/actions/checkout.ts index 547752e..99e8ca3 100644 --- a/src/actions/checkout.ts +++ b/src/actions/checkout.ts @@ -19,23 +19,52 @@ import { getActiveRepository, setActiveRepository } from '../utils/state'; import { isValidBranchName } from '../utils/security'; /** - * Extracts branch name from message text + * Extracts branch name from message text. + * + * Strategy: find text after a known command keyword, then scan words + * left-to-right skipping English filler words. Returns the first token + * that looks like a valid git branch name. + * + * This avoids fragile regex with dynamic construction (new RegExp + template + * strings) and greedy-match ordering issues that silently mangle branch names. */ function extractBranchName(text: string): string | null { - // "checkout X", "switch to X", "branch X" - const checkoutMatch = text.match( - /(?:checkout|switch(?:\s+to)?|branch)\s+["\']?([a-zA-Z0-9._\/-]+)["\']?/i + // English filler words that appear between commands and branch names + // e.g. "checkout THE odi-dev", "switch to A feature/login" + const FILLER_WORDS = new Set(['the', 'a', 'an', 'to', 'into', 'on', 'for']); + // Words that signal we've gone past the branch name in the sentence + const STOP_WORDS = new Set(['branch', 'and', 'then', 'first', 'now', 'from', 'called', 'named']); + + // 1. Quoted branch names are unambiguous -- highest priority + const quotedMatch = text.match(/(?:checkout|switch|branch|create|new)\b.*?["'`]([a-zA-Z0-9._\/-]+)["'`]/i); + if (quotedMatch?.[1]) return quotedMatch[1]; + + // 2. Find text after a command keyword, scan for first branch-like token + const afterCommand = text.match( + /(?:checkout|switch(?:\s+to)?|(?:create|new)\s+(?:branch\s+)?|branch)\s+(.*)/i ); - if (checkoutMatch) { - return checkoutMatch[1]; + if (afterCommand?.[1]) { + for (const raw of afterCommand[1].trim().split(/\s+/)) { + const word = raw.replace(/^["'`]+|["'`]+$/g, ''); + if (!word) continue; + // Stop scanning at meta words (not part of the branch name) + if (STOP_WORDS.has(word.toLowerCase())) break; + // Skip filler words -- but NOT if they contain branch-name chars (- / .) + // so "the-great-refactor" is kept, but standalone "the" is skipped + if (FILLER_WORDS.has(word.toLowerCase()) && !/[-/.]/.test(word)) continue; + // Must be valid git branch characters + if (/^[a-zA-Z0-9._\/-]+$/.test(word)) return word; + break; // invalid chars = stop scanning + } } - // "create X branch", "new branch X" - const createMatch = text.match( - /(?:create|new)\s+(?:branch\s+)?["\']?([a-zA-Z0-9._\/-]+)["\']?(?:\s+branch)?/i - ); - if (createMatch) { - return createMatch[1]; + // 3. Reverse pattern: "odi-dev branch" (branch name BEFORE the keyword) + const reverseMatch = text.match(/\b([a-zA-Z0-9._\/-]+)\s+branch\b/i); + if (reverseMatch?.[1]) { + const w = reverseMatch[1].toLowerCase(); + if (!FILLER_WORDS.has(w) && !STOP_WORDS.has(w) && w !== 'create' && w !== 'new') { + return reverseMatch[1]; + } } return null; diff --git a/src/actions/clone.ts b/src/actions/clone.ts index 1869da5..ff37202 100644 --- a/src/actions/clone.ts +++ b/src/actions/clone.ts @@ -46,20 +46,25 @@ function extractRepoUrl(text: string): string | null { } /** - * Extracts branch name from message text + * Extracts branch name from message text. + * + * Uses conservative patterns to avoid false positives from common English + * (e.g. "clone repo on the server" should NOT extract "the" as a branch). */ function extractBranch(text: string): string | undefined { - // "branch X", "on branch X", "checkout X branch" + const FILLER_WORDS = new Set(['the', 'a', 'an', 'to', 'into', 'for', 'this', 'that']); + + // "on branch X", "branch X", "checkout X" const branchMatch = text.match( - /(?:branch|checkout|switch to)\s+["\']?([a-zA-Z0-9._\/-]+)["\']?/i + /(?:branch|checkout|switch to)\s+["']?([a-zA-Z0-9._\/-]+)["']?/i ); - if (branchMatch) { + if (branchMatch?.[1] && !FILLER_WORDS.has(branchMatch[1].toLowerCase())) { return branchMatch[1]; } - // "on X", at the end + // "on X" at the end of the message -- only if X is not a filler word const onMatch = text.match(/\bon\s+([a-zA-Z0-9._\/-]+)\s*$/i); - if (onMatch) { + if (onMatch?.[1] && !FILLER_WORDS.has(onMatch[1].toLowerCase())) { return onMatch[1]; } diff --git a/src/actions/log.ts b/src/actions/log.ts index 72a5803..8b1e2b4 100644 --- a/src/actions/log.ts +++ b/src/actions/log.ts @@ -34,14 +34,24 @@ function extractCount(text: string): number | undefined { } /** - * Extracts branch name from message text + * Extracts branch name from message text. + * + * Only matches when the word "branch" appears explicitly, to avoid + * false positives from common English prepositions ("in the", "on the"). */ function extractBranch(text: string): string | undefined { - // Look for patterns like "on branch main", "from develop", "in feature/xyz" - const branchMatch = text.match(/(?:on|from|in|branch)\s+(?:branch\s+)?([a-zA-Z0-9/_-]+)/i); - if (branchMatch) { - return branchMatch[1]; + const FILLER_WORDS = new Set(['the', 'a', 'an', 'to', 'into', 'on', 'for', 'this', 'that']); + + // "on branch main", "from branch develop", "in branch feature/xyz" + const withBranchKeyword = text.match(/(?:on|from|in)\s+branch\s+([a-zA-Z0-9/_.-]+)/i); + if (withBranchKeyword?.[1]) return withBranchKeyword[1]; + + // "branch main", "branch develop" + const directBranch = text.match(/\bbranch\s+([a-zA-Z0-9/_.-]+)/i); + if (directBranch?.[1] && !FILLER_WORDS.has(directBranch[1].toLowerCase())) { + return directBranch[1]; } + return undefined; } @@ -98,7 +108,7 @@ export const gitLogAction: Action = { message: Memory, _state: State | undefined ): Promise => { - const text = message.content.text.toLowerCase(); + const text = (message.content.text || '').toLowerCase(); // Check for git log related keywords const hasLogKeywords = ( diff --git a/src/actions/pull.ts b/src/actions/pull.ts index 068e2b8..12c9ba1 100644 --- a/src/actions/pull.ts +++ b/src/actions/pull.ts @@ -65,7 +65,8 @@ export const gitPullAction: Action = { // Extract remote and branch from text const remoteMatch = text.match(/from\s+(\w+)(?:\s+remote)?/i); - const branchMatch = text.match(/(?:branch\s+)?([a-zA-Z0-9._\/-]+)(?:\s+branch)?/i); + // Require "branch" keyword to avoid capturing random words from the message + const branchMatch = text.match(/\bbranch\s+([a-zA-Z0-9._\/-]+)/i); const remote = options?.remote || remoteMatch?.[1]; const branch = options?.branch || branchMatch?.[1]; diff --git a/src/actions/push.ts b/src/actions/push.ts index b462913..4a38fbb 100644 --- a/src/actions/push.ts +++ b/src/actions/push.ts @@ -65,7 +65,8 @@ export const gitPushAction: Action = { // Extract remote and branch from text const remoteMatch = text.match(/(?:to\s+)?(\w+)\s+remote/i); - const branchMatch = text.match(/(?:branch\s+)?([a-zA-Z0-9._\/-]+)(?:\s+branch)?/i); + // Require "branch" keyword to avoid capturing random words from the message + const branchMatch = text.match(/\bbranch\s+([a-zA-Z0-9._\/-]+)/i); const remote = options?.remote || remoteMatch?.[1] || 'origin'; const branch = options?.branch || branchMatch?.[1]; diff --git a/src/actions/status.ts b/src/actions/status.ts index 762f175..2f887aa 100644 --- a/src/actions/status.ts +++ b/src/actions/status.ts @@ -138,7 +138,7 @@ export const gitStatusAction: Action = { message: Memory, _state: State | undefined ): Promise => { - const text = message.content.text.toLowerCase(); + const text = (message.content.text || '').toLowerCase(); // Check for git status related keywords const hasStatusKeywords = ( diff --git a/src/index.ts b/src/index.ts index 66dc452..8028b24 100644 --- a/src/index.ts +++ b/src/index.ts @@ -76,7 +76,7 @@ export { parseGitUrl, isSshUrl, isHttpsUrl, - + // Execution utilities redactUrl, redactArgs, @@ -90,7 +90,7 @@ export { parseLogOutput, parseBranchOutput, parseRemoteOutput, - + // State persistence utilities getGitStateCacheKey, createEmptyGitState, diff --git a/src/plugin.ts b/src/plugin.ts index fa9dec1..82058b4 100644 --- a/src/plugin.ts +++ b/src/plugin.ts @@ -12,6 +12,7 @@ import { GitService } from './services/git'; // Providers import { gitInstructionsProvider, + gitSettingsProvider, gitWorkingCopiesProvider, gitStatusProvider, gitBranchesProvider, @@ -96,7 +97,7 @@ export const gitPlugin: Plugin = { logger.info('[Git] Initializing plugin-git...'); // Log configuration (without sensitive values) - const configKeys = Object.keys(config).filter(k => + const configKeys = Object.keys(config).filter(k => !k.includes('TOKEN') && !k.includes('PASSWORD') ); if (configKeys.length > 0) { @@ -139,6 +140,7 @@ export const gitPlugin: Plugin = { // Providers - inject git state into agent context providers: [ gitInstructionsProvider, // Comprehensive usage instructions (highest priority) + gitSettingsProvider, // Current settings (non-sensitive) gitWorkingCopiesProvider, // Shows managed repositories gitStatusProvider, // Shows current repo status gitLogProvider, // Shows recent commit history diff --git a/src/providers/index.ts b/src/providers/index.ts index ca99f9e..dd22f74 100644 --- a/src/providers/index.ts +++ b/src/providers/index.ts @@ -3,6 +3,7 @@ */ export { gitInstructionsProvider } from './instructions'; +export { gitSettingsProvider } from './settings'; export { gitWorkingCopiesProvider } from './workingCopies'; export { gitStatusProvider } from './status'; export { gitBranchesProvider } from './branches'; diff --git a/src/providers/settings.ts b/src/providers/settings.ts new file mode 100644 index 0000000..0cec13e --- /dev/null +++ b/src/providers/settings.ts @@ -0,0 +1,124 @@ +/** + * GIT_SETTINGS Provider + * + * Exposes current git plugin settings (non-sensitive only). + * Helps users understand their current configuration. + */ + +import type { + IAgentRuntime, + Memory, + Provider, + ProviderResult, + State, +} from '@elizaos/core'; +import { GitService } from '../services/git'; +import { getActiveRepository, getWorkingCopies } from '../utils/state'; + +export const gitSettingsProvider: Provider = { + name: 'GIT_SETTINGS', + description: 'Current git plugin configuration and settings (non-sensitive)', + + get: async ( + runtime: IAgentRuntime, + message: Memory, + _state?: State + ): Promise => { + const gitService = runtime.getService('git'); + + // Get non-sensitive settings + const allowedPath = runtime.getSetting('GIT_ALLOWED_PATH') || 'not restricted'; + const authorName = runtime.getSetting('GIT_AUTHOR_NAME') || 'not set'; + const authorEmail = runtime.getSetting('GIT_AUTHOR_EMAIL') || 'not set'; + const cloneTimeout = runtime.getSetting('GIT_CLONE_TIMEOUT') || '300'; + const workingCopiesDir = runtime.getSetting('GIT_WORKING_COPIES_DIR') || '~/.eliza/git'; + + // Check auth status without exposing credentials + const hasToken = !!runtime.getSetting('GIT_TOKEN'); + const hasUserPass = !!runtime.getSetting('GIT_USERNAME') && !!runtime.getSetting('GIT_PASSWORD'); + const authConfigured = hasToken || hasUserPass; + const authMethod = hasToken ? 'token' : hasUserPass ? 'username/password' : 'none'; + + // Get git CLI status + let gitVersion = 'unknown'; + let gitInstalled = false; + if (gitService) { + gitInstalled = await gitService.isGitInstalled(); + if (gitInstalled) { + gitVersion = (await gitService.getGitVersion()) || 'unknown'; + } + } + + // Get repository state + const activeRepo = await getActiveRepository(runtime, message.roomId); + const workingCopies = await getWorkingCopies(runtime, message.roomId); + + // Check for workspace integration + const workspaceService = runtime.getService('workspace'); + const usingWorkspace = !!workspaceService; + + const settings = { + gitInstalled, + gitVersion, + allowedPath, + workingCopiesDir, + cloneTimeoutSeconds: parseInt(String(cloneTimeout)), + author: { + name: authorName, + email: authorEmail, + }, + authentication: { + configured: authConfigured, + method: authMethod, + }, + state: { + activeRepo: activeRepo + ? { + path: activeRepo.path, + branch: activeRepo.branch, + remote: activeRepo.remote, + } + : null, + workingCopiesCount: workingCopies.length, + }, + usingWorkspace, + }; + + const lines = [ + '## Git Plugin Settings', + '', + `**Git CLI:** ${settings.gitInstalled ? `Installed (${settings.gitVersion})` : 'Not installed'}`, + '', + '**Directories:**', + `- Allowed Path: \`${settings.allowedPath}\``, + `- Working Copies: \`${settings.workingCopiesDir}\``, + `- Using Workspace: ${settings.usingWorkspace ? 'Yes' : 'No'}`, + '', + '**Clone Timeout:** ' + settings.cloneTimeoutSeconds + 's', + '', + '**Author:**', + `- Name: ${settings.author.name}`, + `- Email: ${settings.author.email}`, + '', + '**Authentication:**', + `- Configured: ${settings.authentication.configured ? 'Yes' : 'No'}`, + `- Method: ${settings.authentication.method}`, + '', + '**State:**', + `- Working Copies: ${settings.state.workingCopiesCount}`, + ]; + + if (settings.state.activeRepo) { + lines.push(`- Active Repo: \`${settings.state.activeRepo.path}\``); + lines.push(`- Branch: ${settings.state.activeRepo.branch}`); + } else { + lines.push('- Active Repo: None'); + } + + return { + text: lines.join('\n'), + values: settings, + data: { settings }, + }; + }, +}; diff --git a/src/services/git.ts b/src/services/git.ts index 7c58193..1625369 100644 --- a/src/services/git.ts +++ b/src/services/git.ts @@ -57,7 +57,7 @@ export class GitService extends Service { constructor(runtime?: IAgentRuntime) { super(runtime); - + // Load configuration from runtime settings this.gitConfig = { allowedPath: runtime?.getSetting('GIT_ALLOWED_PATH') as string | undefined, @@ -77,19 +77,19 @@ export class GitService extends Service { */ static async start(runtime: IAgentRuntime): Promise { logger.info('[Git] Starting git service...'); - + // Check if git is available const available = await isGitAvailable(); if (!available) { throw new Error('Git CLI not found. Please install git to use this plugin.'); } - + const version = await getGitVersion(); logger.info(`[Git] Git version: ${version}`); - + const service = new GitService(runtime); service.gitVersion = version; - + logger.info('[Git] Git service started'); return service; } @@ -101,6 +101,32 @@ export class GitService extends Service { logger.info('[Git] Git service stopped'); } + /** + * Checks if git CLI is installed on the system. + * Uses cached value from service startup, with fallback to live check. + */ + async isGitInstalled(): Promise { + // If we already determined git is available at startup + if (this.gitVersion !== null) { + return true; + } + // Fallback to live check + return await isGitAvailable(); + } + + /** + * Gets the git version string. + * Returns cached version from service startup if available. + */ + async getGitVersion(): Promise { + // Return cached version if available + if (this.gitVersion !== null) { + return this.gitVersion; + } + // Fallback to live check + return await getGitVersion(); + } + /** * Gets the git configuration. */ @@ -136,6 +162,63 @@ export class GitService extends Service { return isGitRepository(path); } + /** + * Gets the active workspace path from plugin-workspace if available. + * + * PROGRESSIVE ENHANCEMENT: + * - If plugin-workspace is loaded AND has an active workspace, return that path + * - Otherwise, return null (caller should use explicit path or GIT_ALLOWED_PATH) + * + * This allows plugin-git to work standalone OR with workspace management. + * + * @param conversationId - The conversation/room ID to check for active workspace + * @returns The active workspace path, or null if none + */ + getActiveWorkspacePath(conversationId: string): string | null { + if (!this.runtime) return null; + + try { + const workspaceService = this.runtime.getService('workspace'); + if (workspaceService && typeof workspaceService.getActiveWorkspace === 'function') { + const activeWorkspace = workspaceService.getActiveWorkspace(conversationId); + if (activeWorkspace?.path) { + logger.debug(`[Git] Using active workspace: ${activeWorkspace.name} (${activeWorkspace.path})`); + return activeWorkspace.path; + } + } + } catch { + // plugin-workspace not available + } + + return null; + } + + /** + * Resolves the target path for a git operation. + * + * Priority: + * 1. Explicit path provided by user + * 2. Active workspace from plugin-workspace + * 3. GIT_ALLOWED_PATH setting + * 4. null (caller should request a path) + */ + resolveTargetPath(explicitPath: string | undefined, conversationId: string): string | null { + if (explicitPath) { + return explicitPath; + } + + const workspacePath = this.getActiveWorkspacePath(conversationId); + if (workspacePath) { + return workspacePath; + } + + if (this.gitConfig.allowedPath) { + return this.gitConfig.allowedPath; + } + + return null; + } + /** * Injects authentication into a URL if configured. */ @@ -144,15 +227,15 @@ export class GitService extends Service { if (isSshUrl(url)) { return url; } - + if (this.gitConfig.token) { return injectToken(url, this.gitConfig.token); } - + if (this.gitConfig.username && this.gitConfig.password) { return injectCredentials(url, this.gitConfig.username, this.gitConfig.password); } - + return url; } @@ -161,17 +244,17 @@ export class GitService extends Service { */ private getGitEnv(): Record { const env: Record = {}; - + if (this.gitConfig.authorName) { env.GIT_AUTHOR_NAME = this.gitConfig.authorName; env.GIT_COMMITTER_NAME = this.gitConfig.authorName; } - + if (this.gitConfig.authorEmail) { env.GIT_AUTHOR_EMAIL = this.gitConfig.authorEmail; env.GIT_COMMITTER_EMAIL = this.gitConfig.authorEmail; } - + return env; } @@ -182,7 +265,7 @@ export class GitService extends Service { */ async clone(options: CloneOptions): Promise { const { url, branch, shallow, depth, path: customPath } = options; - + // Determine destination path let destination: string; if (customPath) { @@ -197,7 +280,7 @@ export class GitService extends Service { destination = `${this.getReposDir()}/unknown/${hash}`; } } - + // Validate destination path const validation = this.validatePath(destination); if (!validation.valid) { @@ -209,12 +292,12 @@ export class GitService extends Service { error: validation.error, }; } - + // Inject authentication const authUrl = this.injectAuth(url); - + logger.info(`[Git] Cloning ${redactUrl(url)} to ${destination}`); - + const result = await safeClone(authUrl, destination, { branch, shallow, @@ -222,7 +305,7 @@ export class GitService extends Service { env: this.getGitEnv(), timeout: this.gitConfig.cloneTimeout, }); - + if (!result.success) { logger.error(`[Git] Clone failed: ${result.stderr}`); return { @@ -233,10 +316,10 @@ export class GitService extends Service { error: result.stderr || 'Clone failed', }; } - + // Get the actual branch that was checked out const branchResult = await this.getCurrentBranch(destination); - + return { success: true, path: destination, @@ -253,18 +336,18 @@ export class GitService extends Service { if (!validation.valid) { return { success: false, error: validation.error }; } - + const args = ['init']; if (options?.initialBranch) { args.push('--initial-branch', options.initialBranch); } - + const result = await safeSpawn(args, { cwd: path, env: this.getGitEnv() }); - + if (!result.success) { return { success: false, error: result.stderr }; } - + return { success: true }; } @@ -279,24 +362,24 @@ export class GitService extends Service { logger.error(`[Git] Path validation failed: ${validation.error}`); return null; } - + if (!isGitRepository(repoPath)) { logger.error(`[Git] Not a git repository: ${repoPath}`); return null; } - + const result = await safeSpawn( ['status', '--porcelain=v2', '--branch', '--untracked-files=all'], { cwd: repoPath } ); - + if (!result.success) { logger.error(`[Git] Failed to get status: ${result.stderr}`); return null; } - + const parsed = parseStatusOutput(result.stdout); - + return { branch: parsed.branch, upstream: parsed.upstream, @@ -327,11 +410,11 @@ export class GitService extends Service { ['rev-parse', '--abbrev-ref', 'HEAD'], { cwd: repoPath } ); - + if (!result.success) { return null; } - + return result.stdout.trim(); } @@ -343,11 +426,11 @@ export class GitService extends Service { ['rev-parse', 'HEAD'], { cwd: repoPath } ); - + if (!result.success) { return null; } - + return result.stdout.trim(); } @@ -362,18 +445,18 @@ export class GitService extends Service { '--format=%H|%h|%s|%an|%ae|%aI', `-n${options?.count || 10}`, ]; - + if (options?.branch) { args.push(options.branch); } - + const result = await safeSpawn(args, { cwd: repoPath }); - + if (!result.success) { logger.error(`[Git] Failed to get log: ${result.stderr}`); return []; } - + return parseLogOutput(result.stdout).map(entry => ({ ...entry, hashShort: entry.hashShort, @@ -387,12 +470,12 @@ export class GitService extends Service { */ async getBranches(repoPath: string): Promise { const result = await safeSpawn(['branch', '-a'], { cwd: repoPath }); - + if (!result.success) { logger.error(`[Git] Failed to get branches: ${result.stderr}`); return []; } - + return parseBranchOutput(result.stdout); } @@ -405,17 +488,17 @@ export class GitService extends Service { options?: { startPoint?: string } ): Promise<{ success: boolean; error?: string }> { const args = ['branch', branchName]; - + if (options?.startPoint) { args.push(options.startPoint); } - + const result = await safeSpawn(args, { cwd: repoPath, env: this.getGitEnv() }); - + if (!result.success) { return { success: false, error: result.stderr }; } - + return { success: true }; } @@ -429,11 +512,11 @@ export class GitService extends Service { ): Promise<{ success: boolean; error?: string }> { const flag = options?.force ? '-D' : '-d'; const result = await safeSpawn(['branch', flag, branchName], { cwd: repoPath }); - + if (!result.success) { return { success: false, error: result.stderr }; } - + return { success: true }; } @@ -442,27 +525,27 @@ export class GitService extends Service { */ async checkout(repoPath: string, options: CheckoutOptions): Promise<{ success: boolean; error?: string }> { const args = ['checkout']; - + if (options.create) { args.push('-b'); } - + if (options.force) { args.push('-f'); } - + args.push(options.branch); - + if (options.startPoint && options.create) { args.push(options.startPoint); } - + const result = await safeSpawn(args, { cwd: repoPath, env: this.getGitEnv() }); - + if (!result.success) { return { success: false, error: result.stderr }; } - + return { success: true }; } @@ -473,11 +556,11 @@ export class GitService extends Service { */ async getRemotes(repoPath: string): Promise { const result = await safeSpawn(['remote', '-v'], { cwd: repoPath }); - + if (!result.success) { return []; } - + return parseRemoteOutput(result.stdout); } @@ -489,25 +572,25 @@ export class GitService extends Service { options?: { remote?: string; branch?: string; prune?: boolean } ): Promise<{ success: boolean; error?: string }> { const args = ['fetch']; - + if (options?.prune) { args.push('--prune'); } - + if (options?.remote) { args.push(options.remote); - + if (options?.branch) { args.push(options.branch); } } - + const result = await safeSpawn(args, { cwd: repoPath, env: this.getGitEnv() }); - + if (!result.success) { return { success: false, error: result.stderr }; } - + return { success: true }; } @@ -516,21 +599,21 @@ export class GitService extends Service { */ async pull(repoPath: string, options?: PullOptions): Promise { const args = ['pull']; - + if (options?.rebase) { args.push('--rebase'); } - + if (options?.remote) { args.push(options.remote); - + if (options?.branch) { args.push(options.branch); } } - + const result = await safeSpawn(args, { cwd: repoPath, env: this.getGitEnv() }); - + // Check for conflicts if (result.stderr.includes('CONFLICT') || result.stdout.includes('CONFLICT')) { const status = await this.getStatus(repoPath); @@ -547,7 +630,7 @@ export class GitService extends Service { error: 'Merge conflicts detected', }; } - + if (!result.success) { return { success: false, @@ -556,11 +639,11 @@ export class GitService extends Service { error: result.stderr, }; } - + // Check if already up to date - const upToDate = result.stdout.includes('Already up to date') || - result.stdout.includes('Already up-to-date'); - + const upToDate = result.stdout.includes('Already up to date') || + result.stdout.includes('Already up-to-date'); + return { success: true, commitsPulled: upToDate ? 0 : 1, // Simplified @@ -573,20 +656,20 @@ export class GitService extends Service { */ async push(repoPath: string, options?: PushOptions): Promise { const args = ['push']; - + if (options?.setUpstream) { args.push('-u'); } - + const remote = options?.remote || 'origin'; args.push(remote); - + if (options?.branch) { args.push(options.branch); } - + const result = await safeSpawn(args, { cwd: repoPath, env: this.getGitEnv() }); - + if (!result.success) { return { success: false, @@ -596,10 +679,10 @@ export class GitService extends Service { error: result.stderr, }; } - - const newBranch = result.stderr.includes('new branch') || - result.stdout.includes('new branch'); - + + const newBranch = result.stderr.includes('new branch') || + result.stdout.includes('new branch'); + return { success: true, remote, @@ -619,7 +702,7 @@ export class GitService extends Service { options?: { all?: boolean } ): Promise<{ success: boolean; error?: string }> { const args = ['add']; - + if (options?.all) { args.push('-A'); } else if (files && files.length > 0) { @@ -627,13 +710,13 @@ export class GitService extends Service { } else { args.push('.'); } - + const result = await safeSpawn(args, { cwd: repoPath }); - + if (!result.success) { return { success: false, error: result.stderr }; } - + return { success: true }; } @@ -642,17 +725,17 @@ export class GitService extends Service { */ async unstage(repoPath: string, files?: string[]): Promise<{ success: boolean; error?: string }> { const args = ['reset', 'HEAD']; - + if (files && files.length > 0) { args.push('--', ...files); } - + const result = await safeSpawn(args, { cwd: repoPath }); - + if (!result.success) { return { success: false, error: result.stderr }; } - + return { success: true }; } @@ -663,24 +746,24 @@ export class GitService extends Service { */ async commit(repoPath: string, options: CommitOptions): Promise<{ success: boolean; hash?: string; error?: string }> { const args = ['commit', '-m', options.message]; - + if (options.amend) { args.push('--amend'); } - + if (options.allowEmpty) { args.push('--allow-empty'); } - + const result = await safeSpawn(args, { cwd: repoPath, env: this.getGitEnv() }); - + if (!result.success) { return { success: false, error: result.stderr }; } - + // Get the commit hash const hash = await this.getCurrentCommit(repoPath); - + return { success: true, hash: hash || undefined }; } @@ -701,25 +784,25 @@ export class GitService extends Service { error: result.success ? undefined : result.stderr, }; } - + const args = ['merge']; - + if (options.noFf) { args.push('--no-ff'); } - + if (options.squash) { args.push('--squash'); } - + if (options.message) { args.push('-m', options.message); } - + args.push(options.branch); - + const result = await safeSpawn(args, { cwd: repoPath, env: this.getGitEnv() }); - + // Check for conflicts if (result.stderr.includes('CONFLICT') || result.stdout.includes('CONFLICT')) { const status = await this.getStatus(repoPath); @@ -731,7 +814,7 @@ export class GitService extends Service { error: 'Merge conflicts detected', }; } - + if (!result.success) { return { success: false, @@ -741,10 +824,10 @@ export class GitService extends Service { error: result.stderr, }; } - + const fastForward = result.stdout.includes('Fast-forward'); const mergeCommit = await this.getCurrentCommit(repoPath); - + return { success: true, fastForward, @@ -761,7 +844,7 @@ export class GitService extends Service { */ async stash(repoPath: string, options: StashOptions): Promise<{ success: boolean; error?: string; list?: string[] }> { const args = ['stash']; - + switch (options.action) { case 'push': args.push('push'); @@ -772,44 +855,44 @@ export class GitService extends Service { args.push('-m', options.message); } break; - + case 'pop': args.push('pop'); if (options.index !== undefined) { args.push(`stash@{${options.index}}`); } break; - + case 'apply': args.push('apply'); if (options.index !== undefined) { args.push(`stash@{${options.index}}`); } break; - + case 'drop': args.push('drop'); if (options.index !== undefined) { args.push(`stash@{${options.index}}`); } break; - + case 'list': args.push('list'); break; } - + const result = await safeSpawn(args, { cwd: repoPath }); - + if (!result.success) { return { success: false, error: result.stderr }; } - + if (options.action === 'list') { const list = result.stdout.split('\n').filter(line => line.trim()); return { success: true, list }; } - + return { success: true }; } @@ -820,21 +903,21 @@ export class GitService extends Service { */ async reset(repoPath: string, options: ResetOptions): Promise<{ success: boolean; error?: string }> { const args = ['reset', `--${options.mode}`]; - + if (options.ref) { args.push(options.ref); } - + if (options.files && options.files.length > 0) { args.push('--', ...options.files); } - + const result = await safeSpawn(args, { cwd: repoPath }); - + if (!result.success) { return { success: false, error: result.stderr }; } - + return { success: true }; } @@ -848,25 +931,25 @@ export class GitService extends Service { options?: { staged?: boolean; file?: string; stat?: boolean } ): Promise<{ success: boolean; diff?: string; error?: string }> { const args = ['diff']; - + if (options?.staged) { args.push('--staged'); } - + if (options?.stat) { args.push('--stat'); } - + if (options?.file) { args.push('--', options.file); } - + const result = await safeSpawn(args, { cwd: repoPath }); - + if (!result.success) { return { success: false, error: result.stderr }; } - + return { success: true, diff: result.stdout }; } } diff --git a/src/utils/state.ts b/src/utils/state.ts index 98c6dc0..b4271ba 100644 --- a/src/utils/state.ts +++ b/src/utils/state.ts @@ -9,6 +9,12 @@ import type { IAgentRuntime, UUID } from '@elizaos/core'; import { logger } from '@elizaos/core'; import type { GitState, WorkingCopy, ActiveRepository } from '../types'; +/** + * Shared promise cache to prevent parallel provider calls from loading state multiple times. + * All providers during a single request cycle will share the same promise. + */ +const pendingLoads = new Map>(); + /** * Gets the cache key for git state. * @@ -37,6 +43,7 @@ export function createEmptyGitState(): GitState { /** * Loads persisted git state from the runtime cache. + * Uses shared promise to prevent parallel calls from loading the same state multiple times. * * @param runtime - Agent runtime * @param roomId - Optional room ID for room-specific state @@ -46,34 +53,52 @@ export async function loadGitState( runtime: IAgentRuntime, roomId?: UUID ): Promise { - try { - const cacheKey = getGitStateCacheKey(runtime.agentId, roomId); - const cached = await runtime.getCache(cacheKey); + const cacheKey = getGitStateCacheKey(runtime.agentId, roomId); - if (cached) { - logger.debug({ cacheKey }, '[Git] Loaded persisted state from cache'); - return cached; - } + // If there's already a pending load for this key, return that promise + const pending = pendingLoads.get(cacheKey); + if (pending) { + return pending; + } + + // Create new load promise + const loadPromise = (async () => { + try { + // Load from runtime cache + const cached = await runtime.getCache(cacheKey); + + if (cached) { + return cached; + } - // Try global state if room-specific not found - if (roomId) { - const globalKey = getGitStateCacheKey(runtime.agentId); - const globalCached = await runtime.getCache(globalKey); - if (globalCached) { - logger.debug({ cacheKey: globalKey }, '[Git] Loaded global persisted state from cache'); - return globalCached; + // Try global state if room-specific not found + if (roomId) { + const globalKey = getGitStateCacheKey(runtime.agentId); + const globalCached = await runtime.getCache(globalKey); + if (globalCached) { + return globalCached; + } } + + return null; + } catch (error) { + logger.warn({ error }, '[Git] Failed to load persisted state'); + return null; + } finally { + // Remove from pending map once resolved (success or failure) + pendingLoads.delete(cacheKey); } + })(); - return null; - } catch (error) { - logger.warn({ error }, '[Git] Failed to load persisted state'); - return null; - } + // Store the promise so other callers can share it + pendingLoads.set(cacheKey, loadPromise); + + return loadPromise; } /** * Saves git state to the runtime cache. + * Invalidates any pending load promises to ensure fresh reads. * * @param runtime - Agent runtime * @param state - GitState to save @@ -97,6 +122,8 @@ export async function saveGitState( const success = await runtime.setCache(cacheKey, stateToSave); if (success) { + // Invalidate pending promise so next load gets fresh data + pendingLoads.delete(cacheKey); logger.debug({ cacheKey }, '[Git] Saved state to cache'); } else { logger.warn({ cacheKey }, '[Git] Failed to save state to cache'); @@ -145,6 +172,7 @@ export async function mergeAndSaveGitState( /** * Clears persisted git state. + * Invalidates any pending load promises as well. * * @param runtime - Agent runtime * @param roomId - Optional room ID for room-specific state @@ -156,6 +184,8 @@ export async function clearGitState( ): Promise { try { const cacheKey = getGitStateCacheKey(runtime.agentId, roomId); + // Invalidate pending promise + pendingLoads.delete(cacheKey); return await runtime.deleteCache(cacheKey); } catch (error) { logger.warn({ error }, '[Git] Failed to clear persisted state'); @@ -237,27 +267,32 @@ export async function removeWorkingCopy( roomId?: UUID ): Promise { const existingState = await loadGitState(runtime, roomId) || createEmptyGitState(); - + const { [path]: removed, ...remainingCopies } = existingState.workingCopies; - + const newState: GitState = { ...existingState, workingCopies: remainingCopies, updatedAt: new Date().toISOString(), }; - + // Clear active repo if it was the removed one if (existingState.activeRepository?.path === path) { delete newState.activeRepository; } - + await saveGitState(runtime, newState, roomId); return newState; } /** * Gets the active repository from state. - * Falls back to most recently accessed working copy if no active repo set. + * + * PROGRESSIVE ENHANCEMENT: + * Priority: + * 1. Explicit active repo from plugin-git state + * 2. Active workspace from plugin-workspace (if loaded and is a git repo) + * 3. Most recently cloned working copy from plugin-git state * * @param runtime - Agent runtime * @param roomId - Optional room ID @@ -268,27 +303,48 @@ export async function getActiveRepository( roomId?: UUID ): Promise { const state = await loadGitState(runtime, roomId); - + + // 1. Return explicit active repo if set in plugin-git state + if (state?.activeRepository) { + return state.activeRepository; + } + + // 2. Check for plugin-workspace active workspace + try { + const workspaceService = runtime.getService('workspace'); + if (workspaceService && typeof workspaceService.getActiveWorkspace === 'function') { + const conversationId = roomId ?? runtime.agentId; + const activeWorkspace = workspaceService.getActiveWorkspace(conversationId); + + if (activeWorkspace?.path && activeWorkspace.source?.type === 'git') { + logger.debug(`[Git] Using active workspace as repository: ${activeWorkspace.name}`); + return { + path: activeWorkspace.path, + branch: activeWorkspace.source.branch || 'main', + remote: activeWorkspace.source.url, + lastAccessed: activeWorkspace.lastAccessed?.toISOString?.() || new Date().toISOString(), + }; + } + } + } catch { + // plugin-workspace not available + } + + // 3. Fall back to most recently cloned working copy from plugin-git state if (!state) { return null; } - - // Return explicit active repo if set - if (state.activeRepository) { - return state.activeRepository; - } - - // Fall back to most recently cloned working copy + const workingCopies = Object.values(state.workingCopies); if (workingCopies.length === 0) { return null; } - + // Sort by clonedAt descending - workingCopies.sort((a, b) => + workingCopies.sort((a, b) => new Date(b.clonedAt).getTime() - new Date(a.clonedAt).getTime() ); - + const mostRecent = workingCopies[0]; return { path: mostRecent.path, diff --git a/tsconfig.tsbuildinfo b/tsconfig.tsbuildinfo deleted file mode 100644 index b7288bb..0000000 --- a/tsconfig.tsbuildinfo +++ /dev/null @@ -1 +0,0 @@ -{"fileNames":["./node_modules/typescript/lib/lib.es5.d.ts","./node_modules/typescript/lib/lib.es2015.d.ts","./node_modules/typescript/lib/lib.es2016.d.ts","./node_modules/typescript/lib/lib.es2017.d.ts","./node_modules/typescript/lib/lib.es2018.d.ts","./node_modules/typescript/lib/lib.es2019.d.ts","./node_modules/typescript/lib/lib.es2020.d.ts","./node_modules/typescript/lib/lib.es2021.d.ts","./node_modules/typescript/lib/lib.es2022.d.ts","./node_modules/typescript/lib/lib.es2023.d.ts","./node_modules/typescript/lib/lib.es2024.d.ts","./node_modules/typescript/lib/lib.esnext.d.ts","./node_modules/typescript/lib/lib.es2015.core.d.ts","./node_modules/typescript/lib/lib.es2015.collection.d.ts","./node_modules/typescript/lib/lib.es2015.generator.d.ts","./node_modules/typescript/lib/lib.es2015.iterable.d.ts","./node_modules/typescript/lib/lib.es2015.promise.d.ts","./node_modules/typescript/lib/lib.es2015.proxy.d.ts","./node_modules/typescript/lib/lib.es2015.reflect.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2016.array.include.d.ts","./node_modules/typescript/lib/lib.es2016.intl.d.ts","./node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","./node_modules/typescript/lib/lib.es2017.date.d.ts","./node_modules/typescript/lib/lib.es2017.object.d.ts","./node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2017.string.d.ts","./node_modules/typescript/lib/lib.es2017.intl.d.ts","./node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","./node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","./node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","./node_modules/typescript/lib/lib.es2018.intl.d.ts","./node_modules/typescript/lib/lib.es2018.promise.d.ts","./node_modules/typescript/lib/lib.es2018.regexp.d.ts","./node_modules/typescript/lib/lib.es2019.array.d.ts","./node_modules/typescript/lib/lib.es2019.object.d.ts","./node_modules/typescript/lib/lib.es2019.string.d.ts","./node_modules/typescript/lib/lib.es2019.symbol.d.ts","./node_modules/typescript/lib/lib.es2019.intl.d.ts","./node_modules/typescript/lib/lib.es2020.bigint.d.ts","./node_modules/typescript/lib/lib.es2020.date.d.ts","./node_modules/typescript/lib/lib.es2020.promise.d.ts","./node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2020.string.d.ts","./node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2020.intl.d.ts","./node_modules/typescript/lib/lib.es2020.number.d.ts","./node_modules/typescript/lib/lib.es2021.promise.d.ts","./node_modules/typescript/lib/lib.es2021.string.d.ts","./node_modules/typescript/lib/lib.es2021.weakref.d.ts","./node_modules/typescript/lib/lib.es2021.intl.d.ts","./node_modules/typescript/lib/lib.es2022.array.d.ts","./node_modules/typescript/lib/lib.es2022.error.d.ts","./node_modules/typescript/lib/lib.es2022.intl.d.ts","./node_modules/typescript/lib/lib.es2022.object.d.ts","./node_modules/typescript/lib/lib.es2022.string.d.ts","./node_modules/typescript/lib/lib.es2022.regexp.d.ts","./node_modules/typescript/lib/lib.es2023.array.d.ts","./node_modules/typescript/lib/lib.es2023.collection.d.ts","./node_modules/typescript/lib/lib.es2023.intl.d.ts","./node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","./node_modules/typescript/lib/lib.es2024.collection.d.ts","./node_modules/typescript/lib/lib.es2024.object.d.ts","./node_modules/typescript/lib/lib.es2024.promise.d.ts","./node_modules/typescript/lib/lib.es2024.regexp.d.ts","./node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2024.string.d.ts","./node_modules/typescript/lib/lib.esnext.array.d.ts","./node_modules/typescript/lib/lib.esnext.collection.d.ts","./node_modules/typescript/lib/lib.esnext.intl.d.ts","./node_modules/typescript/lib/lib.esnext.disposable.d.ts","./node_modules/typescript/lib/lib.esnext.promise.d.ts","./node_modules/typescript/lib/lib.esnext.decorators.d.ts","./node_modules/typescript/lib/lib.esnext.iterator.d.ts","./node_modules/typescript/lib/lib.esnext.float16.d.ts","./node_modules/typescript/lib/lib.decorators.d.ts","./node_modules/typescript/lib/lib.decorators.legacy.d.ts","../core/dist/types/environment.d.ts","../core/dist/types/primitives.d.ts","../core/dist/types/memory.d.ts","../core/dist/types/knowledge.d.ts","../core/dist/types/agent.d.ts","../core/dist/types/task.d.ts","../core/dist/types/database.d.ts","../core/dist/services/message-service.d.ts","../core/dist/types/elizaos.d.ts","../core/dist/logger.d.ts","../core/dist/types/messaging.d.ts","../core/dist/types/model.d.ts","../core/dist/types/events.d.ts","../core/dist/types/service.d.ts","../core/dist/types/testing.d.ts","../core/dist/types/plugin.d.ts","../core/dist/types/runtime.d.ts","../core/dist/types/components.d.ts","../core/dist/types/state.d.ts","../core/dist/types/tee.d.ts","../core/dist/types/settings.d.ts","../core/dist/types/index.d.ts","../core/dist/utils.d.ts","../../node_modules/zod/v4/core/standard-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/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/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/registries.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.d.cts","../../node_modules/zod/v4/core/to-json-schema.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/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","../core/dist/schemas/character.d.ts","../core/dist/character.d.ts","../core/dist/utils/environment.d.ts","../core/dist/utils/buffer.d.ts","../core/dist/utils/paths.d.ts","../core/dist/actions.d.ts","../core/dist/database.d.ts","../core/dist/entities.d.ts","../core/dist/memory.d.ts","../core/dist/prompts.d.ts","../core/dist/roles.d.ts","../core/dist/runtime.d.ts","../core/dist/secrets.d.ts","../core/dist/settings.d.ts","../core/dist/services.d.ts","../core/dist/services/default-message-service.d.ts","../core/dist/search.d.ts","../core/dist/elizaos.d.ts","../core/dist/utils/server-health.d.ts","../core/dist/index.d.ts","./src/types.ts","./src/utils/security.ts","./src/utils/exec.ts","./src/services/git.ts","./src/utils/state.ts","./src/providers/instructions.ts","./src/providers/workingCopies.ts","./src/providers/status.ts","./src/providers/branches.ts","./src/providers/log.ts","./src/providers/index.ts","./src/actions/clone.ts","./src/actions/add.ts","./src/actions/commit.ts","./src/actions/push.ts","./src/actions/pull.ts","./src/actions/checkout.ts","./src/actions/log.ts","./src/actions/status.ts","./src/actions/merge.ts","./src/actions/init.ts","./src/actions/fetch.ts","./src/actions/stash.ts","./src/actions/reset.ts","./src/actions/index.ts","./src/tests.ts","./src/plugin.ts","./src/utils/index.ts","./src/index.ts","./src/services/index.ts","../../node_modules/buffer/index.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/@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/crypto.d.ts","../../node_modules/@types/node/web-globals/domexception.d.ts","../../node_modules/@types/node/web-globals/events.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/web-globals/streams.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/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/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/bun/node_modules/bun-types/globals.d.ts","./node_modules/@types/bun/node_modules/bun-types/s3.d.ts","./node_modules/@types/bun/node_modules/bun-types/fetch.d.ts","./node_modules/@types/bun/node_modules/bun-types/bun.d.ts","./node_modules/@types/bun/node_modules/bun-types/extensions.d.ts","./node_modules/@types/bun/node_modules/bun-types/devserver.d.ts","./node_modules/@types/bun/node_modules/bun-types/ffi.d.ts","./node_modules/@types/bun/node_modules/bun-types/html-rewriter.d.ts","./node_modules/@types/bun/node_modules/bun-types/jsc.d.ts","./node_modules/@types/bun/node_modules/bun-types/sqlite.d.ts","./node_modules/@types/bun/node_modules/bun-types/vendor/expect-type/utils.d.ts","./node_modules/@types/bun/node_modules/bun-types/vendor/expect-type/overloads.d.ts","./node_modules/@types/bun/node_modules/bun-types/vendor/expect-type/branding.d.ts","./node_modules/@types/bun/node_modules/bun-types/vendor/expect-type/messages.d.ts","./node_modules/@types/bun/node_modules/bun-types/vendor/expect-type/index.d.ts","./node_modules/@types/bun/node_modules/bun-types/test.d.ts","./node_modules/@types/bun/node_modules/bun-types/wasm.d.ts","./node_modules/@types/bun/node_modules/bun-types/overrides.d.ts","./node_modules/@types/bun/node_modules/bun-types/deprecated.d.ts","./node_modules/@types/bun/node_modules/bun-types/redis.d.ts","./node_modules/@types/bun/node_modules/bun-types/shell.d.ts","./node_modules/@types/bun/node_modules/bun-types/serve.d.ts","./node_modules/@types/bun/node_modules/bun-types/sql.d.ts","./node_modules/@types/bun/node_modules/bun-types/security.d.ts","./node_modules/@types/bun/node_modules/bun-types/bundle.d.ts","./node_modules/@types/bun/node_modules/bun-types/bun.ns.d.ts","./node_modules/@types/bun/node_modules/bun-types/index.d.ts","./node_modules/@types/bun/index.d.ts"],"fileIdsList":[[230,240,241,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,242,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,248,260,261,278,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,244,249,254,260,261,263,275,286,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,244,245,254,260,261,263,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,246,260,261,287,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,247,248,255,260,261,264,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,248,260,261,275,283,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,249,251,254,260,261,263,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,242,243,250,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,251,252,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,253,254,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,242,243,254,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,254,255,256,260,261,275,286,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,254,255,256,260,261,270,275,278,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,251,254,257,260,261,263,275,286,331,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,254,255,257,258,260,261,263,275,283,286,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,257,259,260,261,275,283,286,332,333,334,335,337,348,349,350,351,352,353,354,355],[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,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,254,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,260,261,262,286,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,251,254,260,261,263,275,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,260,261,264,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,260,261,265,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,242,243,260,261,266,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,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,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,260,261,268,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,260,261,269,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,254,260,261,270,271,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,260,261,270,272,287,289,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,255,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,254,260,261,275,276,278,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,260,261,277,278,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,260,261,275,276,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,260,261,278,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,260,261,279,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,240,243,260,261,275,280,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,254,260,261,281,282,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,260,261,281,282,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,248,260,261,263,275,283,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,260,261,284,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,260,261,263,285,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,257,260,261,269,286,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,248,260,261,287,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,260,261,275,288,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,260,261,262,289,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,260,261,290,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,248,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,260,261,331,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,260,261,291,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,254,256,260,261,266,275,278,286,288,289,291,331,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,260,261,275,292,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,260,261,286,297,300,303,304,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,260,261,275,286,300,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,260,261,286,300,304,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,260,261,275,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,260,261,294,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,260,261,298,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,260,261,286,296,297,300,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,260,261,263,283,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,260,261,293,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,260,261,293,294,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,260,261,263,286,296,300,332,333,334,335,337,348,349,350,351,352,353,354,355],[225,226,227,230,243,254,260,261,275,286,295,299,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,260,261,300,308,316,332,333,334,335,337,348,349,350,351,352,353,354,355],[226,230,243,260,261,298,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,260,261,300,325,326,332,333,334,335,337,348,349,350,351,352,353,354,355],[226,230,243,260,261,278,286,293,295,300,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,260,261,300,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,260,261,286,296,300,332,333,334,335,337,348,349,350,351,352,353,354,355],[225,230,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,260,261,294,295,296,298,299,300,301,302,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,326,327,328,329,330,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,251,260,261,300,318,321,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,260,261,300,308,309,310,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,260,261,298,300,309,311,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,260,261,299,332,333,334,335,337,348,349,350,351,352,353,354,355],[226,230,243,260,261,294,300,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,260,261,300,304,309,311,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,260,261,304,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,260,261,286,298,300,303,332,333,334,335,337,348,349,350,351,352,353,354,355],[226,230,243,260,261,296,300,308,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,260,261,300,318,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,260,261,311,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,260,261,278,291,293,294,300,325,332,333,334,335,337,348,349,350,351,352,353,354,355],[172,230,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[164,230,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[164,167,230,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[158,164,165,166,167,168,169,170,171,230,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[164,165,230,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[164,166,230,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[103,105,106,107,108,159,230,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[103,105,107,108,230,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[103,105,107,230,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[102,103,105,106,108,230,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[103,104,105,106,107,108,109,110,158,159,160,161,162,163,230,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[105,108,230,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[102,103,104,106,107,108,230,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[105,159,162,230,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[105,106,107,108,230,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[107,230,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[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,150,151,152,153,154,155,156,157,230,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[100,230,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[86,88,100,101,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,230,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[86,88,100,230,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[79,80,83,173,230,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[79,80,81,86,95,96,230,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[79,80,81,95,96,97,230,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[80,82,97,230,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[80,81,95,97,230,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[79,80,81,83,84,230,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[80,81,86,95,230,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[80,230,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[79,80,81,89,90,95,96,230,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[79,80,81,82,83,84,85,87,89,90,91,92,93,94,95,96,97,98,99,230,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[80,81,230,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[80,81,95,230,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[95,230,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[83,85,90,91,92,93,95,96,230,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[79,230,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[79,80,81,83,84,85,86,87,88,89,90,91,92,94,96,97,230,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[80,95,230,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[79,96,230,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355,358],[230,243,248,255,257,260,261,283,287,291,331,332,333,334,337,338,348,349,350,351,352,353,354,355],[230,243,260,261,332,333,334,335,337,348,349,351,352,353,354,355],[230,243,260,261,332,333,334,335,348,349,350,351,352,353,354,355],[230,243,260,261,331,332,333,335,337,348,349,350,351,352,353,354,355],[230,243,248,260,261,266,275,278,283,287,291,331,333,334,335,337,348,349,350,351,352,353,354,355],[230,243,260,261,293,332,333,334,335,336,337,338,339,340,341,347,348,349,350,351,352,353,354,355,356,357],[230,231,243,246,248,255,256,260,261,264,278,283,286,292,332,333,334,335,337,348,350,351,352,353,354,355],[230,243,260,261,332,333,334,335,337,348,349,350,352,353,354,355],[230,243,255,260,261,332,334,335,337,348,349,350,351,352,353,354,355],[230,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354],[230,243,260,261,332,333,334,335,337,348,349,350,351,352,354,355],[230,243,260,261,332,333,334,335,337,348,349,350,351,353,354,355],[230,243,260,261,332,333,334,335,337,341,348,349,350,351,352,353,355],[230,243,260,261,332,333,334,335,337,346,348,349,350,351,352,353,354,355],[230,243,260,261,332,333,334,335,337,342,343,348,349,350,351,352,353,354,355],[230,243,260,261,332,333,334,335,337,342,343,344,345,348,349,350,351,352,353,354,355],[230,243,260,261,332,333,334,335,337,342,344,348,349,350,351,352,353,354,355],[230,243,260,261,332,333,334,335,337,342,348,349,350,351,352,353,354,355],[230,243,260,261,332,333,334,335,337,349,350,351,352,353,354,355],[193,197,198,230,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[193,195,197,198,230,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[205,206,207,208,209,210,211,212,213,214,215,216,217,230,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[193,195,197,198,230,243,256,260,261,265,332,333,334,335,337,348,349,350,351,352,353,354,355],[193,194,197,198,230,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[194,197,204,218,220,221,230,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[193,197,204,218,219,230,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[199,200,201,202,203,230,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[193,194,195,198,230,243,256,260,261,265,332,333,334,335,337,348,349,350,351,352,353,354,355],[193,194,195,196,230,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[197,230,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[193,197,230,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[193,230,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[194,230,243,244,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[195,196,198,230,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355],[194,230,243,255,260,261,264,265,332,333,334,335,337,348,349,350,351,352,353,354,355],[193,194,230,243,260,261,332,333,334,335,337,348,349,350,351,352,353,354,355]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","impliedFormat":1},{"version":"8bf8b5e44e3c9c36f98e1007e8b7018c0f38d8adc07aecef42f5200114547c70","impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"60037901da1a425516449b9a20073aa03386cce92f7a1fd902d7602be3a7c2e9","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22adec94ef7047a6c9d1af3cb96be87a335908bf9ef386ae9fd50eeb37f44c47","affectsGlobalScope":true,"impliedFormat":1},{"version":"4245fee526a7d1754529d19227ecbf3be066ff79ebb6a380d78e41648f2f224d","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},"48dcfbf6cd90905925564af624a284c0fc5eeba15beb759b3653a0ba6562723d","bde889dedc5ba1fabacc173e70e6e3db6cdf51607cfe72e2fd88512b71adae08","2a0ab6a23c9e9c137525051e8a247dcfc2acf176c5d0b1a476267c82aa9748b9","0f27e9e023881413b10d17d017a1a352f91b6ec10a10b4fb813f96ec077e2708","3c5a54468c0fef3384609ad670a9826b5211e644845af1cbe4d11d79b5bde3ad","66f85f6d1e81d4044ae2e6cfbf80e54978f2ba681e530004dfb8e7a735c71480","608e41a0d3c283e3c993488b9fd2ec0c29386ca8c4f2340c0007f80fc2c3517a","e236cd0a5c09c4001b3edfa57f4fa33d68b2386ce5760736b452e8d2ae39f05c","f34b79a38431fb0e003a062ff00c1cb1a056e6424bfde6cc0864c3012e7e3a87","47998485d20d10e089db58518ac31542fbe85e80be06ef39788000b7e48a8764","a84943bdf2f697d067c9a54e003960d2f619182b8370257f2c05ab25df1f6a79","7f8309ebe93d9918f559f710dbbf4e5fcf11e66750c5d30a52319cb818f6bd3d","29f94ed54114c2f7c488426447bfe711805de1045248e0013bc7690e18f8b42a","f96f166b3569e8f34cc763fb33f17685c67ce510d94ab48eb6a8abde4de6529a","3f1ea54100f7e33396a04a8dc8c79625d354911a7e811f7e746606b8c3b4cb31","52633e2e02c790f6ea72991fd1b6aaeee730c007886bdab16f76bfb3dce9549c","d848f22b408cba093ac70d20765343168f58ec0156ad62b3f15624bf9ebf725a","b02119115711726cb30f04d0baeca4f4e0fc7c5510f1e87745ffcc9f37cb42f4","1046d0d8511232efb90e6500cf445a2bf9028939a04b239ee4a2c402ba00e180","b614838d0de94fb9af1d490fa5471f61817b486fd09cd2775a9e72d440135c42","35381c2080d6d26dff0711e15d66bf1d25f6530ddc3424a91094cbe8b0fadec9","2d153de5a07318cffc6205cf94f59975fcdc0e3b87b3d3b00d1a09e0d0864925","085a5711ec8fb4aeae2beea3763ef0562683c91563ac65d321a7679ae87a080d",{"version":"309ebd217636d68cf8784cbc3272c16fb94fb8e969e18b6fe88c35200340aef1","impliedFormat":1},{"version":"d48904eee50b64e6c906aae902322aedbf1a85ea24ceb79959d3b4e69e309ab7","impliedFormat":1},{"version":"1ff91526fcdd634148c655ef86e912a273ce6a0239e2505701561f086678262b","impliedFormat":1},{"version":"2955c932ecc11e23d079a3f15ec2b39ac89c03e4d0e21c3459d3141e1c62eb1b","impliedFormat":1},{"version":"8d67b13da77316a8a2fabc21d340866ddf8a4b99e76a6c951cc45189142df652","impliedFormat":1},{"version":"7952419455ca298776db0005b9b5b75571d484d526a29bfbdf041652213bce6f","impliedFormat":1},{"version":"21360500b20e0ec570f26f1cbb388c155ede043698970f316969840da4f16465","impliedFormat":1},{"version":"3a819c2928ee06bbcc84e2797fd3558ae2ebb7e0ed8d87f71732fb2e2acc87b4","impliedFormat":1},{"version":"f6f827cd43e92685f194002d6b52a9408309cda1cec46fb7ca8489a95cbd2fd4","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"26384fb401f582cae1234213c3dc75fdc80e3d728a0a1c55b405be8a0c6dddbe","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"26384fb401f582cae1234213c3dc75fdc80e3d728a0a1c55b405be8a0c6dddbe","impliedFormat":1},{"version":"26384fb401f582cae1234213c3dc75fdc80e3d728a0a1c55b405be8a0c6dddbe","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":"26384fb401f582cae1234213c3dc75fdc80e3d728a0a1c55b405be8a0c6dddbe","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"26384fb401f582cae1234213c3dc75fdc80e3d728a0a1c55b405be8a0c6dddbe","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"26384fb401f582cae1234213c3dc75fdc80e3d728a0a1c55b405be8a0c6dddbe","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":"26384fb401f582cae1234213c3dc75fdc80e3d728a0a1c55b405be8a0c6dddbe","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":"568b463d762d0df07ed10081293715069168ad7cf6308525a3bb93777b127845","impliedFormat":1},{"version":"6e5857f38aa297a859cab4ec891408659218a5a2610cd317b6dcbef9979459cc","impliedFormat":1},{"version":"add0ce7b77ba5b308492fa68f77f24d1ed1d9148534bdf05ac17c30763fc1a79","impliedFormat":1},{"version":"328947a02b94edefe4de88b5cb96408ff86c07a32911c15ad67f6d61275a114c","impliedFormat":1},{"version":"c1a2e05eb6d7ca8d7e4a7f4c93ccf0c2857e842a64c98eaee4d85841ee9855e6","impliedFormat":1},{"version":"85021a58f728318a9c83977a8a3a09196dcfc61345e0b8bbbb39422c1594f36b","impliedFormat":1},{"version":"d91805544905a40fbd639ba1b85f65dc13d6996a07034848d634aa9edb63479e","impliedFormat":1},{"version":"6042774c61ece4ba77b3bf375f15942eb054675b7957882a00c22c0e4fe5865c","impliedFormat":1},{"version":"5a3bd57ed7a9d9afef74c75f77fce79ba3c786401af9810cdf45907c4e93f30e","impliedFormat":1},{"version":"4ff0c68ba32a51dec9c9d4f8a491d4bee22c88454ee7fa417a637c4af1eceab1","impliedFormat":1},{"version":"30db853bb2e60170ba11e39ab48bacecb32d06d4def89eedf17e58ebab762a65","impliedFormat":1},{"version":"e27451b24234dfed45f6cf22112a04955183a99c42a2691fb4936d63cfe42761","impliedFormat":1},{"version":"58d65a2803c3b6629b0e18c8bf1bc883a686fcf0333230dd0151ab6e85b74307","impliedFormat":1},{"version":"e818471014c77c103330aee11f00a7a00b37b35500b53ea6f337aefacd6174c9","impliedFormat":1},{"version":"2fbc91ba70096f93f57e22d1f0af22b707dbb3f9f5692cc4f1200861d3b75d88","impliedFormat":1},{"version":"29f823cbe0166e10e7176a94afe609a24b9e5af3858628c541ff8ce1727023cd","impliedFormat":1},"18acf24ea4acacbf4dedeed026a3da7bf9789247af1def2eef4132bf6c73adc3","54d1fa9d600572a5300c79851ea6ce7d27feb6e1ae5036604a705194e206b931","c5032d186a5659e51dc9271fd75c0ac19f65be9c572947db712d41ba79964649","726ee93441575f6b9f90c4bc05a9833395d45db19ae3e2a3c2221e35f01f7a13","4201f2b4063c8af9d742d3c4717422cb1afb90bf7ce19ebe055b70a73f015c21","82b7a5d59e9e9b2221c7fc53accd7e8471426498c806498ac21057ed3f22209a","5685701900bf2623ea032a5602978ab431d3f7809534b40c04da4d6b58327c9b","a90c91ce22e0d7375c5edb08d33e99a9b4cd0f64edbfdcb6f416dd2067a6230b","eac35317ecdbbc33806309342ef0f5327a3a964cf581cbb25e8144d373ebc992","54ec43261fb7ffeb1daa9bd12f2a2f03b269b4ce13aeb2d178bf21bee425c795","d9983c72f688768b93bc96bd548fedd2dd39bf890806f16f7d89600289cd9196","2b83c7f61ee9904d574d1e4789ca31e41b2e3872af4cff4338828b33560ab287","39e0ad279a4c1be7f9e5904e4257a95a1d2b4327551f58c0bff551a26f07f130","364637c8b561c8e0125c058c8cba45f4725f30874f2a922fb792a16b8e18a01f","4d4b68663e9a4a93469ddb17014fa1efe28f192bbe60e1c070f639bc582b1c87","0b6e9bcd6a818cc4f38a8fa7ccb5e575b6ccdd1a1a5e020ddae5f3a1ee8f5ee5","79a2d4139d02ec247a8159a5ea7118184a49092997da139b248b5db6728fe2df","5a14e2d85d2e7d9c4849b9add4943ec5150625b477a9b5caf8db04fdd6748def","0c3ab9bed566bd4dd0e098a82aea3e4729f0aba272293e38dcffb86d43bdf21d","62118f2be709449400f2cd112c5b1deb74b7502ad736362027d3a76cdadd6bd4",{"version":"f854ced451b925189622e452ec6898587ef009cc8704cbd234b1e86708f8b483","signature":"d2315b625d9473c1ce4387c32b14776581d3cf1adac4a8a5fa046e3f24c429b5"},{"version":"130812aac75f7c779e54d3f47ee300a89d53ad42db864a1d241077ebb98b5353","signature":"cdd8f3d1845cadc5e352ee767d636b966fbea4d06b400ab41719efd67c98b927"},{"version":"f9263e0ece8228f381b2ee538ca829dbb381567a3df9d43f55e03cf0a66c788d","signature":"792e531812ae17fca79271a682863c4c54d39b7ddef4832f1853eaf4089e4331"},{"version":"7ce0338a43e54052d5b090a91661c99f83a655df8eab72fdfcd7753d2dd3e43b","signature":"0e0b0a6ba8773857a58fd2027dc116bb50c5aa1263f6b0434182a358ed75008c"},{"version":"a7fc89159c3822048f99cf0bea0673f4aa87faf970f134824dcb611b7e483686","signature":"e89f03154259f24d083e262ad1393236e83806de95a60054f1f022f3db23cba5"},{"version":"9f9df43239533a269f238a6e5a7e40382de5af91fb821f6563753512d330b9fe","signature":"b721a8d7f3134628c6723dd1a8db313d331a5d7f7f2ffae7608ac721f1b8b9fe"},{"version":"e41e1f6268adea14a15f7ab24a169b80a41722a8d7be7e110070cbd64e61a793","signature":"d658162bf7f80c803cb0137e6a3558a1f864521ed5eee66104df871c01a7cb82"},{"version":"34c2f055bb1c5e63861c04df59e313351f3e54b89a28a042a36bac78d3aa3aa9","signature":"1010d0664e6b88e7d44b027f64bfb1e2c99f78036b5cc3ff8ea08c8902e6cc61"},{"version":"1808268256c911f6f16a38acdbc7426e3104c3a5b36b2c3575fc26ccc8d1ba45","signature":"53e84b6ae89be56a8b3f6cd022d62e711e36a091d322ea415ae3961e31dedfe0"},{"version":"84eb74d00e5d59c0b6a1e655fba685283cf650aeec42ba37eef3ca7a90d30f2e","signature":"f666ab0a8c17421f5b02f4d0835b119989f996475f40d7a4f0f8c3404739252a"},{"version":"c334f9fe58147c60099e164ba65dead8380577c8c4d0bcacd8a467ebfa5c9390","signature":"3c54f4850af1aed574a4f3571daae8bb29df4d85572c592c636b65b1e7379670"},{"version":"4ab040d65e22e089fbc3b3aa5d93006cab7a55d0f0f07892a5d8853e65d68fbf","signature":"cf0bbc33124aee1ab75dede7dbaa34cd4441c818d4ffdcad637ecccd573024ae"},{"version":"585ed226e52febb602a2c9384b1842c9b1ca310fb6beb3432f1e171436e416d5","signature":"18ec38b60b46f11ec31d5974ab94ae5c0c6b3d19d1738e23611e71de68d42f92"},{"version":"40a3355d6d3e54eb614b24894aced0148ec9bb79a772fd5f79fca6c151d68063","signature":"9ad5d6c5464afcad303e40edef308569a3778bc6049c1ffbc4f0147e3a473992"},{"version":"e022b898e1ab24e6c42c091fe4d607fafa541fcf4f27fac7fc7e21897144272e","signature":"b4c451dbdee8c139da0baf6faf45d0006894146f2290a388593f4f0ab1bd996d"},{"version":"acdb66f1a42736da1ae15763414d6dcd2d2c980a728d5f77d4b3072f9dce613a","signature":"428055e8c60a361701138031a7621d65879a985a4efd9377e753613e29d5cbb9"},{"version":"a763d14b8f69fb24a55399e98eb38db080dec83c614be52e4ae24a955245db0d","signature":"da556c7d115be9a0ea3707833e993987d7ee77808cba0fae135e48e7212598e4"},{"version":"02d47b322fb4cb0650c46ea5c9fc9c0d89f194c02018d132787ee8eaa9033cc3","signature":"989641cde159ea8a4670a0516e8bbf7628b5caf5b85dae8f4c21211c7b0ccfd1"},{"version":"2f5698913a7050b06a5b138cc9d5d0e4fbf781f3b612077fc95976f1f8d23ead","signature":"5efdac9f85f28b38aad9f1d8ecbf8e4ce6dbf7aec4f1f47c7bcc291b4ddc7072"},{"version":"1f24b32344f3fedc12c60793a7d716b6a0917f602bdb0f0219bffece9aab6edd","signature":"9eb0be6cf4e77374477cd11685a24acd2b5b1ce44221348e6220f5a6e7a8cdb6"},{"version":"9428aaa8d66482a771c31104b69c62e257c8baaf1bb7ec0bcf5b2bfea2ae0ad0","signature":"68e3f78f9b531299540e70bdd5dfed76ce9f33911e0780a434395a32b8cb9634"},{"version":"ec7a86e0c7bc82dbbae0b87092ca109a619a27a0b5db0836d240cde338cd1c12","signature":"37384eb7aa84bc73f207a0edeb3f9bb3c155c5faaf11eda2e8398ac9ea6f4d9c"},{"version":"fa543bb9ce3d8b2474d6c452693430e4e034c0481b2d4fb7fac6832e23916bc4","signature":"d56debb5a091c394cf6c0e81ee0d12ca05d1d6c835134d6b3ae8ac3927562b42"},{"version":"751a4051f5a8c5394c0a26d6f56cbe91e70826c8195bcc1628833b01a5df65bd","signature":"d89c63c0a385233fa378c8ea6c582364cc36285ee452b527234ff2d1fa14e84a"},{"version":"d401e86688ffad1a000f9a24e98ef80af3d6bac2b4616ee6cf01070d46997c72","signature":"f2b7e2cbd8d2a644565bfc034602e5813f41aa1760705a755461c28900582df2"},{"version":"bb6d9cf7bdd5a3d2f6893b14a6df244896f9ecc3ab2cb0ba11a8f9c92953a38b","signature":"b1ffd5b160437805d60301f6fe18f4a8846a8071ee9cd5009db0a32810a2634f"},{"version":"4bd36dce7c53d4b7778fda0612a9fdf4fcc320b2e23eeecc2b24a71f8091ecd3","signature":"5eb4c9f1243b5e895194244c0a119d691b2fcf2a9426e9f5eedbdc6998e7e94a"},{"version":"bdb24cb632562750b558d4ab95e1f50edc450063e18b97708b5223c7aba69b80","signature":"c825c706ec68a3d0639f9e591b2906e6d855d53709a8ec455597418cf61d3c44"},{"version":"a1e6df98c45a084badf947a6be47698b65c95258b99b763e12a174397d8f07c2","signature":"1cd9bec5f98b5fa19b5cc88e1a704a53aec2849397626b20243bddb777d55e30"},{"version":"da5a5b49f598ee54cf91e370636003374020c85d49b0eb18631ffd890ec07237","signature":"a3ce588388181a0566741a8691f2ac8bc9ba37ff4e6b84af886c82f29a0f4af0"},{"version":"4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"487b694c3de27ddf4ad107d4007ad304d29effccf9800c8ae23c2093638d906a","impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"378281aa35786c27d5811af7e6bcaa492eebd0c7013d48137c35bbc69a2b9751","affectsGlobalScope":true,"impliedFormat":1},{"version":"3af97acf03cc97de58a3a4bc91f8f616408099bc4233f6d0852e72a8ffb91ac9","affectsGlobalScope":true,"impliedFormat":1},{"version":"1b2dd1cbeb0cc6ae20795958ba5950395ebb2849b7c8326853dd15530c77ab0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"387a023d363f755eb63450a66c28b14cdd7bc30a104565e2dbf0a8988bb4a56c","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"830171b27c5fdf9bcbe4cf7d428fcf3ae2c67780fb7fbdccdf70d1623d938bc4","affectsGlobalScope":true,"impliedFormat":1},{"version":"1cf059eaf468efcc649f8cf6075d3cb98e9a35a0fe9c44419ec3d2f5428d7123","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d97fb21da858fb18b8ae72c314e9743fd52f73ebe2764e12af1db32fc03f853f","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ea15fd99b2e34cb25fe8346c955000bb70c8b423ae4377a972ef46bfb37f595","impliedFormat":1},{"version":"7cf69dd5502c41644c9e5106210b5da7144800670cbe861f66726fa209e231c4","impliedFormat":1},{"version":"72c1f5e0a28e473026074817561d1bc9647909cf253c8d56c41d1df8d95b85f7","impliedFormat":1},{"version":"f9b4137a0d285bd77dba2e6e895530112264310ae47e07bf311feae428fb8b61","affectsGlobalScope":true,"impliedFormat":1},{"version":"8b21e13ed07d0df176ae31d6b7f01f7b17d66dbeb489c0d31d00de2ca14883da","impliedFormat":1},{"version":"51aecd2df90a3cffea1eb4696b33b2d78594ea2aa2138e6b9471ec4841c6c2ee","impliedFormat":1},{"version":"9d8f9e63e29a3396285620908e7f14d874d066caea747dc4b2c378f0599166b4","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"f929f0b6b3421a2d34344b0f421f45aeb2c84ad365ebf29d04312023b3accc58","impliedFormat":1},{"version":"db9ada976f9e52e13f7ae8b9a320f4b67b87685938c5879187d8864b2fbe97f3","impliedFormat":1},{"version":"9f39e70a354d0fba29ac3cdf6eca00b7f9e96f64b2b2780c432e8ea27f133743","impliedFormat":1},{"version":"0dace96cc0f7bc6d0ee2044921bdf19fe42d16284dbcc8ae200800d1c9579335","impliedFormat":1},{"version":"a2e2bbde231b65c53c764c12313897ffdfb6c49183dd31823ee2405f2f7b5378","impliedFormat":1},{"version":"ad1cc0ed328f3f708771272021be61ab146b32ecf2b78f3224959ff1e2cd2a5c","impliedFormat":1},{"version":"c64e1888baaa3253ca4405b455e4bf44f76357868a1bd0a52998ade9a092ad78","affectsGlobalScope":true,"impliedFormat":1},{"version":"d8cf132379078d0974a59df26069689a2d33c7dc826b5be56231841cb2f32e58","impliedFormat":1},{"version":"fbf413fc617837453c878a9174a1f1b383616857a3f8366bc41cf30df4aea7d5","impliedFormat":1},{"version":"148c73ec11318850f571172ceae3e55ce479d850fe18ec8eae0abd99d9f6c319","impliedFormat":1},{"version":"230bdc111d7578276e4a3bb9d075d85c78c6b68f428c3a9935e2eaa10f4ae1f5","impliedFormat":1},{"version":"e8aabbee5e7b9101b03bb4222607d57f38859b8115a8050a4eb91b4ee43a3a73","impliedFormat":1},{"version":"bbf42f98a5819f4f06e18c8b669a994afe9a17fe520ae3454a195e6eabf7700d","impliedFormat":1},{"version":"c0bb1b65757c72bbf8ddf7eaa532223bacf58041ff16c883e76f45506596e925","impliedFormat":1},{"version":"c8b85f7aed29f8f52b813f800611406b0bfe5cf3224d20a4bdda7c7f73ce368e","affectsGlobalScope":true,"impliedFormat":1},{"version":"145dcf25fd4967c610c53d93d7bc4dce8fbb1b6dd7935362472d4ae49363c7ba","impliedFormat":1},{"version":"ff65b8a8bd380c6d129becc35de02f7c29ad7ce03300331ca91311fb4044d1a9","impliedFormat":1},{"version":"04bf1aa481d1adfb16d93d76e44ce71c51c8ef68039d849926551199489637f6","impliedFormat":1},{"version":"9043daec15206650fa119bad6b8d70136021ea7d52673a71f79a87a42ee38d44","affectsGlobalScope":true,"impliedFormat":1},{"version":"0b055dae40c0e27154f109c4ff771ae748db161c503a1687e3d4b9c91ba20de3","affectsGlobalScope":true,"impliedFormat":1},{"version":"a58a15da4c5ba3df60c910a043281256fa52d36a0fcdef9b9100c646282e88dd","impliedFormat":1},{"version":"b36beffbf8acdc3ebc58c8bb4b75574b31a2169869c70fc03f82895b93950a12","impliedFormat":1},{"version":"de263f0089aefbfd73c89562fb7254a7468b1f33b61839aafc3f035d60766cb4","impliedFormat":1},{"version":"77fbe5eecb6fac4b6242bbf6eebfc43e98ce5ccba8fa44e0ef6a95c945ff4d98","impliedFormat":1},{"version":"8c81fd4a110490c43d7c578e8c6f69b3af01717189196899a6a44f93daa57a3a","impliedFormat":1},{"version":"5fb39858b2459864b139950a09adae4f38dad87c25bf572ce414f10e4bd7baab","impliedFormat":1},{"version":"65faec1b4bd63564aeec33eab9cacfaefd84ce2400f03903a71a1841fbce195f","impliedFormat":1},{"version":"b33b74b97952d9bf4fbd2951dcfbb5136656ddb310ce1c84518aaa77dbca9992","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","impliedFormat":1},{"version":"6b306cd4282bbb54d4a6bb23cfb7a271160983dfc38c67b5a132504cfcc34896","affectsGlobalScope":true,"impliedFormat":1},{"version":"c119835edf36415081dfd9ed15fc0cd37aaa28d232be029ad073f15f3d88c323","impliedFormat":1},{"version":"450172a56b944c2d83f45cc11c9a388ea967cd301a21202aa0a23c34c7506a18","impliedFormat":1},{"version":"9705cd157ffbb91c5cab48bdd2de5a437a372e63f870f8a8472e72ff634d47c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ae86f30d5d10e4f75ce8dcb6e1bd3a12ecec3d071a21e8f462c5c85c678efb41","impliedFormat":1},{"version":"72f8936aebf0c4a1adab767b97d34ba7d3a308afcf76de4417b9c16fb92ed548","impliedFormat":1},{"version":"e03460fe72b259f6d25ad029f085e4bedc3f90477da4401d8fbc1efa9793230e","impliedFormat":1},{"version":"4286a3a6619514fca656089aee160bb6f2e77f4dd53dc5a96b26a0b4fc778055","impliedFormat":1},{"version":"69e0a41d620fb678a899c65e073413b452f4db321b858fe422ad93fd686cd49a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3585d6891e9ea18e07d0755a6d90d71331558ba5dc5561933553209f886db106","affectsGlobalScope":true,"impliedFormat":1},{"version":"86be71cbb0593468644932a6eb96d527cfa600cecfc0b698af5f52e51804451d","impliedFormat":1},{"version":"84dd6b0fd2505135692935599d6606f50a421389e8d4535194bcded307ee5cf2","impliedFormat":1},{"version":"0d5b085f36e6dc55bc6332ecb9c733be3a534958c238fb8d8d18d4a2b6f2a15a","impliedFormat":1},{"version":"db19ea066fdc5f97df3f769e582ae3000380ab7942e266654bdb1a4650d19eaf","affectsGlobalScope":true,"impliedFormat":1},{"version":"2a034894bf28c220a331c7a0229d33564803abe2ac1b9a5feee91b6b9b6e88ea","impliedFormat":1},{"version":"d7e9ab1b0996639047c61c1e62f85c620e4382206b3abb430d9a21fb7bc23c77","impliedFormat":1},{"version":"3a80bc85f38526ca3b08007ee80712e7bb0601df178b23fbf0bf87036fce40ce","impliedFormat":1},{"version":"ccf4552357ce3c159ef75f0f0114e80401702228f1898bdc9402214c9499e8c0","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"2931540c47ee0ff8a62860e61782eb17b155615db61e36986e54645ec67f67c2","impliedFormat":1},{"version":"ccab02f3920fc75c01174c47fcf67882a11daf16baf9e81701d0a94636e94556","impliedFormat":1},{"version":"f6faf5f74e4c4cc309a6c6a6c4da02dbb840be5d3e92905a23dcd7b2b0bd1986","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"33e981bf6376e939f99bd7f89abec757c64897d33c005036b9a10d9587d80187","impliedFormat":1},{"version":"7fd1b31fd35876b0aa650811c25ec2c97a3c6387e5473eb18004bed86cdd76b6","impliedFormat":1},{"version":"b41767d372275c154c7ea6c9d5449d9a741b8ce080f640155cc88ba1763e35b3","impliedFormat":1},{"version":"3bacf516d686d08682751a3bd2519ea3b8041a164bfb4f1d35728993e70a2426","impliedFormat":1},{"version":"7fb266686238369442bd1719bc0d7edd0199da4fb8540354e1ff7f16669b4323","impliedFormat":1},{"version":"0a60a292b89ca7218b8616f78e5bbd1c96b87e048849469cccb4355e98af959a","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"40cd35c95e9cf22cfa5bd84e96408b6fcbca55295f4ff822390abb11afbc3dca","impliedFormat":1},{"version":"b1616b8959bf557feb16369c6124a97a0e74ed6f49d1df73bb4b9ddf68acf3f3","impliedFormat":1},{"version":"5b03a034c72146b61573aab280f295b015b9168470f2df05f6080a2122f9b4df","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"249b9cab7f5d628b71308c7d9bb0a808b50b091e640ba3ed6e2d0516f4a8d91d","impliedFormat":1},{"version":"80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e","impliedFormat":1},{"version":"f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"54c3e2371e3d016469ad959697fd257e5621e16296fa67082c2575d0bf8eced0","impliedFormat":1},{"version":"beb8233b2c220cfa0feea31fbe9218d89fa02faa81ef744be8dce5acb89bb1fd","impliedFormat":1},{"version":"c183b931b68ad184bc8e8372bf663f3d33304772fb482f29fb91b3c391031f3e","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"48cc3ec153b50985fb95153258a710782b25975b10dd4ac8a4f3920632d10790","impliedFormat":1},{"version":"adf27937dba6af9f08a68c5b1d3fce0ca7d4b960c57e6d6c844e7d1a8e53adae","impliedFormat":1},{"version":"e1528ca65ac90f6fa0e4a247eb656b4263c470bb22d9033e466463e13395e599","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"866078923a56d026e39243b4392e282c1c63159723996fa89243140e1388a98d","impliedFormat":1},{"version":"6e215dac8b234548d91b718f9c07d5b09473cd5cabb29053fcd8be0af190acb6","affectsGlobalScope":true,"impliedFormat":1},{"version":"dbecf494aac7d3ee1b23cdaafae0d0bfea8590567fc153db58fe00ed9fa66c24","impliedFormat":1},{"version":"f3d3e999a323c85c8a63ce90c6e4624ff89fe137a0e2508fddc08e0556d08abf","impliedFormat":1},{"version":"c74b33e4465a03e398a080ec56b8f7cf19edba5d7c4dab482b4be4a5c4efb1ca","impliedFormat":1},{"version":"49ae37a1b5de16f762c8a151eeaec6b558ce3c27251052ef7a361144af42cad4","impliedFormat":1},{"version":"fc9e630f9302d0414ccd6c8ed2706659cff5ae454a56560c6122fa4a3fac5bbd","affectsGlobalScope":true,"impliedFormat":1},{"version":"aa0a44af370a2d7c1aac988a17836f57910a6c52689f52f5b3ac1d4c6cadcb23","impliedFormat":1},{"version":"0ac74c7586880e26b6a599c710b59284a284e084a2bbc82cd40fb3fbfdea71ae","affectsGlobalScope":true,"impliedFormat":1},{"version":"2ce12357dadbb8efc4e4ec4dab709c8071bf992722fc9adfea2fe0bd5b50923f","impliedFormat":1},{"version":"b5a907deaba678e5083ccdd7cc063a3a8c3413c688098f6de29d6e4cefabc85f","impliedFormat":1},{"version":"ffd344731abee98a0a85a735b19052817afd2156d97d1410819cd9bcd1bd575e","impliedFormat":1},{"version":"475e07c959f4766f90678425b45cf58ac9b95e50de78367759c1e5118e85d5c3","impliedFormat":1},{"version":"a524ae401b30a1b0814f1bbcdae459da97fa30ae6e22476e506bb3f82e3d9456","impliedFormat":1},{"version":"7375e803c033425e27cb33bae21917c106cb37b508fd242cccd978ef2ee244c7","impliedFormat":1},{"version":"eeb890c7e9218afdad2f30ad8a76b0b0b5161d11ce13b6723879de408e6bc47a","impliedFormat":1},{"version":"561c795984d06b91091780cebeac616e9e41d83240770e1af14e6ec083b713d5","impliedFormat":1},{"version":"dfbcc400ac6d20b941ccc7bd9031b9d9f54e4d495dd79117334e771959df4805","affectsGlobalScope":true,"impliedFormat":1},{"version":"944d65951e33a13068be5cd525ec42bf9bc180263ba0b723fa236970aa21f611","affectsGlobalScope":true,"impliedFormat":1},{"version":"6b386c7b6ce6f369d18246904fa5eac73566167c88fb6508feba74fa7501a384","affectsGlobalScope":true,"impliedFormat":1},{"version":"592a109e67b907ffd2078cd6f727d5c326e06eaada169eef8fb18546d96f6797","impliedFormat":1},{"version":"f2eb1e35cae499d57e34b4ac3650248776fe7dbd9a3ec34b23754cfd8c22fceb","impliedFormat":1},{"version":"fbed43a6fcf5b675f5ec6fc960328114777862b58a2bb19c109e8fc1906caa09","impliedFormat":1},{"version":"9e98bd421e71f70c75dae7029e316745c89fa7b8bc8b43a91adf9b82c206099c","impliedFormat":1},{"version":"fc803e6b01f4365f71f51f9ce13f71396766848204d4f7a1b2b6154434b84b15","impliedFormat":1},{"version":"f3afcc0d6f77a9ca2d2c5c92eb4b89cd38d6fa4bdc1410d626bd701760a977ec","impliedFormat":1},{"version":"c8109fe76467db6e801d0edfbc50e6826934686467c9418ce6b246232ce7f109","affectsGlobalScope":true,"impliedFormat":1},{"version":"e6f803e4e45915d58e721c04ec17830c6e6678d1e3e00e28edf3d52720909cea","affectsGlobalScope":true,"impliedFormat":1},{"version":"37be812b06e518320ba82e2aff3ac2ca37370a9df917db708f081b9043fa3315","impliedFormat":1}],"root":[[194,223]],"options":{"declaration":true,"declarationDir":"./dist","declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":true,"module":99,"outDir":"./dist","rootDir":"./src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":99,"tsBuildInfoFile":"./tsconfig.tsbuildinfo"},"referencedMap":[[240,1],[241,1],[242,2],[230,3],[243,4],[244,5],[245,6],[228,7],[246,8],[247,9],[248,10],[249,11],[250,12],[251,13],[252,13],[253,14],[254,15],[255,16],[256,17],[231,7],[229,7],[257,18],[258,19],[259,20],[293,21],[260,22],[261,7],[262,23],[263,24],[264,25],[265,26],[266,27],[267,28],[268,29],[269,30],[270,31],[271,31],[272,32],[273,7],[274,33],[275,34],[277,35],[276,36],[278,37],[279,38],[280,39],[281,40],[282,41],[283,42],[284,43],[285,44],[286,45],[287,46],[288,47],[289,48],[290,49],[232,7],[233,50],[234,7],[235,7],[236,51],[237,52],[238,7],[239,37],[291,53],[292,54],[224,7],[308,55],[320,56],[306,57],[321,58],[330,59],[297,60],[298,61],[296,62],[329,63],[324,64],[328,65],[300,66],[317,67],[299,68],[327,69],[294,70],[295,64],[301,71],[302,7],[307,72],[305,71],[226,73],[331,74],[322,75],[311,76],[310,71],[312,77],[315,78],[309,79],[313,80],[325,63],[303,81],[304,82],[316,83],[227,58],[319,84],[318,71],[314,85],[323,7],[225,7],[326,86],[173,87],[168,88],[171,89],[169,89],[165,88],[172,90],[170,89],[166,91],[167,92],[161,93],[106,94],[108,95],[160,7],[107,96],[164,97],[162,7],[109,94],[110,7],[159,98],[105,99],[102,7],[163,100],[103,101],[104,7],[111,102],[112,102],[113,102],[114,102],[115,102],[116,102],[117,102],[118,102],[119,102],[120,102],[121,102],[122,102],[123,102],[125,102],[124,102],[126,102],[127,102],[128,102],[158,103],[129,102],[130,102],[131,102],[132,102],[133,102],[134,102],[135,102],[136,102],[137,102],[138,102],[139,102],[140,102],[141,102],[143,102],[142,102],[144,102],[145,102],[146,102],[147,102],[148,102],[149,102],[150,102],[151,102],[152,102],[153,102],[154,102],[157,102],[155,102],[156,102],[179,104],[175,104],[180,104],[191,104],[181,104],[193,105],[88,7],[182,104],[183,7],[184,104],[185,106],[174,107],[190,7],[186,104],[188,104],[189,108],[86,109],[187,104],[83,110],[96,111],[85,112],[87,113],[79,114],[91,115],[100,116],[82,117],[81,114],[89,118],[90,119],[94,120],[80,121],[95,122],[92,123],[99,7],[97,124],[84,111],[98,114],[93,119],[101,104],[177,7],[176,7],[178,7],[192,7],[359,125],[335,126],[357,7],[356,7],[350,127],[337,128],[336,7],[334,129],[338,7],[332,130],[339,7],[358,131],[340,7],[349,132],[351,133],[333,134],[355,135],[353,136],[352,137],[354,138],[341,7],[347,139],[344,140],[346,141],[345,142],[343,143],[342,7],[348,144],[77,7],[78,7],[14,7],[13,7],[2,7],[15,7],[16,7],[17,7],[18,7],[19,7],[20,7],[21,7],[22,7],[3,7],[23,7],[24,7],[4,7],[25,7],[29,7],[26,7],[27,7],[28,7],[30,7],[31,7],[32,7],[5,7],[33,7],[34,7],[35,7],[36,7],[6,7],[40,7],[37,7],[38,7],[39,7],[41,7],[7,7],[42,7],[47,7],[48,7],[43,7],[44,7],[45,7],[46,7],[8,7],[52,7],[49,7],[50,7],[51,7],[53,7],[9,7],[54,7],[55,7],[56,7],[58,7],[57,7],[59,7],[60,7],[10,7],[61,7],[62,7],[63,7],[11,7],[64,7],[65,7],[66,7],[67,7],[68,7],[1,7],[69,7],[70,7],[12,7],[74,7],[72,7],[76,7],[71,7],[75,7],[73,7],[206,145],[210,146],[205,146],[207,145],[215,145],[218,147],[214,148],[211,149],[213,145],[209,145],[208,145],[217,149],[216,149],[212,149],[222,150],[220,151],[202,149],[204,152],[199,145],[203,149],[201,149],[200,153],[197,154],[223,155],[219,156],[194,157],[196,158],[221,159],[195,160],[198,161]],"semanticDiagnosticsPerFile":[[199,[{"start":1242,"length":14,"code":2339,"category":1,"messageText":"Property 'isGitInstalled' does not exist on type 'GitService'."},{"start":1577,"length":13,"code":2339,"category":1,"messageText":"Property 'getGitVersion' does not exist on type 'GitService'."}]],[211,[{"start":2609,"length":20,"messageText":"'message.content.text' is possibly 'undefined'.","category":1,"code":18048}]],[212,[{"start":3874,"length":20,"messageText":"'message.content.text' is possibly 'undefined'.","category":1,"code":18048}]]],"version":"5.8.3"} \ No newline at end of file